/* ============================================
   BLOCKCHAIN FOR BABIES - DEGEN STYLES
   Pastel baby colors + neon pump.fun energy
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Baby Pastels */
    --baby-blue: #B8E6FF;
    --baby-pink: #FFB8E6;
    --baby-yellow: #FFF4B8;
    --baby-green: #B8FFD9;
    --baby-purple: #E6B8FF;
    
    /* Neon Pump.fun Accents */
    --neon-pink: #FF00FF;
    --neon-cyan: #00FFFF;
    --neon-yellow: #FFFF00;
    --neon-green: #00FF00;
    
    /* Text Colors */
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Arial', sans-serif;
    background: linear-gradient(135deg, var(--baby-blue) 0%, var(--baby-pink) 50%, var(--baby-yellow) 100%);
    background-attachment: fixed;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-md);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '🍼';
    position: absolute;
    font-size: 20rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-cyan), var(--neon-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
    line-height: 1.1;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.5)); }
    to { filter: drop-shadow(0 0 40px rgba(0, 255, 255, 0.8)); }
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
    text-shadow: 2px 2px 0 var(--baby-yellow);
}

.taglines {
    min-height: 80px;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.tagline {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 600;
    opacity: 0;
    position: absolute;
    width: 100%;
    transition: opacity 0.5s ease;
    color: var(--text-dark);
    text-shadow: 1px 1px 0 var(--baby-yellow);
}

.tagline.active {
    opacity: 1;
}

/* Giant CTA Button */
.cta-button {
    display: inline-block;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    padding: var(--spacing-md) var(--spacing-xl);
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.5),
                0 0 60px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cta-button:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 15px 60px rgba(255, 0, 255, 0.8),
                0 0 80px rgba(0, 255, 255, 0.5);
    animation: none;
}

.cta-button:active {
    transform: scale(0.95);
}

/* ============================================
   WHAT IS THIS SECTION
   ============================================ */
.what-is {
    padding: var(--spacing-xl) var(--spacing-md);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
    text-shadow: 3px 3px 0 var(--baby-yellow);
}

.blockchain-explained {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    max-width: 800px;
    margin: 0 auto;
}

.block-line {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 800;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    text-align: center;
    border: 4px solid var(--neon-pink);
    box-shadow: 0 5px 20px rgba(255, 0, 255, 0.3);
    transition: all 0.3s ease;
}

.block-line:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 0, 255, 0.5);
}

.block-line.final {
    background: linear-gradient(135deg, var(--neon-yellow), var(--neon-green));
    color: var(--text-dark);
    font-size: clamp(1.8rem, 4.5vw, 3.5rem);
    border-color: var(--neon-green);
}

/* Wiggle animations */
.wiggle {
    animation: wiggle 3s ease-in-out infinite;
}

.wiggle-delay-1 {
    animation: wiggle 3s ease-in-out infinite 0.5s;
}

.wiggle-delay-2 {
    animation: wiggle 3s ease-in-out infinite 1s;
}

.wiggle-delay-3 {
    animation: wiggle 3s ease-in-out infinite 1.5s;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(1deg); }
    75% { transform: rotate(-1deg); }
}

/* ============================================
   WHY BABIES ARE BULLISH
   ============================================ */
.why-bullish {
    padding: var(--spacing-xl) var(--spacing-md);
    background: linear-gradient(135deg, var(--baby-green), var(--baby-blue));
}

.bullish-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
}

.bullish-item {
    font-size: clamp(1.3rem, 3vw, 2.5rem);
    font-weight: 700;
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    border-left: 6px solid var(--neon-green);
    transition: all 0.3s ease;
}

.bullish-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 20px rgba(0, 255, 0, 0.3);
}

.diamond-hands {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    text-align: center;
    color: var(--text-dark);
    text-shadow: 2px 2px 0 var(--neon-yellow);
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* ============================================
   TOKEN LORE
   ============================================ */
.token-lore {
    padding: var(--spacing-xl) var(--spacing-md);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.lore-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.lore-content {
    flex: 1;
    min-width: 300px;
    max-width: 700px;
    text-align: center;
}

.lore-content p {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
}

.lore-content .highlight {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--baby-purple), var(--baby-pink));
    color: var(--text-dark);
    padding: var(--spacing-md);
    border-radius: 25px;
    border: 3px solid var(--neon-pink);
    box-shadow: 0 5px 25px rgba(255, 0, 255, 0.4);
}

/* Book Section */
.book-section {
    flex: 0 0 auto;
    text-align: center;
    padding: var(--spacing-md);
    width: 100%;
    max-width: 500px;
}

.book-header {
    margin-bottom: var(--spacing-sm);
}

.book-text {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    text-shadow: 1px 1px 0 var(--baby-yellow);
}


