:root {
    --primary-color: #f8f9fa;
    --accent-color: #d4af37;
    /* Gold */
    --text-color: #e0e0e0;
    --bg-color: #0a0a0a;
}

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

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(30, 30, 30, 0.8) 0%, rgba(0, 0, 0, 1) 100%);
    z-index: -1;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

.music-player-container {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 100;
}

.music-player {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.music-player:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px 0 rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.2);
}

.track-info {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--accent-color);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

audio {
    height: 35px;
    width: 250px;
    outline: none;
}

audio::-webkit-media-controls-panel {
    background-color: rgba(255, 255, 255, 0.9);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    max-width: 1200px;
    width: 100%;
}

.art-wrapper {
    position: relative;
    margin-bottom: 50px;
    perspective: 1000px;
    max-width: 100%;
}

.sarah-art {
    max-width: 100%;
    height: 70vh;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite alternate;
}

.content {
    text-align: center;
    padding: 30px 60px;
    margin-top: -20px;
    z-index: 3;
    position: relative;
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #fff, #d4af37, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
    background-size: 200% auto;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: #aaa;
    text-transform: uppercase;
}

/* Floating Compliments */
#compliments-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.compliment {
    position: absolute;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 1s ease;
    animation: float-around 15s linear infinite;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

@keyframes float-around {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.9;
    }

    90% {
        opacity: 0.9;
    }

    100% {
        transform: translate(var(--tx), var(--ty)) rotate(var(--rot));
        opacity: 0;
    }
}

@media (max-width: 768px) {
    body {
        flex-direction: column;
    }

    .content {
        padding: 20px;
        width: 90%;
    }

    .sarah-art {
        height: 50vh;
    }

    h1 {
        font-size: 3rem;
    }

    .music-player-container {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 20px;
        max-width: 90vw;
    }

    audio {
        max-width: 100%;
    }
}