* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(135deg, #798bd4 0%, #df7272 50%, #d1b16c 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    color: white;
    padding: 2rem;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.btn:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .buttons {
        flex-direction: column;
    }
}

.aplayer.aplayer-fixed {
    position: fixed;
    left: -66px;
    transition: all 0.3s ease-in-out;
}

.aplayer.aplayer-fixed:hover {
    left: 0;
}

.aplayer.aplayer-fixed .aplayer-body {
    position: fixed;
    cursor: move;
    left: unset !important;
}

.aplayer.aplayer-fixed .aplayer-list {
    transition: all 0.3s ease-in-out;
    margin-bottom: 10px;
}

.aplayer.aplayer-fixed.aplayer-narrow .aplayer-body {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.aplayer.aplayer-fixed.aplayer-narrow:hover .aplayer-body {
    background-color: rgba(255, 255, 255, 0.95);
} 