/*
* THE ANCIENT VIPER - Epic Dark Fantasy Theme
* Cinematic, Aggressive, Mythological Design
* ═══════════════════════════════════════════════════════════════
*/

/* ═══════════════════════════════════════════════════════════════
   CSS VARIABLES - Theme Configuration
═══════════════════════════════════════════════════════════════ */
:root {
    /* Primary Colors */
    --viper-red: #ff0a0a;
    --viper-red-dark: #8b0000;
    --viper-red-glow: rgba(255, 10, 10, 0.6);
    --viper-crimson: #dc143c;
    --viper-blood: #660000;
    
    /* Secondary Colors */
    --viper-gold: #ffd700;
    --viper-gold-dark: #b8860b;
    --viper-orange: #ff4500;
    
    /* Background Colors */
    --bg-void: #000000;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-gradient-1: #0d0000;
    --bg-gradient-2: #1a0000;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    
    /* Effects */
    --glow-red: 0 0 20px var(--viper-red), 0 0 40px var(--viper-red-dark), 0 0 60px var(--viper-blood);
    --glow-gold: 0 0 20px var(--viper-gold), 0 0 40px var(--viper-gold-dark);
    --shadow-heavy: 0 10px 40px rgba(0, 0, 0, 0.8);
    
    /* Typography */
    --font-display: 'Cinzel', serif;
    --font-tech: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    
    /* Spacing */
    --section-padding: 50px 20px;
    --container-max: 1200px;
}

/* ═══════════════════════════════════════════════════════════════
   BASE STYLES
═══════════════════════════════════════════════════════════════ */
.epic-body {
    background: var(--bg-void);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

/* Loading state - prevent scrolling */
.epic-body.loading-active {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
    height: 100vh;
    height: 100dvh;
    height: -webkit-fill-available;
    -webkit-overflow-scrolling: touch;
}

/* ═══════════════════════════════════════════════════════════════
   LOADING SCREEN - Epic Entry Experience
═══════════════════════════════════════════════════════════════ */
.loading-screen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh;
    max-height: none;
    background-color: #000000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 999999 !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.loading-screen.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    display: none !important;
}

/* ═══════════════════════════════════════════════════════════════
   🔥🎵 MUSIC BARS APOCALYPSE TRANSITION 🎵🔥
   The bars become the epicenter of destruction
═══════════════════════════════════════════════════════════════ */

/* === PHASE 1: MUSIC BARS POWER UP === */
.loading-screen.void-transition .music-animation {
    animation: barsContainer 2s ease-out forwards;
    z-index: 9999;
}

