/* Root Variables - Minimalist Earthy Color Scheme */
:root {
    --primary-bg: #000000;
    --secondary-bg: #0a0a0a;
    --accent-warm: #ffffff;
    --accent-gold: #d4d4d4;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --shadow: rgba(0, 0, 0, 0.8);
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'SUSE', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
}

h1, h2, h3 {
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--text-light);
    text-transform: uppercase;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 1rem;
    color: #f5f0e8;
}

/* Hero Title Wrapper for Banner Positioning */
.hero-title-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Diagonal Album Banner Sticker */
.album-banner {
    position: absolute;
    top: -10px;
    right: -60px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 0.5rem 3rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transform: rotate(15deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 10;
    white-space: nowrap;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: bannerPulse 2s ease-in-out infinite;
}

@keyframes bannerPulse {
    0%, 100% {
        transform: rotate(15deg) scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }
    50% {
        transform: rotate(15deg) scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    }
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: flex;
    gap: 0.05em;
}

.logo span {
    display: inline-block;
    transition: transform 0.1s ease;
    cursor: pointer;
}

.logo span.bounce {
    animation: letterBounce 0.8s ease-in-out;
}

@keyframes letterBounce {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(90deg);
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-light);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.audio-toggle {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-light);
    padding: 0;
}

.audio-toggle:hover {
    border-color: var(--accent-warm);
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.05);
}

.audio-toggle.playing .play-icon {
    display: none;
}

.audio-toggle.playing .mute-icon {
    display: block !important;
}

.nav-links a:hover {
    color: var(--text-light);
}

/* Eye letter animation for "oo" in "Cool" */
.eye-letter {
    display: inline-block;
    transition: transform 0.1s ease;
}

.eye-letter.blink-jump {
    animation: eyeBlinkJump 0.6s ease-in-out;
}

@keyframes eyeBlinkJump {
    0% {
        transform: translateY(0) scaleY(1);
        opacity: 1;
    }
    15% {
        transform: translateY(-8px) scaleY(1);
        opacity: 1;
    }
    25% {
        transform: translateY(-10px) scaleY(0.1);
        opacity: 0.3;
    }
    35% {
        transform: translateY(-10px) scaleY(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-8px) scaleY(1);
        opacity: 1;
    }
    65% {
        transform: translateY(-8px) scaleY(0.1);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-8px) scaleY(1);
        opacity: 1;
    }
    100% {
        transform: translateY(0) scaleY(1);
        opacity: 1;
    }
}

/* Section Styles */
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

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

.section:nth-child(even) {
    background-color: var(--secondary-bg);
}

/* Hero Section */
.hero {
    flex-direction: column;
    text-align: center;
    padding-top: 8rem;
    position: relative;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
    z-index: 0;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.listen-connect-title {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 3rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.hero-social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.social-icon {
    color: var(--text-light);
    transition: var(--transition);
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    opacity: 1;
}

.social-icon.bounce {
    animation: iconBounce 0.8s ease-in-out;
}

@keyframes iconBounce {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(90deg);
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

.social-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Booking Contact */
.booking-contact {
    margin-top: 3rem;
    text-align: center;
}

.booking-contact p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 300;
}

.booking-contact a {
    color: var(--text-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.booking-contact a:hover {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
}

/* Hero Newsletter */
.hero-newsletter {
    max-width: 500px;
    width: 100%;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.newsletter-title {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.newsletter-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.hero-newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
    font-weight: 300;
}

.hero-newsletter-form input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.hero-newsletter-form input:focus {
    border-color: var(--text-light);
}

.hero-newsletter-form button {
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.hero-newsletter-form button:hover {
    background: var(--text-light);
    color: var(--primary-bg);
}

.newsletter-success {
    margin-top: 1rem;
    padding: 0.8rem;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: #22c55e;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 300;
    text-transform: none;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background: transparent;
    color: var(--text-light);
    text-decoration: none;
    border: 1px solid var(--text-light);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    transition: var(--transition);
    margin-top: 2rem;
    text-transform: uppercase;
}

.cta-button:hover {
    background: var(--text-light);
    color: var(--primary-bg);
}

.hero-image {
    max-width: 600px;
    width: 100%;
    margin-top: 3rem;
    opacity: 0.9;
}

.hero-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

/* About Section */
.about {
    padding: 8rem 2rem;
}

.content-wrapper {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.about-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 300;
}

/* Music Section */
.music {
    flex-direction: column;
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
        url('images/hero.jpg') center/cover;
    background-attachment: fixed;
}

.music-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.music h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    width: 100%;
    margin-bottom: 4rem;
}

.music-card {
    background: var(--secondary-bg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px var(--shadow);
    position: relative;
}

.music-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--shadow);
}

.music-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.music-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    position: relative;
    z-index: 1;
}

.music-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    font-weight: 300;
}

/* Spotify Section */
.spotify-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--secondary-bg);
    max-width: 600px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.spotify-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--text-light);
    text-decoration: none;
    border: 1px solid var(--text-light);
    font-size: 0.85rem;
    font-weight: 400;
    transition: var(--transition);
    margin-top: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.spotify-link:hover {
    background: var(--text-light);
    color: var(--primary-bg);
}