.book-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.book-image {
    width: clamp(150px, 20vw, 250px);
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(255, 0, 255, 0.4);
    border: 3px solid var(--neon-pink);
    animation: bookFloat 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.book-link:hover .book-image {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 40px rgba(255, 0, 255, 0.6);
    border-color: var(--neon-cyan);
}

@keyframes bookFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

/* Book Gallery in Token Lore Section */
.book-preview-text {
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    font-weight: 700;
    color: var(--neon-pink);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
    text-shadow: 1px 1px 0 var(--baby-yellow);
}

.gallery-subtitle {
    font-size: clamp(0.75rem, 1.5vw, 0.95rem);
    font-weight: 400;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    text-shadow: 1px 1px 0 var(--baby-yellow);
}

.book-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: var(--spacing-sm);
    max-width: 100%;
    margin: 0 auto;
    margin-top: var(--spacing-sm);
}

.gallery-item {
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid var(--neon-pink);
    box-shadow: 0 5px 20px rgba(255, 0, 255, 0.3);
    background: rgba(255, 255, 255, 0.9);
    padding: var(--spacing-xs);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.6);
    border-color: var(--neon-cyan);
}

.gallery-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 60px rgba(255, 0, 255, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--text-light);
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 255, 0.5);
    border-radius: 50%;
    border: 2px solid var(--neon-pink);
}

.lightbox-close:hover {
    background: rgba(255, 0, 255, 0.8);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.8);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    padding: var(--spacing-md);
    background: rgba(255, 0, 255, 0.5);
    border: 2px solid var(--neon-pink);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    user-select: none;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(0, 255, 255, 0.8);
    border-color: var(--neon-cyan);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: var(--spacing-xl) var(--spacing-md);
    background: linear-gradient(135deg, var(--baby-yellow), var(--baby-pink));
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    padding: var(--spacing-lg);
    text-align: center;
    border: 4px solid var(--neon-cyan);
    box-shadow: 0 8px 30px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '🚀';
    position: absolute;
    font-size: 4rem;
    opacity: 0.1;
    top: -20px;
    right: -20px;
}

.step:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 255, 255, 0.5);
}

.step-number {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--neon-cyan);
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 0 var(--text-dark);
}

.step-text {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--text-dark);
}

/* ============================================
   WHO IS THIS FOR
   ============================================ */
.who-is-this {
    padding: var(--spacing-xl) var(--spacing-md);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    max-width: 1000px;
    margin: 0 auto;
}

.audience-item {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 700;
    padding: var(--spacing-md);
    background: linear-gradient(135deg, var(--baby-blue), var(--baby-purple));
    border-radius: 25px;
    text-align: center;
    border: 3px solid var(--neon-pink);
    box-shadow: 0 5px 20px rgba(255, 0, 255, 0.3);
    transition: all 0.3s ease;
}

.audience-item:hover {
    transform: rotate(5deg) scale(1.1);
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    color: var(--text-light);
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.6);
}

/* ============================================
   OUR TEAM
   ============================================ */
.our-team {
    padding: var(--spacing-xl) var(--spacing-md);
    background: linear-gradient(135deg, var(--baby-purple), var(--baby-blue));
}

.team-subtitle {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
    text-shadow: 1px 1px 0 var(--baby-yellow);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 40px;
    padding: var(--spacing-md);
    text-align: center;
    border: 4px solid var(--neon-pink);
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-member:hover {
    transform: translateY(-15px) scale(1.05) rotate(2deg);
    box-shadow: 0 20px 60px rgba(255, 0, 255, 0.6),
                0 0 80px rgba(0, 255, 255, 0.4);
    border-color: var(--neon-cyan);
}

.team-member:hover::before {
    opacity: 1;
}

.team-image-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto var(--spacing-md);
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--neon-pink);
    box-shadow: 0 5px 25px rgba(255, 0, 255, 0.4);
    transition: all 0.4s ease;
}

.team-member:hover .team-image-wrapper {
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.6);
    transform: rotate(360deg) scale(1.1);
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-member:hover .team-image {
    transform: scale(1.2);
}

.team-emoji {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 3rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--neon-yellow);
    box-shadow: 0 3px 15px rgba(255, 255, 0, 0.5);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.team-name {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
    text-shadow: 2px 2px 0 var(--baby-yellow);
}