@keyframes barsContainer {
    0% { transform: scale(1); filter: brightness(1); }
    20% { transform: scale(1.5); filter: brightness(3) drop-shadow(0 0 50px #ff0000); }
    40% { transform: scale(2); filter: brightness(5) drop-shadow(0 0 100px #ff0000); }
    60% { transform: scale(3); filter: brightness(8) drop-shadow(0 0 200px #ffffff); }
    80% { transform: scale(5); filter: brightness(10) drop-shadow(0 0 300px #ffffff); opacity: 0.8; }
    100% { transform: scale(20); filter: brightness(0); opacity: 0; }
}

/* Each bar PULSES then SHOOTS UPWARD like rockets */
.loading-screen.void-transition .music-animation .bar {
    animation: barRocket 1.5s ease-out forwards !important;
}

.loading-screen.void-transition .music-animation .bar:nth-child(1) { animation-delay: 0s !important; --rocket-x: -200vw; }
.loading-screen.void-transition .music-animation .bar:nth-child(2) { animation-delay: 0.03s !important; --rocket-x: -150vw; }
.loading-screen.void-transition .music-animation .bar:nth-child(3) { animation-delay: 0.06s !important; --rocket-x: -100vw; }
.loading-screen.void-transition .music-animation .bar:nth-child(4) { animation-delay: 0.09s !important; --rocket-x: -50vw; }
.loading-screen.void-transition .music-animation .bar:nth-child(5) { animation-delay: 0.12s !important; --rocket-x: 0; }
.loading-screen.void-transition .music-animation .bar:nth-child(6) { animation-delay: 0.09s !important; --rocket-x: 50vw; }
.loading-screen.void-transition .music-animation .bar:nth-child(7) { animation-delay: 0.06s !important; --rocket-x: 100vw; }
.loading-screen.void-transition .music-animation .bar:nth-child(8) { animation-delay: 0.03s !important; --rocket-x: 150vw; }
.loading-screen.void-transition .music-animation .bar:nth-child(9) { animation-delay: 0s !important; --rocket-x: 200vw; }

@keyframes barRocket {
    0% {
        transform: scaleY(1) scaleX(1);
        opacity: 1;
        box-shadow: 0 0 10px var(--viper-red);
    }
    15% {
        transform: scaleY(3) scaleX(1.5);
        background: #fff;
        box-shadow: 0 0 50px #fff, 0 0 100px var(--viper-red), 0 0 150px var(--viper-crimson);
    }
    30% {
        transform: scaleY(10) scaleX(2) translateX(var(--rocket-x));
        background: linear-gradient(to top, var(--viper-red), #fff);
        box-shadow: 0 0 80px #fff, 0 0 150px var(--viper-red);
    }
    50% {
        transform: scaleY(50) scaleX(3) translateX(var(--rocket-x));
        opacity: 0.8;
    }
    100% {
        transform: scaleY(200) scaleX(5) translateX(var(--rocket-x));
        opacity: 0;
    }
}

/* === PHASE 2: SHOCKWAVE FROM BARS === */
.void-shockwave {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999999;
    pointer-events: none;
    background: radial-gradient(circle, #fff 0%, var(--viper-red) 30%, transparent 70%);
    box-shadow: 0 0 60px 30px rgba(255,255,255,0.6), 0 0 120px 60px var(--viper-red);
    animation: shockwaveBlast 1s ease-out forwards;
    will-change: transform, opacity;
}

@keyframes shockwaveBlast {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(200);
        opacity: 0;
    }
}

/* Multiple shockwave rings */
.void-shockwave-ring {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    border: 3px solid var(--viper-red);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 99999998;
    pointer-events: none;
    box-shadow: 0 0 20px var(--viper-red);
    animation: ringExpand 0.8s ease-out forwards;
    will-change: transform, opacity;
}

@keyframes ringExpand {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(80);
        opacity: 0;
    }
}

/* === PHASE 3: SCREEN TEAR / REALITY CRACK === */
.void-crack {
    position: fixed;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        #fff 20%, 
        var(--viper-red) 50%, 
        #fff 80%, 
        transparent 100%);
    transform: translateX(-50%);
    z-index: 99999997;
    pointer-events: none;
    box-shadow: 
        0 0 50px 20px #fff,
        0 0 100px 40px var(--viper-red);
    animation: realityCrack 0.8s ease-out forwards;
}

@keyframes realityCrack {
    0% {
        transform: translateX(-50%) scaleY(0);
        opacity: 0;
    }
    20% {
        transform: translateX(-50%) scaleY(1);
        opacity: 1;
        width: 4px;
    }
    40% {
        width: 20px;
        box-shadow: 
            0 0 100px 50px #fff,
            0 0 200px 100px var(--viper-red);
    }
    60% {
        width: 100vw;
        opacity: 1;
    }
    100% {
        width: 100vw;
        opacity: 0;
        background: #fff;
    }
}

/* === MEGA FLASH === */
.void-flash {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999999;
    pointer-events: none;
    animation: ultraFlash 0.8s ease-out forwards;
}

@keyframes ultraFlash {
    0% { opacity: 0; }
    15% { opacity: 1; background: #fff; }
    30% { opacity: 1; background: var(--viper-red); }
    50% { opacity: 0.7; background: #fff; }
    100% { opacity: 0; }
}

/* Secondary flash wave */
.void-flash-2 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999998;
    pointer-events: none;
    background: radial-gradient(circle at 50% 40%, #fff, var(--viper-red), transparent);
    animation: radialFlash 1s ease-out forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

@keyframes radialFlash {
    0% { opacity: 0; transform: scale(0.5); }
    20% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(2); }
}

/* === HORIZONTAL LIGHT BEAMS from bars === */
.void-beams {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999996;
    pointer-events: none;
    overflow: hidden;
}

.void-beam {
    position: absolute;
    height: 3px;
    background: linear-gradient(to right, transparent, #fff, var(--viper-red), #fff, transparent);
    box-shadow: 0 0 20px 5px var(--viper-red), 0 0 40px 10px var(--viper-crimson);
    animation: beamShoot 0.6s ease-out forwards;
}

@keyframes beamShoot {
    0% {
        width: 0;
        opacity: 1;
    }
    50% {
        width: 100vw;
        opacity: 1;
    }
    100% {
        width: 100vw;
        opacity: 0;
    }
}

/* === GLITCH OVERLAY === */
.void-glitch {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999994;
    pointer-events: none;
    background: transparent;
    animation: glitchOverlay 0.5s steps(10) forwards;
}

@keyframes glitchOverlay {
    0% { 
        background: transparent;
        clip-path: inset(0 0 100% 0);
    }
    10% { 
        background: rgba(255, 0, 0, 0.3);
        clip-path: inset(40% 0 30% 0);
    }
    20% { 
        background: rgba(0, 255, 255, 0.3);
        clip-path: inset(20% 0 60% 0);
    }
    30% { 
        background: rgba(255, 0, 0, 0.3);
        clip-path: inset(70% 0 10% 0);
    }
    40% { 
        background: rgba(0, 255, 255, 0.2);
        clip-path: inset(10% 0 50% 0);
    }
    50% {
        background: rgba(255, 0, 0, 0.2);
        clip-path: inset(30% 0 40% 0);
    }
    100% { 
        background: transparent;
        opacity: 0;
    }
}

/* === PARTICLE EXPLOSION === */
.void-particles {
    position: fixed;
    top: 40%;
    left: 50%;
    width: 0;
    height: 0;
    z-index: 99999993;
    pointer-events: none;
}

.void-particle {
    position: absolute;
    background: var(--viper-red);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--viper-red);
    will-change: transform, opacity;
}

@keyframes particleFly {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--fly-x), var(--fly-y)) scale(0);
        opacity: 0;
    }
}

/* === SCREEN DISTORTION (lightweight) === */
.void-distort {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999990;
    pointer-events: none;
    background: radial-gradient(circle at 50% 40%, transparent 0%, rgba(139, 0, 0, 0.3) 50%, rgba(0,0,0,0.5) 100%);
    opacity: 0;
    animation: screenDistort 1s ease-out forwards;
    will-change: opacity;
}

@keyframes screenDistort {
    0% { opacity: 0; }
    30% { opacity: 1; }
    100% { opacity: 0; }
}

/* === MAIN LOADING SCREEN TRANSITION === */
.loading-screen.void-transition {
    animation: screenFadeAway 2s ease-in-out forwards;
    pointer-events: none !important;
}

@keyframes screenFadeAway {
    0% { opacity: 1; }
    70% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
}

/* Content gets consumed */
.loading-screen.void-transition .loading-content {
    animation: contentConsume 1.2s ease-out forwards;
}

@keyframes contentConsume {
    0% {
        transform: scale(1);
        opacity: 1;
        filter: blur(0) brightness(1);
    }
    30% {
        transform: scale(1.2);
        filter: blur(0) brightness(3);
    }
    50% {
        transform: scale(1.5);
        filter: blur(5px) brightness(5);
        opacity: 0.8;
    }
    100% {
        transform: scale(0.5);
        filter: blur(30px) brightness(0);
        opacity: 0;
    }
}

/* Title EXPLODES */
.loading-screen.void-transition .loading-title {
    animation: titleExplode 0.8s ease-out forwards !important;
}

@keyframes titleExplode {
    0% {
        transform: scale(1);
        opacity: 1;
        text-shadow: 0 0 30px var(--viper-red);
        letter-spacing: 0.15em;
    }
    20% {
        transform: scale(1.5);
        text-shadow: 
            0 0 50px #fff,
            0 0 100px var(--viper-red),
            10px 0 0 cyan,
            -10px 0 0 var(--viper-red);
        letter-spacing: 0.3em;
    }
    40% {
        transform: scale(2);
        letter-spacing: 0.8em;
        text-shadow: 
            20px 0 0 cyan,
            -20px 0 0 var(--viper-red),
            0 0 100px #fff;
    }
    60% {
        transform: scale(3);
        letter-spacing: 2em;
        opacity: 0.6;
    }
    100% {
        transform: scale(5);
        letter-spacing: 5em;
        opacity: 0;
        filter: blur(20px);
    }
}

/* Subtitle fades with style */
.loading-screen.void-transition .loading-subtitle {
    animation: subtitleGone 0.6s ease-out forwards;
}

@keyframes subtitleGone {
    0% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.5; transform: translateY(-20px); filter: blur(5px); }
    100% { opacity: 0; transform: translateY(-50px); filter: blur(20px); }
}

/* Button ANNIHILATED */
.loading-screen.void-transition .enter-btn {
    animation: buttonAnnihilate 0.4s ease-out forwards !important;
}

@keyframes buttonAnnihilate {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    30% {
        transform: scale(1.5);
        background: #fff;
        box-shadow: 0 0 50px #fff, 0 0 100px var(--viper-red);
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}

/* Warning disappears */
.loading-screen.void-transition .loading-warning,
.loading-screen.void-transition .loading-hint {
    animation: textVanish 0.3s ease-out forwards;
}

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

/* === MEGA SCREEN SHAKE === */
@keyframes screenShakeInsane {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    5% { transform: translate(-30px, -20px) rotate(-3deg) scale(1.02); }
    10% { transform: translate(30px, 20px) rotate(3deg) scale(0.98); }
    15% { transform: translate(-25px, 15px) rotate(-2deg) scale(1.01); }
    20% { transform: translate(25px, -15px) rotate(2deg) scale(0.99); }
    25% { transform: translate(-20px, -25px) rotate(-1.5deg); }
    30% { transform: translate(20px, 25px) rotate(1.5deg); }
    40% { transform: translate(-15px, 15px) rotate(-1deg); }
    50% { transform: translate(10px, -10px) rotate(0.5deg); }
    60% { transform: translate(-8px, 8px); }
    70% { transform: translate(5px, -5px); }
    80% { transform: translate(-3px, 3px); }
    90% { transform: translate(1px, -1px); }
}

body.screen-shake {
    animation: screenShakeInsane 1s ease-out;
}

/* === RADIAL WIPE OUT === */
.void-wipe {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: 99999989;
    pointer-events: none;
    clip-path: circle(100% at 50% 50%);
    animation: wipeOut 1.5s ease-in-out forwards;
    animation-delay: 0.5s;
}

@keyframes wipeOut {
    0% { clip-path: circle(100% at 50% 40%); opacity: 1; }
    100% { clip-path: circle(0% at 50% 40%); opacity: 0; }
}

/* Additional vortex rings */
.void-vortex-ring {
    position: fixed;
    top: 50%;
    left: 50%;
    border: 3px solid var(--viper-red);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999994;
    pointer-events: none;
    animation: vortexRingExpand 1s ease-out forwards;
    box-shadow: 0 0 20px var(--viper-red), inset 0 0 20px var(--viper-red);
}

@keyframes vortexRingExpand {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
        border-width: 10px;
    }
    100% {
        width: 300vmax;
        height: 300vmax;
        opacity: 0;
        border-width: 1px;
    }
}

.loading-content {
    text-align: center;
    padding: 20px;
    max-width: 90vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    position: relative;
    z-index: 5;
}

/* Music Animation Bars */
.music-animation {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    height: 80px;
    margin-bottom: 40px;
}

.music-animation .bar {
    width: 8px;
    background: linear-gradient(180deg, var(--viper-red) 0%, var(--viper-red-dark) 100%);
    border-radius: 4px;
    animation: musicBar 1s ease-in-out infinite;
    box-shadow: 0 0 10px var(--viper-red-glow);
}

.music-animation .bar:nth-child(1) { height: 20px; animation-delay: 0s; }
.music-animation .bar:nth-child(2) { height: 40px; animation-delay: 0.1s; }
.music-animation .bar:nth-child(3) { height: 60px; animation-delay: 0.2s; }
.music-animation .bar:nth-child(4) { height: 35px; animation-delay: 0.3s; }
.music-animation .bar:nth-child(5) { height: 70px; animation-delay: 0.4s; }
.music-animation .bar:nth-child(6) { height: 45px; animation-delay: 0.5s; }
.music-animation .bar:nth-child(7) { height: 55px; animation-delay: 0.6s; }
.music-animation .bar:nth-child(8) { height: 30px; animation-delay: 0.7s; }
.music-animation .bar:nth-child(9) { height: 50px; animation-delay: 0.8s; }

@keyframes musicBar {
    0%, 100% { 
        transform: scaleY(0.3); 
        opacity: 0.5;
    }
    50% { 
        transform: scaleY(1); 
        opacity: 1;
    }
}

.loading-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: 0.15em;
    margin: 0 0 15px 0;
    text-shadow: 0 0 30px var(--viper-red-glow), 0 0 60px var(--viper-blood);
    animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { text-shadow: 0 0 30px var(--viper-red-glow), 0 0 60px var(--viper-blood); }
    50% { text-shadow: 0 0 50px var(--viper-red-glow), 0 0 100px var(--viper-red-dark); }
}

.loading-subtitle {
    font-family: var(--font-tech);
    font-size: clamp(0.8rem, 2.5vw, 1rem);
    color: var(--text-muted);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin: 0 0 50px 0;
}

.enter-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--viper-red-dark) 0%, var(--viper-blood) 100%);
    color: var(--text-primary);
    border: 2px solid var(--viper-red);
    padding: 18px 45px;
    font-family: var(--font-tech);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(255, 10, 10, 0.3), inset 0 0 20px rgba(255, 10, 10, 0.1);
    animation: btnGlow 2s ease-in-out infinite;
    pointer-events: auto !important;
    position: relative;
    z-index: 10;
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 10, 10, 0.3), inset 0 0 20px rgba(255, 10, 10, 0.1); }
    50% { box-shadow: 0 0 50px rgba(255, 10, 10, 0.5), inset 0 0 30px rgba(255, 10, 10, 0.2); }
}