/* Contact Section */
.contact {
    flex-direction: column;
    text-align: center;
    padding: 8rem 2rem;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.social-button {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--text-light);
    text-decoration: none;
    border: 1px solid var(--text-light);
    font-size: 0.85rem;
    font-weight: 400;
    transition: var(--transition);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.social-button:hover {
    background: var(--text-light);
    color: var(--primary-bg);
}

/* Newsletter */
.newsletter {
    max-width: 500px;
    width: 100%;
    padding: 3rem;
    background: var(--secondary-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
    font-weight: 300;
}

.newsletter-form input:focus {
    border-color: var(--text-light);
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.newsletter-form button:hover {
    background: var(--text-light);
    color: var(--primary-bg);
}

/* Footer */
footer {
    background: var(--primary-bg);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    color: var(--text-muted);
    margin: 0.5rem 0;
    font-size: 0.85rem;
    font-weight: 300;
}

/* Animations */
.fade-in {
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .music-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    /* Adjust album banner for mobile */
    .album-banner {
        font-size: 0.6rem;
        padding: 0.4rem 2rem;
        right: -40px;
        top: -5px;
    }

    /* Hero newsletter responsive */
    .hero-newsletter {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .hero-newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-newsletter-form button {
        width: 100%;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--text-light);
    z-index: 9999;
    transition: width 0.1s ease-out;
}

/* Events Section */
.events {
    flex-direction: column;
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
        url('images/hero.jpg') center/cover;
    background-attachment: fixed;
}

.events h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    width: 100%;
    margin-top: 3rem;
}

.event-card {
    background: var(--primary-bg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--shadow);
    border-color: rgba(255, 255, 255, 0.2);
}

.event-flyer {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.event-flyer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.event-card:hover .event-flyer img {
    transform: scale(1.05);
}

.event-details {
    padding: 1.5rem;
}

.event-details h3 {
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-size: 1.2rem;
}

.event-date {
    color: var(--accent-gold);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.event-time,
.event-location {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    font-weight: 300;
}

/* Loop Pedal Section */
.loops {
    flex-direction: column;
    padding: 8rem 2rem;
    background: var(--primary-bg);
}

.loops h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

.loop-pedal-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.loop-pedal-wrapper {
    position: relative;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.rc600-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Track Label Overlay */
.track-label {
    position: absolute;
    top: 15%;
    left: 16%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: #22c55e;
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 2px solid rgba(34, 197, 94, 0.6);
    border-radius: 6px;
    z-index: 15;
    pointer-events: none;
    box-shadow:
        0 0 15px rgba(34, 197, 94, 0.4),
        inset 0 0 10px rgba(34, 197, 94, 0.2);
    font-family: 'Courier New', monospace;
}

/* Pedal Hotspots - Invisible clickable areas */
.pedal-hotspot {
    position: absolute;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    border-radius: 8px;
}

.pedal-hotspot:hover {
    background: rgba(255, 255, 255, 0.1);
}

.pedal-hotspot:active {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0.98);
}

/* Special styling for Track Select and All Start/Stop buttons */
.track-select-button:hover {
    background: rgba(34, 197, 94, 0.15);
    border: 2px solid rgba(34, 197, 94, 0.5);
}

.all-startstop-button:hover {
    background: rgba(239, 68, 68, 0.15);
    border: 2px solid rgba(239, 68, 68, 0.5);
}

/* LED Overlay Indicators */
.led-overlay {
    position: absolute;
    width: 7%;
    height: 2.3%;
    background: rgba(100, 100, 100, 0.3);
    border: 1px solid rgba(150, 150, 150, 0.4);
    border-radius: 2px;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 20;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.6);
    transform: translateX(-50%);
}

/* Red LED - Stopped/Ready state */
.led-overlay.stopped {
    background: #ef4444;
    border-color: #dc2626;
    box-shadow:
        0 0 15px rgba(239, 68, 68, 0.8),
        0 0 30px rgba(239, 68, 68, 0.4),
        inset 0 0 8px rgba(255, 100, 100, 0.6);
}

/* Green LED - Playing state */
.led-overlay.playing {
    background: #22c55e;
    border-color: #16a34a;
    box-shadow:
        0 0 15px rgba(34, 197, 94, 0.8),
        0 0 30px rgba(34, 197, 94, 0.4),
        inset 0 0 8px rgba(100, 255, 150, 0.6);
    animation: pulse-led-green 2s infinite;
}

@keyframes pulse-led-green {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.loop-instructions {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 2rem;
    font-weight: 300;
}

/* Responsive Loop Pedal */
@media (max-width: 768px) {
    .loop-pedal-wrapper {
        max-width: 100%;
    }

    .led-overlay {
        width: 10px;
        height: 10px;
        border-width: 1px;
    }

    .loop-instructions {
        font-size: 0.85rem;
        padding: 0 1rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .event-flyer {
        height: 250px;
    }
}

/* Lullabies Swaying Animation */
.lullabies-text {
    display: inline-block;
    animation: lullabySway 3s ease-in-out infinite;
    position: relative;
}

@keyframes lullabySway {
    0%, 100% {
        transform: translateX(-5px) rotate(-1deg);
    }
    50% {
        transform: translateX(5px) rotate(1deg);
    }
}

/* Musical Notes Rising Animation */
.musical-note {
    position: absolute;
    font-size: 24px;
    opacity: 0;
    pointer-events: none;
    animation: riseAndFade 3s ease-out infinite;
}

@keyframes riseAndFade {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(20deg);
        opacity: 0;
    }
}

/* Sunrise Text Hover Effect */
.sunrise-text {
    position: relative;
    display: inline-block;
    cursor: default;
}

.sunrise-text::before {
    content: '☀️';
    position: absolute;
    font-size: 2em;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    bottom: -0.5em;
    opacity: 0;
    transition: transform 1.5s ease-out, opacity 1.5s ease-out;
    z-index: -1;
    pointer-events: none;
}

.sunrise-text:hover::before {
    transform: translateX(-50%) translateY(-150%);
    opacity: 1;
}

/* Dash Kick Animation */
.dash-letter {
    position: relative;
    cursor: pointer;
}

.dash-letter.dash-kick {
    animation: dashKick 0.6s ease-out;
}

@keyframes dashKick {
    0% {
        transform: rotate(0deg);
    }
    15% {
        transform: rotate(-30deg) translateX(-2px);
    }
    30% {
        transform: rotate(45deg) translateX(8px);
    }
    45% {
        transform: rotate(20deg) translateX(10px);
    }
    60% {
        transform: rotate(0deg) translateX(5px);
    }
    100% {
        transform: rotate(0deg) translateX(0);
    }
}

/* K Letter Walking Away Animation */
.k-letter {
    position: relative;
    cursor: pointer;
}

.k-letter.k-walk-away {
    animation: kWalkAway 5s ease-out forwards;
}

.k-letter.k-walk-away::before {
    content: '💧';
    position: absolute;
    font-size: 0.5em;
    left: -0.2em;
    top: 0.3em;
    animation: tears 1.5s ease-out infinite;
}

.k-letter.k-walk-away::after {
    content: '💧';
    position: absolute;
    font-size: 0.4em;
    right: -0.2em;
    top: 0.4em;
    animation: tears 1.5s ease-out infinite 0.3s;
}

@keyframes kWalkAway {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 1;
    }
    10% {
        transform: translateX(5px) translateY(-3px) rotate(-5deg);
    }
    20% {
        transform: translateX(10px) translateY(0) rotate(5deg);
    }
    30% {
        transform: translateX(15px) translateY(-3px) rotate(-5deg);
    }
    40% {
        transform: translateX(20px) translateY(0) rotate(5deg);
    }
    50% {
        transform: translateX(30px) translateY(-3px) rotate(-5deg);
    }
    60% {
        transform: translateX(50px) translateY(0) rotate(5deg);
    }
    70% {
        transform: translateX(80px) translateY(-5px) rotate(-10deg);
    }
    80% {
        transform: translateX(120px) translateY(0) rotate(10deg);
        opacity: 1;
    }
    90% {
        transform: translateX(180px) translateY(-10px) rotate(-15deg);
        opacity: 0.5;
    }
    100% {
        transform: translateX(300px) translateY(-20px) rotate(-20deg);
        opacity: 0;
    }
}

@keyframes tears {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}

/* Loopin' Circular Animation - Record Player Style */
.loopin-text {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.loopin-letter {
    display: inline-block;
    position: relative;
}

.loopin-letter.looping {
    animation: recordSpin 1.5s linear infinite;
}

@keyframes recordSpin {
    0% {
        transform: rotate(0deg) translateX(30px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(30px) rotate(-360deg);
    }
}

/* Dancin' Animation */
.dancin-text {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.dancin-letter {
    display: inline-block;
    position: relative;
}

.dancin-letter.dancing {
    animation: dance 0.6s ease-in-out infinite;
}

@keyframes dance {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    15% {
        transform: translateY(-8px) rotate(-5deg) scale(1.1);
    }
    30% {
        transform: translateY(-12px) rotate(5deg) scale(1.05);
    }
    45% {
        transform: translateY(-8px) rotate(-3deg) scale(1.1);
    }
    60% {
        transform: translateY(-5px) rotate(3deg) scale(1.05);
    }
    75% {
        transform: translateY(-10px) rotate(-2deg) scale(1.08);
    }
}

/* Lyrics Player Section */
.lyrics-player {
    flex-direction: column;
    padding: 8rem 2rem;
    background: var(--primary-bg);
}

.lyrics-player h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.lyrics-container {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Song Selector */
.song-selector {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.song-btn {
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.song-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.song-btn.active {
    background: var(--text-light);
    color: var(--primary-bg);
}

/* Audio Player */
.audio-player-wrapper {
    display: flex;
    justify-content: center;
    padding: 2rem;
    background: var(--secondary-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.audio-player-wrapper audio {
    width: 100%;
    max-width: 600px;
    filter: invert(1) hue-rotate(180deg);
}

/* Lyrics Display */
.lyrics-display {
    background: var(--secondary-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lyrics-line {
    position: absolute;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 1.6;
    opacity: 0;
    color: var(--text-light);
    transition: opacity 2s ease;
    pointer-events: none;
}

.lyrics-line.active {
    opacity: 1;
    animation: gentleSway 3s ease-in-out infinite;
    pointer-events: auto;
}

/* Individual word hover effect */
.lyrics-word {
    display: inline-block;
    position: relative;
    cursor: pointer;
}

@keyframes gentleSway {
    0%, 100% {
        transform: translateX(-8px) rotate(-0.5deg);
    }
    50% {
        transform: translateX(8px) rotate(0.5deg);
    }
}

/* Responsive Lyrics */
@media (max-width: 768px) {
    .lyrics-display {
        padding: 2rem 1rem;
        min-height: 300px;
        gap: 1rem;
    }

    .lyrics-line {
        font-size: 1.5rem;
    }
}