.team-role {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: var(--neon-pink);
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-member:hover .team-role {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.team-bio {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 600;
    color: var(--text-dark);
    font-style: italic;
    margin-top: var(--spacing-xs);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: var(--spacing-xl) var(--spacing-md);
    background: linear-gradient(135deg, var(--text-dark), #2a2a2a);
    color: var(--text-light);
    text-align: center;
}

.footer-text {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--baby-yellow);
}

.disclaimer {
    font-size: clamp(0.9rem, 2vw, 1.3rem);
    font-weight: 400;
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(255, 0, 0, 0.2);
    border-radius: 15px;
    border: 2px solid rgba(255, 0, 0, 0.5);
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .container {
        padding: var(--spacing-sm);
    }
    
    .hero {
        min-height: 80vh;
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    .cta-button {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .team-image-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .lore-wrapper {
        flex-direction: column;
    }
    
    .book-section {
        width: 100%;
        max-width: 100%;
    }
    
    .book-gallery {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: var(--spacing-xs);
    }
    
    .gallery-image {
        height: 120px;
    }
    
    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
}

/* ============================================
   ACCESSIBILITY & SMOOTH SCROLLING
   ============================================ */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.cta-button:focus,
.audience-item:focus,
.step:focus {
    outline: 3px solid var(--neon-cyan);
    outline-offset: 3px;
}

/* ============================================
   FLOATING MUTE BUTTON
   ============================================ */
.mute-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--baby-pink), var(--baby-blue));
    border: 4px solid var(--neon-pink);
    box-shadow: 0 8px 30px rgba(255, 0, 255, 0.5),
                0 0 40px rgba(0, 255, 255, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
    animation: floatButton 3s ease-in-out infinite;
    font-size: 2rem;
    padding: 0;
    margin: 0;
}

@keyframes floatButton {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

.mute-button:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 40px rgba(255, 0, 255, 0.8),
                0 0 60px rgba(0, 255, 255, 0.5);
    border-color: var(--neon-cyan);
    animation: none;
}

.mute-button:active {
    transform: scale(0.95);
}

.mute-button.muted {
    background: linear-gradient(135deg, #999, #666);
    border-color: #666;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.mute-icon {
    display: block;
    transition: transform 0.3s ease;
}

.mute-button:hover .mute-icon {
    transform: scale(1.2);
}

.mute-button.muted .mute-icon {
    opacity: 0.6;
}

/* Mobile responsive for mute button */
@media (max-width: 768px) {
    .mute-button {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        font-size: 1.5rem;
        border-width: 3px;
    }
}

/* ============================================
   LOGO ANIMATIONS
   ============================================ */

/* Hero Logo - Main logo next to title */
.hero-logo-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.hero-logo {
    width: clamp(80px, 15vw, 150px);
    height: auto;
    animation: logoSlowSpin 20s linear infinite, logoWiggle 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.5));
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.8));
}

/* Floating logos in hero background */
.logo-float {
    position: absolute;
    width: clamp(60px, 10vw, 120px);
    height: auto;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.logo-float-1 {
    top: 10%;
    left: 5%;
    animation: logoFloat1 15s ease-in-out infinite, logoSlowSpin 25s linear infinite;
}

.logo-float-2 {
    top: 60%;
    right: 8%;
    animation: logoFloat2 18s ease-in-out infinite, logoSlowSpin 30s linear infinite reverse;
}

.logo-float-3 {
    bottom: 15%;
    left: 15%;
    animation: logoFloat3 12s ease-in-out infinite, logoWiggle 5s ease-in-out infinite;
}

/* Decorative logos in sections */
.logo-decor {
    position: absolute;
    width: clamp(50px, 8vw, 100px);
    height: auto;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

.logo-decor-1 {
    top: 20%;
    right: 5%;
    animation: logoSlowSpin 22s linear infinite, logoFloat1 10s ease-in-out infinite;
}

.logo-decor-2 {
    bottom: 20%;
    left: 5%;
    animation: logoSlowSpin 28s linear infinite reverse, logoWiggle 6s ease-in-out infinite;
}

/* Footer logo */
.footer-logo {
    width: clamp(60px, 12vw, 120px);
    height: auto;
    margin: 0 auto var(--spacing-md);
    display: block;
    animation: logoSlowSpin 15s linear infinite, logoWiggle 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 255, 0, 0.6));
    opacity: 0.9;
}

.footer-logo:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 0 25px rgba(255, 255, 0, 0.9));
}

/* Logo Animations */
@keyframes logoSlowSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes logoWiggle {
    0%, 100% { transform: rotate(0deg) translateY(0); }
    25% { transform: rotate(5deg) translateY(-5px); }
    50% { transform: rotate(0deg) translateY(-10px); }
    75% { transform: rotate(-5deg) translateY(-5px); }
}

@keyframes logoFloat1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -30px) rotate(120deg); }
    66% { transform: translate(-15px, -20px) rotate(240deg); }
}

@keyframes logoFloat2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-25px, 25px) rotate(180deg); }
}

@keyframes logoFloat3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, -20px) rotate(90deg); }
    50% { transform: translate(-10px, -15px) rotate(180deg); }
    75% { transform: translate(20px, -10px) rotate(270deg); }
}