.enter-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--viper-red) 0%, var(--viper-red-dark) 100%);
    box-shadow: 0 0 60px rgba(255, 10, 10, 0.6), inset 0 0 30px rgba(255, 10, 10, 0.3);
}

.enter-btn:active {
    transform: scale(0.98);
}

.enter-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.enter-btn:hover .enter-icon {
    transform: translateX(5px);
}

.loading-warning {
    font-family: var(--font-tech);
    font-size: 1.1rem;
    color: #fff;
    margin-top: 30px;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.3), rgba(139, 0, 0, 0.4));
    border: 2px solid var(--viper-red);
    border-radius: 15px;
    line-height: 1.8;
    max-width: 450px;
    box-shadow: 
        0 0 30px rgba(255, 0, 0, 0.4),
        0 0 60px rgba(139, 0, 0, 0.2),
        inset 0 0 20px rgba(255, 0, 0, 0.1);
    animation: warningPulse 2s ease-in-out infinite;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.loading-warning strong {
    color: var(--viper-gold);
    font-weight: bold;
}

@keyframes warningPulse {
    0%, 100% { 
        box-shadow: 0 0 30px rgba(255, 0, 0, 0.4), 0 0 60px rgba(139, 0, 0, 0.2);
        border-color: var(--viper-red);
    }
    50% { 
        box-shadow: 0 0 40px rgba(255, 0, 0, 0.6), 0 0 80px rgba(139, 0, 0, 0.4);
        border-color: #ff3333;
    }
}

