:root {
    --bg-color: #050505;
    --text-color: #e0e0e0;
    --accent-gold: #ffb347;
    --accent-neon: #ff6b6b;
    --accent-blue: #4facfe;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Syncopate', sans-serif;
    --font-body: 'Manrope', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.4;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.7) contrast(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.2) 0%, rgba(5, 5, 5, 0.8) 90%, var(--bg-color) 100%);
    z-index: -1;
}

.hero-content {
    z-index: 10;
    padding: 2rem;
    animation: fadeIn 2s ease-out;
}

h1.glitch {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5rem;
    position: relative;
    /* text-shadow: 2px 2px var(--accent-blue), -2px -2px var(--accent-neon); */
    margin-bottom: 0.5rem;
}

/* Glitch animation would go here - keeping it simple for now */

.subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    color: var(--accent-gold);
    margin-bottom: 3rem;
    opacity: 0.9;
}

.pre-save-btn {
    position: relative;
    display: inline-block;
    padding: 1rem 3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--bg-color);
    background: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.pre-save-btn:hover {
    background: var(--accent-gold);
    color: #fff;
    box-shadow: 0 0 30px var(--accent-gold);
    transform: scale(1.05);
}

/* AUDIO PLAYER */
.audio-player-container {
    margin-bottom: 2rem;
}

#audio-player {
    display: none;
    /* Hide default controls to use custom UI */
}

.play-btn {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 0.8rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.play-btn:hover {
    background: rgba(255, 179, 71, 0.1);
    box-shadow: 0 0 15px rgba(255, 179, 71, 0.3);
}

.play-btn.playing {
    border-color: var(--accent-neon);
    color: var(--accent-neon);
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.arrow {
    width: 15px;
    height: 15px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
}

/* SECTIONS */
.section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 5;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.about-text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.about-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-blue);
    display: inline-flex;
    /* Make border wrap content */
}

.profile-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--glass-border);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    filter: grayscale(0.5);
    /* Subtle look */
    transition: all 0.3s ease;
}

.profile-avatar:hover {
    filter: grayscale(0);
    transform: scale(1.1);
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0;
    /* Remove header margin since wrapper handles it */
    border: none;
    /* Moved border to wrapper */
    padding-bottom: 0;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #ccc;
}

.about-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 300px;
}

.floating-art {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 50px rgba(255, 179, 71, 0.2);
    animation: float 6s ease-in-out infinite;
}

/* LYRICS */
.lyrics {
    text-align: center;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.lyrics-container {
    max-width: 800px;
}

.lyric-line {
    font-size: 1.5rem;
    margin: 1.5rem 0;
    opacity: 0.3;
    transition: all 0.5s ease;
    transform: translateY(20px);
    filter: blur(2px);
}

.lyric-line.in-view {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.lyric-line.chorus {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-gold);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 3rem;
    background: #000;
    color: #555;
    font-size: 0.9rem;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }

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

@media (max-width: 768px) {
    h1.glitch {
        font-size: 2.5rem;
    }

    .content-wrapper {
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .about-text {
        padding: 2rem;
    }

    .lyric-line {
        font-size: 1.2rem;
    }

    .lyric-line.chorus {
        font-size: 1.5rem;
    }
}