.loading-hint {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 20px;
    opacity: 0.7;
    animation: hintFade 2s ease-in-out infinite;
}

@keyframes hintFade {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

/* Mobile Loading Screen */
@media (max-width: 768px) {
    .music-animation {
        gap: 5px;
        height: 60px;
        margin-bottom: 30px;
    }
    
    .music-animation .bar {
        width: 6px;
    }
    
    .loading-subtitle {
        font-size: 0.7rem;
        letter-spacing: 0.2em;
        margin-bottom: 40px;
    }
    
    .enter-btn {
        padding: 15px 35px;
        font-size: 0.95rem;
        gap: 12px;
        -webkit-tap-highlight-color: transparent;
    }
    
    .enter-icon {
        width: 20px;
        height: 20px;
    }
    
    .loading-warning {
        font-size: 0.8rem;
        padding: 12px 18px;
        max-width: 90%;
    }
    
    .loading-hint {
        font-size: 0.75rem;
    }
    
    /* Ensure loading screen shows on mobile */
    .loading-screen {
        display: flex !important;
        visibility: visible;
        opacity: 1;
    }
    
    .loading-screen.hidden {
        display: none !important;
        visibility: hidden;
        opacity: 0;
    }
}

@media (max-width: 480px) {
    .music-animation .bar {
        width: 5px;
    }
    
    .enter-btn {
        padding: 14px 30px;
        font-size: 0.85rem;
    }
    
    .loading-content {
        max-width: 90vw;
    }
}

/* Particle Canvas */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════
   VOLUME CONTROL - Floating Widget
═══════════════════════════════════════════════════════════════ */
.volume-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--viper-red-dark);
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(139, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.volume-control:hover {
    border-color: var(--viper-red);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 10, 10, 0.4);
}

.volume-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    flex-shrink: 0;
    line-height: 1;
}

.volume-btn:hover {
    transform: scale(1.1);
}

.volume-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    color: var(--viper-red);
    filter: drop-shadow(0 0 5px var(--viper-red-glow));
    display: block;
    margin: auto;
}

.volume-slider-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100px;
    height: 6px;
    background: linear-gradient(to right, var(--viper-red) 0%, var(--viper-red) 50%, var(--viper-red-dark) 50%, var(--viper-red-dark) 100%);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: var(--viper-red);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px var(--viper-red-glow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 15px var(--viper-red-glow);
}

.volume-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: var(--viper-red);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px var(--viper-red-glow);
}

.volume-value {
    font-family: var(--font-tech);
    font-size: 0.8rem;
    color: var(--viper-red);
    min-width: 35px;
    text-align: right;
    text-shadow: 0 0 10px var(--viper-red-glow);
}

/* Muted state */
.volume-control.muted .volume-icon {
    color: var(--text-muted);
    filter: none;
}

.volume-control.muted .volume-value {
    color: var(--text-muted);
    text-shadow: none;
}

/* Hide volume control on tablet and mobile - devices have their own volume */
@media (max-width: 1024px) {
    .volume-control {
        display: none !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION - Full Screen Cinematic Intro
═══════════════════════════════════════════════════════════════ */
.hero-section {
    position: relative;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at center, var(--bg-gradient-2) 0%, var(--bg-void) 70%),
        linear-gradient(180deg, var(--bg-void) 0%, var(--bg-gradient-1) 50%, var(--bg-void) 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 120%, var(--viper-blood) 0%, transparent 50%);
    z-index: 2;
}

/* Animated Background Lines */
.hero-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-lines .line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--viper-red-dark), transparent);
    opacity: 0.3;
    animation: linePulse 3s ease-in-out infinite;
}

.hero-lines .line:nth-child(1) { left: 10%; animation-delay: 0s; }
.hero-lines .line:nth-child(2) { left: 30%; animation-delay: 0.5s; }
.hero-lines .line:nth-child(3) { left: 50%; animation-delay: 1s; }
.hero-lines .line:nth-child(4) { left: 70%; animation-delay: 1.5s; }
.hero-lines .line:nth-child(5) { left: 90%; animation-delay: 2s; }

@keyframes linePulse {
    0%, 100% { opacity: 0.1; transform: scaleY(0.5); }
    50% { opacity: 0.4; transform: scaleY(1); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 20px;
}

/* Avatar Container */
.hero-avatar-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 40px;
}

.avatar-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, var(--viper-red-glow) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite;
}

.avatar-ring {
    position: absolute;
    inset: -10px;
    border: 2px solid var(--viper-red);
    border-radius: 50%;
    animation: ringRotate 10s linear infinite;
}

.avatar-ring::before,
.avatar-ring::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--viper-red);
    border-radius: 50%;
    box-shadow: var(--glow-red);
}

.avatar-ring::before { top: -5px; left: 50%; transform: translateX(-50%); }
.avatar-ring::after { bottom: -5px; left: 50%; transform: translateX(-50%); }

.hero-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--viper-red-dark);
    box-shadow: var(--glow-red);
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Hero Title */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.title-line {
    display: block;
    color: var(--text-primary);
    text-shadow: var(--glow-red);
}

.title-accent {
    color: var(--viper-red);
    font-size: 1.3em;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { text-shadow: var(--glow-red); }
    to { text-shadow: 0 0 30px var(--viper-red), 0 0 60px var(--viper-red), 0 0 90px var(--viper-crimson); }
}

/* Tagline */
.hero-tagline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 120px;
    font-family: var(--font-tech);
    font-size: clamp(0.7rem, 2vw, 1rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.tag {
    color: var(--text-secondary);
    padding: 8px 16px;
    border: 1px solid var(--viper-red-dark);
    background: rgba(139, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.tag:hover {
    color: var(--viper-red);
    border-color: var(--viper-red);
    box-shadow: var(--glow-red);
}

.tag-divider {
    color: var(--viper-red);
    font-size: 0.6em;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s ease-in-out infinite;
    z-index: 5;
}

.scroll-indicator span {
    display: block;
    font-family: var(--font-tech);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    margin: 0 auto;
    color: var(--viper-red);
}

.scroll-arrow svg {
    width: 100%;
    height: 100%;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ═══════════════════════════════════════════════════════════════
   NEWS TICKER - Enhanced
═══════════════════════════════════════════════════════════════ */
.news-ticker-wrapper {
    position: relative;
    background: linear-gradient(90deg, var(--bg-darker), var(--bg-dark), var(--bg-darker));
    border-top: 1px solid var(--viper-red-dark);
    border-bottom: 1px solid var(--viper-red-dark);
    z-index: 100;
    margin: 0;
    padding: 0;
}

.news-ticker-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        var(--viper-blood) 0%, 
        transparent 10%, 
        transparent 90%, 
        var(--viper-blood) 100%
    );
    opacity: 0.3;
}

.news-container-epic {
    display: flex;
    align-items: stretch;
    overflow: hidden;
    position: relative;
    min-height: 50px;
}

.ticker-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 25px;
    background: var(--viper-red-dark);
    color: var(--text-primary);
    font-family: var(--font-tech);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
    z-index: 2;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--viper-red);
    border-radius: 50%;
    animation: pulseDot 1s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.ticker-content {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ticker-content ul {
    display: flex;
    align-items: center;
    animation: tickerScroll 30s linear infinite;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ticker-item {
    white-space: nowrap;
    padding: 0 50px;
    color: var(--viper-gold);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    line-height: 50px;
}

@keyframes tickerScroll {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

/* ═══════════════════════════════════════════════════════════════
   RELEASES SECTION
═══════════════════════════════════════════════════════════════ */
.releases-section {
    padding: 30px 20px;
    margin: 0;
    background: transparent;
    position: relative;
    z-index: 10;
}

/* Pinned Section Styling */
.pinned-section {
    padding-bottom: 20px;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
}

.pinned-section .section-title {
    color: #ff3333;
}

.pinned-section .title-decorator {
    color: #ffcc00;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.8);
}

.pinned-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: var(--container-max);
    margin: 0 auto 10px;
    padding: 0 20px;
}

/* Pinned Card Special Styling */
.pinned-card {
    position: relative;
    border: 1px solid rgba(255, 204, 0, 0.3) !important;
    box-shadow: 0 5px 30px rgba(255, 204, 0, 0.15) !important;
}

.pinned-card:hover {
    border-color: rgba(255, 204, 0, 0.6) !important;
    box-shadow: 0 10px 50px rgba(255, 204, 0, 0.25) !important;
}

.pinned-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffcc00 0%, #ff9900 100%);
    color: #000;
    font-family: var(--font-tech);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 4px;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(255, 204, 0, 0.5);
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

.title-decorator {
    color: var(--viper-red);
    margin: 0 10px;
}

.section-subtitle {
    font-family: var(--font-tech);
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Releases Grid */
.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: var(--container-max);
    margin: 0 auto 20px;
    padding: 0 20px;
}

/* Release Card */
.release-card {
    background: linear-gradient(145deg, var(--bg-dark), var(--bg-darker));
    border: 1px solid var(--viper-red-dark);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.release-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--viper-red-glow) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.release-card:hover {
    transform: translateY(-10px);
    border-color: var(--viper-red);
    box-shadow: 0 20px 40px rgba(139, 0, 0, 0.3);
}

.release-card:hover::before {
    opacity: 0.1;
}

.release-artwork {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.release-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.release-card:hover .release-artwork img {
    transform: scale(1.1);
}

.release-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, var(--bg-void) 100%);
    pointer-events: none;
}

.release-info {
    padding: 20px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
}

.release-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
    min-height: 2.6em;
    max-height: 2.6em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.release-date {
    font-family: var(--font-tech);
    font-size: 0.75rem;
    color: var(--viper-red);
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.release-player {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    z-index: 5;
    margin-top: auto;
}

.release-player iframe {
    display: block;
    width: 100%;
    height: 120px;
    position: relative;
    z-index: 5;
}

/* Loading State */
.release-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--viper-red-dark);
    border-top-color: var(--viper-red);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.release-loading p {
    font-family: var(--font-tech);
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

/* View All Button */
.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--viper-red);
    color: var(--viper-red) !important;
    font-family: var(--font-tech);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: flex;
    width: fit-content;
}

.view-all-btn:visited {
    color: var(--viper-red) !important;
}

.view-all-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.view-all-btn:hover {
    background: var(--viper-red);
    color: var(--text-primary) !important;
    box-shadow: var(--glow-red);
}

.view-all-btn:hover svg {
    transform: translateX(5px);
}

/* ═══════════════════════════════════════════════════════════════
   FEATURED SECTION
═══════════════════════════════════════════════════════════════ */
.featured-section {
    position: relative;
    padding: 80px 20px;
    background: var(--bg-darker);
    overflow: hidden;
}

.featured-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, var(--viper-blood) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, var(--viper-blood) 0%, transparent 50%);
    opacity: 0.2;
}

.featured-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

.featured-label {
    font-family: var(--font-tech);
    font-size: 0.85rem;
    color: var(--viper-red);
    letter-spacing: 0.3em;
    margin-bottom: 30px;
}

.featured-player {
    background: var(--bg-dark);
    border: 1px solid var(--viper-red-dark);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-heavy);
}

.featured-player iframe {
    border-radius: 8px;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════════════════════ */
.about-section {
    padding: 80px 20px 100px;
    margin: 60px 0;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(139, 0, 0, 0.05) 20%, 
        rgba(139, 0, 0, 0.08) 50%, 
        rgba(139, 0, 0, 0.05) 80%, 
        transparent 100%);
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(139, 0, 0, 0.3);
    border-bottom: 1px solid rgba(139, 0, 0, 0.3);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    align-items: center;
}

@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border: 3px solid var(--viper-red-dark);
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, var(--viper-red-glow) 0%, transparent 70%);
    opacity: 0.5;
    z-index: -1;
}

.about-name {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--text-primary);
    margin-bottom: 5px;
    text-align: center;
}

.about-alias {
    font-family: var(--font-tech);
    font-size: 1.1rem;
    color: var(--viper-red);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5), 0 0 40px rgba(255, 0, 0, 0.3);
    animation: pulse-glow-text 3s ease-in-out infinite;
    text-align: center;
}

@keyframes pulse-glow-text {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 0, 0, 0.5), 0 0 40px rgba(255, 0, 0, 0.3); }
    50% { text-shadow: 0 0 30px rgba(255, 0, 0, 0.8), 0 0 60px rgba(255, 0, 0, 0.5), 0 0 80px rgba(255, 0, 0, 0.3); }
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-text:first-of-type {
    font-size: 1.4rem;
    color: var(--text-primary);
    font-style: italic;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(139, 0, 0, 0.2);
}

.about-text strong {
    color: var(--viper-red);
}

.about-text em {
    color: var(--viper-gold);
    font-style: italic;
}

.viper-highlight {
    color: var(--viper-red) !important;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    font-weight: bold;
    letter-spacing: 0.1em;
}

.about-cta {
    font-size: 1.5rem;
    color: var(--viper-gold);
    margin-top: 45px;
    padding-top: 30px;
    text-align: center;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    border-top: 1px solid rgba(139, 0, 0, 0.2);
}

.about-cta-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 15px;
    text-align: center;
    letter-spacing: 0.15em;
    opacity: 0.9;
}

/* ═══════════════════════════════════════════════════════════════
   MAIN CONTENT - Buttons
═══════════════════════════════════════════════════════════════ */
.main-content {
    padding: 80px 20px 60px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(139, 0, 0, 0.03) 30%, 
        rgba(139, 0, 0, 0.05) 50%, 
        rgba(139, 0, 0, 0.03) 70%, 
        transparent 100%);
    position: relative;
    z-index: 10;
    margin-top: 40px;
    border-top: 1px solid rgba(139, 0, 0, 0.2);
}

.main-content .container {
    max-width: 600px;
}

/* Epic Links Header */
.links-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
}

.links-icon-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.links-icon {
    font-size: 2.5rem;
    animation: bounce-icon 2s ease-in-out infinite;
}

.links-icon:nth-child(1) { animation-delay: 0s; }
.links-icon:nth-child(2) { animation-delay: 0.3s; }
.links-icon:nth-child(3) { animation-delay: 0.6s; }

@keyframes bounce-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.links-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--viper-gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    text-shadow: 
        0 0 30px rgba(255, 215, 0, 0.6), 
        0 0 60px rgba(255, 215, 0, 0.4),
        0 0 90px rgba(255, 215, 0, 0.2),
        0 4px 15px rgba(0, 0, 0, 0.5);
    animation: pulse-gold 3s ease-in-out infinite;
    background: linear-gradient(180deg, #ffd700, #ff8c00, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 100% 200%;
    animation: gold-shine 3s ease-in-out infinite;
}

@keyframes gold-shine {
    0%, 100% { 
        background-position: 0% 0%;
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
    }
    50% { 
        background-position: 0% 100%;
        filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.8));
    }
}

.links-subtitle {
    font-family: var(--font-tech);
    font-size: 1.1rem;
    color: var(--text-secondary);
    letter-spacing: 0.15em;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.links-divider {
    width: 300px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--viper-red), var(--viper-gold), var(--viper-red), transparent);
    margin: 0 auto;
    box-shadow: 0 0 20px var(--viper-red-glow), 0 0 40px rgba(255, 215, 0, 0.3);
    border-radius: 2px;
}

.button-section {
    margin-bottom: 60px;
    padding: 35px 25px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(20, 0, 0, 0.5));
    border-radius: 20px;
    border: 1px solid rgba(139, 0, 0, 0.3);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button-section:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(139, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.button-section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--viper-red);
    margin-bottom: 30px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(139, 0, 0, 0.5);
}

.section-icon {
    font-size: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   EPIC BUTTON STYLES - Linktree Buttons
═══════════════════════════════════════════════════════════════ */

.button-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

/* Epic Button Base */
.epic-button {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    width: 100% !important;
    min-height: 70px;
    padding: 18px 28px !important;
    font-family: var(--font-body) !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    border-radius: 15px !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

/* Glow ring effect */
.epic-button::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 18px;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.epic-button:hover::after {
    opacity: 1;
}

/* Shine effect on hover */
.epic-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s ease;
}

.epic-button:hover::before {
    left: 100%;
}

.epic-button:hover {
    transform: translateY(-6px) scale(1.02) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.epic-button:active {
    transform: translateY(-2px) scale(1.01) !important;
}

/* Icon styling */
.epic-button .icon {
    width: 32px !important;
    height: 32px !important;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.epic-button:hover .icon {
    transform: scale(1.25) rotate(5deg);
}
    height: 26px !important;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.epic-button:hover .icon {
    transform: scale(1.15);
}

/* Text styling */
.epic-button span {
    flex: 1;
    text-align: left;
}

/* ═══════════════════════════════════════════════════════════════
   PLATFORM-SPECIFIC BUTTON STYLES
═══════════════════════════════════════════════════════════════ */

/* Spotify - Green Gradient */
.epic-button.button-spotify {
    background: linear-gradient(135deg, #1DB954 0%, #169c46 50%, #0d7a32 100%) !important;
    box-shadow: 
        0 6px 25px rgba(29, 185, 84, 0.5),
        0 0 40px rgba(29, 185, 84, 0.2),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

.epic-button.button-spotify:hover {
    box-shadow: 
        0 12px 40px rgba(29, 185, 84, 0.7),
        0 0 60px rgba(29, 185, 84, 0.4) !important;
}

/* SoundCloud - Orange Gradient */
.epic-button.button-soundcloud {
    background: linear-gradient(135deg, #ff7700 0%, #ff5500 50%, #e64a00 100%) !important;
    box-shadow: 
        0 6px 25px rgba(255, 85, 0, 0.5),
        0 0 40px rgba(255, 85, 0, 0.2),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

.epic-button.button-soundcloud:hover {
    box-shadow: 
        0 12px 40px rgba(255, 85, 0, 0.7),
        0 0 60px rgba(255, 85, 0, 0.4) !important;
}

/* YouTube - Red Gradient */
.epic-button.button-yt {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 50%, #990000 100%) !important;
    box-shadow: 
        0 6px 25px rgba(255, 0, 0, 0.5),
        0 0 40px rgba(255, 0, 0, 0.2),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

.epic-button.button-yt:hover {
    box-shadow: 
        0 12px 40px rgba(255, 0, 0, 0.7),
        0 0 60px rgba(255, 0, 0, 0.4) !important;
}

/* Apple Music - Gradient Pink */
.epic-button.button-apple-music {
    background: linear-gradient(135deg, #fc3c44 0%, #d12f9a 50%, #a01f7a 100%) !important;
    box-shadow: 
        0 6px 25px rgba(252, 60, 68, 0.5),
        0 0 40px rgba(209, 47, 154, 0.2),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

.epic-button.button-apple-music:hover {
    box-shadow: 
        0 12px 40px rgba(252, 60, 68, 0.7),
        0 0 60px rgba(209, 47, 154, 0.4) !important;
}

/* TikTok - Black with neon accents */
.epic-button.button-tiktok {
    background: linear-gradient(135deg, #000000 0%, #161616 50%, #1a1a1a 100%) !important;
    box-shadow: 
        0 6px 25px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(255, 0, 80, 0.3),
        0 0 20px rgba(0, 255, 255, 0.2),
        inset 0 1px 0 rgba(255,255,255,0.1);
    border: 2px solid transparent !important;
    background-clip: padding-box !important;
    position: relative;
}

.epic-button.button-tiktok::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #ff0050, #00f2ea, #ff0050);
    border-radius: 17px;
    z-index: -1;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.epic-button.button-tiktok:hover::after {
    opacity: 1;
}

.epic-button.button-tiktok:hover {
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(255, 0, 80, 0.5),
        0 0 40px rgba(0, 255, 255, 0.4) !important;
}

/* Discord - Blurple Gradient */
.epic-button.button-discord {
    background: linear-gradient(135deg, #5865F2 0%, #4752c4 50%, #3c45a5 100%) !important;
    box-shadow: 
        0 6px 25px rgba(88, 101, 242, 0.5),
        0 0 40px rgba(88, 101, 242, 0.2),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

.epic-button.button-discord:hover {
    box-shadow: 
        0 12px 40px rgba(88, 101, 242, 0.7),
        0 0 60px rgba(88, 101, 242, 0.4) !important;
}

/* Instagram - Rainbow Gradient */
.epic-button.button-instagram {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 35%, #fcb045 70%, #f77737 100%) !important;
    box-shadow: 
        0 6px 25px rgba(131, 58, 180, 0.5),
        0 0 40px rgba(253, 29, 29, 0.2),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

.epic-button.button-instagram:hover {
    box-shadow: 
        0 12px 40px rgba(253, 29, 29, 0.7),
        0 0 60px rgba(252, 176, 69, 0.4) !important;
}

/* Default/Personal - Viper Red Theme */
.epic-button.button-default {
    background: linear-gradient(135deg, #8b0000 0%, #5c0000 50%, #3d0000 100%) !important;
    box-shadow: 
        0 6px 25px rgba(139, 0, 0, 0.5),
        0 0 40px rgba(139, 0, 0, 0.2),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

.epic-button.button-default:hover {
    box-shadow: 
        0 12px 40px rgba(255, 10, 10, 0.7),
        0 0 60px rgba(139, 0, 0, 0.4) !important;
}

/* ═══════════════════════════════════════════════════════════════
   BUTTON SECTION STYLING
═══════════════════════════════════════════════════════════════ */

.button-section {
    margin-bottom: 50px;
    padding: 25px 20px;
    background: rgba(15, 0, 0, 0.6);
    border: 1px solid rgba(139, 0, 0, 0.3);
    border-radius: 16px;
}

.button-section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 25px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-icon {
    font-size: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   BUTTON PULSE ANIMATION (for featured buttons)
═══════════════════════════════════════════════════════════════ */

.epic-button.pulse-glow {
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(29, 185, 84, 0.4); }
    50% { box-shadow: 0 4px 35px rgba(29, 185, 84, 0.7); }
}

/* Make all button text white */
.epic-button,
.epic-button span {
    color: #ffffff !important;
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE MUSIC POPUP
═══════════════════════════════════════════════════════════════ */
.mobile-music-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 999999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.mobile-music-popup.show {
    display: flex !important;
}

.mobile-music-popup-content {
    background: linear-gradient(135deg, #1a0000 0%, #0d0d0d 50%, #1a0000 100%);
    border: 2px solid var(--viper-red);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    max-width: 350px;
    width: 100%;
    box-shadow: 
        0 0 50px rgba(139, 0, 0, 0.5),
        0 0 100px rgba(139, 0, 0, 0.3),
        inset 0 0 50px rgba(139, 0, 0, 0.1);
    animation: popup-appear 0.3s ease-out;
}

@keyframes popup-appear {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.popup-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    animation: bounce-icon 2s ease-in-out infinite;
}

.popup-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--viper-gold);
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.popup-text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.popup-play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #8b0000, #5c0000);
    border: 2px solid rgba(255, 0, 0, 0.5);
    border-radius: 50px;
    color: white;
    font-family: var(--font-tech);
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 30px rgba(139, 0, 0, 0.6);
    animation: pulse-play 2s ease-in-out infinite;
}

.popup-play-btn:hover,
.popup-play-btn:active {
    background: linear-gradient(135deg, #a00000, #700000);
    transform: scale(1.05);
    box-shadow: 0 8px 40px rgba(255, 0, 0, 0.8);
}

.popup-play-btn .play-icon {
    font-size: 1.4rem;
}

.popup-skip-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.9rem;
    margin-top: 15px;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
}

.popup-skip-btn:hover {
    color: var(--text-secondary);
}

@keyframes pulse-play {
    0%, 100% { box-shadow: 0 5px 30px rgba(139, 0, 0, 0.6); }
    50% { box-shadow: 0 5px 40px rgba(255, 0, 0, 0.8), 0 0 60px rgba(139, 0, 0, 0.4); }
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.epic-footer {
    position: relative;
    padding: 40px 20px 30px;
    margin: 0;
    background: var(--bg-darker);
    border-top: 1px solid var(--viper-red-dark);
    text-align: center;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 200px;
    background: radial-gradient(ellipse at bottom, var(--viper-blood) 0%, transparent 70%);
    opacity: 0.3;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--viper-red);
    letter-spacing: 0.2em;
    margin-bottom: 10px;
}

.footer-tagline {
    font-family: var(--font-tech);
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--viper-red);
}

.footer-divider {
    color: var(--viper-red-dark);
    margin: 0 15px;
}

.footer-credits {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-credits a {
    color: var(--viper-red);
    text-decoration: none;
}

.footer-credits a:hover {
    text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN - TABLET (1024px and below)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 40px 20px;
    }
    
    .hero-section {
        min-height: 100svh; /* Use small viewport height for mobile browsers */
    }
    
    .hero-avatar-container {
        width: 180px;
        height: 180px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    
    .section-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }
    
    .releases-grid,
    .pinned-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .about-image {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .social-buttons {
        justify-content: center;
    }
    
    .epic-button {
        min-width: 200px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN - MOBILE (768px and below)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    :root {
        --section-padding: 25px 15px;
    }
    
    .hero-avatar-container {
        width: 150px;
        height: 150px;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
        letter-spacing: 0.15em;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 0.15em;
    }
    
    .hero-tagline {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .tag {
        padding: 6px 12px;
        font-size: 0.6rem;
    }
    
    /* News Ticker Mobile */
    .news-ticker-wrapper {
        min-height: 45px;
    }
    
    .news-container-epic {
        min-height: 45px;
    }
    
    .ticker-label {
        padding: 0 15px;
        font-size: 0.7rem;
        letter-spacing: 0.05em;
    }
    
    .ticker-item {
        font-size: 0.85rem;
        padding: 0 30px;
        line-height: 45px;
    }
    
    /* Releases Grid Mobile - Single Column */
    .releases-grid,
    .pinned-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .release-card {
        border-radius: 10px;
    }
    
    .release-title {
        font-size: 1rem;
    }
    
    /* Section Headers Mobile */
    .section-header {
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
        letter-spacing: 0.08em;
    }
    
    .section-subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.1em;
    }
    
    .title-decorator {
        margin: 0 5px;
    }
    
    /* About Section Mobile */
    .about-container {
        gap: 25px;
        padding: 0 15px;
    }
    
    .about-image {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .about-title {
        font-size: 1.5rem;
    }
    
    .about-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    /* Social Buttons Mobile */
    .social-buttons {
        gap: 12px;
    }
    
    .epic-button {
        min-width: 100%;
        padding: 14px 20px !important;
        font-size: 0.95rem !important;
    }
    
    .epic-button .icon {
        width: 22px !important;
        height: 22px !important;
    }
    
    /* View All Button Mobile */
    .view-all-btn {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
    
    /* Footer Mobile */
    .epic-footer {
        padding: 30px 15px 25px;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .footer-tagline {
        font-size: 0.8rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Scroll Indicator Mobile */
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-indicator span {
        font-size: 0.6rem;
        letter-spacing: 0.2em;
    }
    
    .scroll-arrow {
        width: 25px;
        height: 25px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN - SMALL MOBILE (480px and below)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .hero-section {
        padding: 20px 10px;
    }
    
    .hero-avatar-container {
        width: 120px;
        height: 120px;
    }
    
    .hero-avatar-glow {
        width: 140px;
        height: 140px;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 12vw, 2rem);
        letter-spacing: 0.1em;
    }
    
    .hero-subtitle {
        font-size: 0.7rem;
    }
    
    .tag-divider {
        display: none;
    }
    
    .hero-tagline {
        flex-direction: column;
        gap: 8px;
    }
    
    .tag {
        padding: 5px 10px;
        font-size: 0.55rem;
    }
    
    /* Ticker Small Mobile */
    .ticker-label {
        padding: 0 10px;
        font-size: 0.65rem;
    }
    
    .ticker-item {
        font-size: 0.8rem;
        padding: 0 20px;
    }
    
    /* Sections Small Mobile */
    .releases-section,
    .about-section {
        padding: 20px 10px;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .section-subtitle {
        font-size: 0.7rem;
    }
    
    /* Cards Small Mobile */
    .release-card {
        border-radius: 8px;
    }
    
    .release-info {
        padding: 12px;
    }
    
    .release-title {
        font-size: 0.95rem;
    }
    
    .release-date {
        font-size: 0.75rem;
    }
    
    .pinned-badge {
        top: 10px;
        right: 10px;
        font-size: 0.6rem;
        padding: 4px 10px;
    }
    
    /* About Small Mobile */
    .about-image {
        max-width: 160px;
    }
    
    .about-title {
        font-size: 1.3rem;
    }
    
    .about-text {
        font-size: 0.9rem;
    }
    
    /* Buttons Small Mobile */
    .epic-button {
        padding: 12px 16px !important;
        font-size: 0.9rem !important;
        gap: 12px !important;
    }
    
    .epic-button .icon {
        width: 20px !important;
        height: 20px !important;
    }
    
    /* Footer Small Mobile */
    .footer-logo {
        font-size: 1.3rem;
    }
    
    .footer-credits {
        font-size: 0.7rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   TOUCH DEVICE OPTIMIZATIONS
═══════════════════════════════════════════════════════════════ */
@media (hover: none) and (pointer: coarse) {
    /* Disable hover effects on touch devices for better performance */
    .release-card:hover {
        transform: none;
    }
    
    .epic-button:hover {
        transform: none !important;
    }
    
    .epic-button:hover::before {
        left: -100%;
    }
    
    .tag:hover {
        color: var(--text-secondary);
        border-color: var(--viper-red-dark);
        box-shadow: none;
    }
    
    /* Add active states for touch feedback */
    .release-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .epic-button:active {
        transform: scale(0.97) !important;
        transition: transform 0.1s ease !important;
    }
    
    .tag:active {
        background: rgba(255, 10, 10, 0.2);
    }
}

/* ═══════════════════════════════════════════════════════════════
   LANDSCAPE MOBILE ORIENTATION
═══════════════════════════════════════════════════════════════ */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 40px 20px;
    }
    
    .hero-avatar-container {
        width: 100px;
        height: 100px;
    }
    
    .hero-content {
        padding: 10px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS - Entrance Effects
═══════════════════════════════════════════════════════════════ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children animations */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
