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

:root {
    --color-bg-dark: #000000;
    --color-bg-secondary: #0a0000;
    --color-bg-tertiary: #140000;
    --color-accent: #8b0000;
    --color-accent-hover: #b22222;
    --color-accent-dark: #5c0000;
    --color-text: #e0e0e0;
    --color-text-secondary: #999999;
    --color-text-tertiary: #666666;
    --color-border: #1a0000;
    --color-border-light: #2a0000;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-dark);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(139, 0, 0, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(139, 0, 0, 0.05) 0%, transparent 20%);
    position: relative;
}

/* Floating Halloween particles */
body::before,
body::after {
    content: '';
    position: fixed;
    width: 40px;
    height: 40px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 999;
    animation: floatParticle 20s ease-in-out infinite;
}

body::before {
    top: 10%;
    left: 5%;
    background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
    filter: blur(20px);
    animation-delay: 0s;
}

body::after {
    bottom: 20%;
    right: 10%;
    background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
    filter: blur(25px);
    animation-delay: 10s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.1;
    }
    25% {
        transform: translate(30px, -50px) scale(1.2);
        opacity: 0.2;
    }
    50% {
        transform: translate(-20px, -80px) scale(0.9);
        opacity: 0.15;
    }
    75% {
        transform: translate(40px, -30px) scale(1.1);
        opacity: 0.18;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--color-accent-dark);
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.3);
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition-smooth);
}

/* Cobweb decoration on navbar corners */
.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background:
        linear-gradient(45deg, transparent 48%, rgba(139, 0, 0, 0.1) 49%, rgba(139, 0, 0, 0.1) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(139, 0, 0, 0.08) 49%, rgba(139, 0, 0, 0.08) 51%, transparent 52%),
        radial-gradient(circle at top right, rgba(139, 0, 0, 0.05) 30%, transparent 31%);
    opacity: 0.5;
    pointer-events: none;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-text);
    text-shadow: 0 0 20px rgba(139, 0, 0, 0.6);
}

.logo-accent {
    color: var(--color-accent);
    text-shadow: 0 0 20px var(--color-accent);
}

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

.nav-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    box-shadow: 0 0 10px var(--color-accent);
    transition: var(--transition-smooth);
}

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

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition-smooth);
}

.mobile-menu-toggle:hover .hamburger-line {
    background: var(--color-accent);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-bg-secondary);
    border-left: 1px solid var(--color-border);
    z-index: 1002;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(139, 0, 0, 0.3);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu-header .logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition-smooth);
}

.mobile-menu-close:hover {
    color: var(--color-accent);
    transform: rotate(90deg);
}

.mobile-menu-links {
    padding: 2rem 0;
}

.mobile-menu-link {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    transition: var(--transition-smooth);
    border-left: 3px solid transparent;
}

.mobile-menu-link:hover {
    background: rgba(139, 0, 0, 0.1);
    border-left-color: var(--color-accent);
    color: var(--color-accent);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    overflow: hidden;
}

/* Spider web decorations in hero corners */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    pointer-events: none;
    opacity: 0.15;
    z-index: 3;
}

.hero::before {
    top: 80px;
    left: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 19px, rgba(139, 0, 0, 0.3) 19px, rgba(139, 0, 0, 0.3) 20px),
        repeating-linear-gradient(90deg, transparent, transparent 19px, rgba(139, 0, 0, 0.3) 19px, rgba(139, 0, 0, 0.3) 20px),
        repeating-linear-gradient(45deg, transparent, transparent 28px, rgba(139, 0, 0, 0.2) 28px, rgba(139, 0, 0, 0.2) 29px),
        repeating-linear-gradient(-45deg, transparent, transparent 28px, rgba(139, 0, 0, 0.2) 28px, rgba(139, 0, 0, 0.2) 29px),
        radial-gradient(circle at top left, rgba(139, 0, 0, 0.1) 40%, transparent 41%);
    mask-image: radial-gradient(circle at top left, black 40%, transparent 70%);
}

.hero::after {
    top: 80px;
    right: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 19px, rgba(139, 0, 0, 0.3) 19px, rgba(139, 0, 0, 0.3) 20px),
        repeating-linear-gradient(90deg, transparent, transparent 19px, rgba(139, 0, 0, 0.3) 19px, rgba(139, 0, 0, 0.3) 20px),
        repeating-linear-gradient(45deg, transparent, transparent 28px, rgba(139, 0, 0, 0.2) 28px, rgba(139, 0, 0, 0.2) 29px),
        repeating-linear-gradient(-45deg, transparent, transparent 28px, rgba(139, 0, 0, 0.2) 28px, rgba(139, 0, 0, 0.2) 29px),
        radial-gradient(circle at top right, rgba(139, 0, 0, 0.1) 40%, transparent 41%);
    mask-image: radial-gradient(circle at top right, black 40%, transparent 70%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 0, 0, 0.9) 100%),
        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?q=80&w=2070&auto=format&fit=crop') center/cover;
    z-index: 0;
    filter: brightness(0.4) contrast(1.3);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(139, 0, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 0, 0, 0.15) 0%, transparent 50%);
    animation: ominousPulse 20s ease-in-out infinite;
    z-index: 1;
}

/* Haunted moon in hero with witch flying across */
.hero-background::after {
    content: '🌕';
    position: absolute;
    top: 10%;
    right: 8%;
    font-size: 10rem;
    opacity: 0.08;
    filter: drop-shadow(0 0 60px rgba(139, 0, 0, 0.4));
    animation: eerieGlow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes eerieGlow {
    0%, 100% {
        opacity: 0.08;
        filter: drop-shadow(0 0 60px rgba(139, 0, 0, 0.4));
    }
    50% {
        opacity: 0.14;
        filter: drop-shadow(0 0 80px rgba(139, 0, 0, 0.6));
    }
}

/* Witch flying across the moon */
.hero-overlay::before {
    content: '🧹';
    position: absolute;
    top: 12%;
    right: 0;
    font-size: 2rem;
    opacity: 0.25;
    filter: drop-shadow(0 0 15px rgba(139, 0, 0, 0.5));
    animation: witchFly 40s linear infinite;
    pointer-events: none;
    transform-origin: center;
}

@keyframes witchFly {
    0% {
        right: 0;
        top: 12%;
        opacity: 0;
        transform: rotate(-10deg) scaleX(-1);
    }
    10% {
        opacity: 0.25;
    }
    90% {
        opacity: 0.25;
    }
    100% {
        right: 100%;
        top: 18%;
        opacity: 0;
        transform: rotate(-15deg) scaleX(-1);
    }
}

/* Hanging spiders on sides */
.hero-background::before {
    content: '🕷️';
    position: absolute;
    top: 25%;
    left: 10%;
    font-size: 2rem;
    opacity: 0.2;
    filter: drop-shadow(0 0 10px rgba(139, 0, 0, 0.5));
    animation: swingSpider 6s ease-in-out infinite;
    transform-origin: top center;
    pointer-events: none;
}

@keyframes swingSpider {
    0%, 100% {
        transform: rotate(-8deg);
    }
    50% {
        transform: rotate(8deg);
    }
}

@keyframes ominousPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

/* Multiple flying bats in hero */
.hero-content::before {
    content: '🦇';
    position: absolute;
    top: -10%;
    left: 5%;
    font-size: 2rem;
    opacity: 0.2;
    animation: flyingBat1 25s ease-in-out infinite;
    pointer-events: none;
    filter: drop-shadow(0 0 10px rgba(139, 0, 0, 0.6));
}

@keyframes flyingBat1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scaleX(1);
        opacity: 0.15;
    }
    25% {
        transform: translate(150px, -80px) rotate(-20deg) scaleX(-1);
        opacity: 0.25;
    }
    50% {
        transform: translate(300px, 40px) rotate(10deg) scaleX(1);
        opacity: 0.2;
    }
    75% {
        transform: translate(450px, -60px) rotate(-15deg) scaleX(-1);
        opacity: 0.18;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(139, 0, 0, 0.15);
    border: 1px solid rgba(139, 0, 0, 0.4);
    border-radius: 100px;
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.3);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: sinisterBlink 3s ease-in-out infinite;
    box-shadow: 0 0 10px var(--color-accent);
}

@keyframes sinisterBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.hero-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--color-text-secondary);
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 5.5rem;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    line-height: 1;
    animation: fadeInUp 1s ease-out 0.1s both;
    text-shadow: 0 0 40px rgba(139, 0, 0, 0.8), 0 0 80px rgba(139, 0, 0, 0.4);
}

.hero-description {
    font-size: 1.375rem;
    color: var(--color-text-secondary);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.2s both;
    line-height: 1.6;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.3s both;
    position: relative;
}

/* Skeletal hands decoration */
.hero-stats::before {
    content: '☠️';
    position: absolute;
    left: -15%;
    font-size: 2rem;
    opacity: 0.15;
    filter: drop-shadow(0 0 20px rgba(139, 0, 0, 0.6));
    animation: skeletonShake 3s ease-in-out infinite;
    pointer-events: none;
}

.hero-stats::after {
    content: '☠️';
    position: absolute;
    right: -15%;
    font-size: 2rem;
    opacity: 0.15;
    filter: drop-shadow(0 0 20px rgba(139, 0, 0, 0.6));
    animation: skeletonShake 3s ease-in-out infinite 1.5s;
    pointer-events: none;
}

@keyframes skeletonShake {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 0 0 20px rgba(139, 0, 0, 0.6);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--color-border);
    box-shadow: 0 0 10px rgba(139, 0, 0, 0.3);
}

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

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.4s both;
    position: relative;
}

/* Black cat watching from below */
.hero-actions::after {
    content: '🐈‍⬛';
    position: absolute;
    bottom: -120%;
    left: -10%;
    font-size: 3rem;
    opacity: 0.18;
    filter: drop-shadow(0 0 20px rgba(139, 0, 0, 0.5));
    animation: catTail 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes catTail {
    0%, 100% {
        transform: translateX(0) scaleX(1);
    }
    50% {
        transform: translateX(10px) scaleX(-1);
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.cta-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: white;
    border-color: var(--color-accent);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.4);
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: var(--transition-smooth);
}

.cta-primary:hover {
    background: linear-gradient(135deg, var(--color-accent-hover) 0%, var(--color-accent) 100%);
    border-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(139, 0, 0, 0.6), 0 0 60px rgba(139, 0, 0, 0.3);
}

.cta-primary:hover::before {
    left: 100%;
    transition: left 0.6s ease;
}

.cta-secondary {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-border-light);
}

.cta-secondary:hover {
    background: rgba(139, 0, 0, 0.1);
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: haunted-bounce 2s ease-in-out infinite;
}

/* Pumpkins flanking the hero */
.hero::before {
    content: '🎃';
    position: absolute;
    bottom: 15%;
    left: 8%;
    font-size: 4rem;
    opacity: 0.15;
    filter: drop-shadow(0 0 30px rgba(255, 140, 0, 0.4));
    animation: pumpkinGlow 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 4;
}

.hero::after {
    content: '🎃';
    position: absolute;
    bottom: 20%;
    right: 8%;
    font-size: 3.5rem;
    opacity: 0.15;
    filter: drop-shadow(0 0 30px rgba(255, 140, 0, 0.4));
    animation: pumpkinGlow 5s ease-in-out infinite 2.5s;
    pointer-events: none;
    z-index: 4;
}

@keyframes pumpkinGlow {
    0%, 100% {
        opacity: 0.12;
        filter: drop-shadow(0 0 30px rgba(255, 140, 0, 0.4));
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        filter: drop-shadow(0 0 50px rgba(255, 140, 0, 0.6));
        transform: scale(1.05);
    }
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-left: 2px solid var(--color-accent);
    border-bottom: 2px solid var(--color-accent);
    transform: rotate(-45deg);
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.5);
}

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

/* Comeback Story Section */
.comeback-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(10, 0, 0, 1) 100%);
}

/* Grave decoration */
.comeback-section::before {
    content: '⚰️ 🪦 💀';
    position: absolute;
    bottom: 10%;
    left: 5%;
    right: 5%;
    text-align: center;
    font-size: 3rem;
    opacity: 0.12;
    pointer-events: none;
    filter: drop-shadow(0 0 25px rgba(139, 0, 0, 0.5));
    animation: fadeInOut 10s ease-in-out infinite;
    letter-spacing: 8rem;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.08;
    }
    50% {
        opacity: 0.18;
    }
}

.comeback-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(139, 0, 0, 0.1) 0%, transparent 70%);
    z-index: 0;
    animation: ominousPulse 15s ease-in-out infinite;
}

/* Candles on either side of comeback */
.comeback-background::before,
.comeback-background::after {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.15;
    pointer-events: none;
    filter: drop-shadow(0 0 30px rgba(255, 140, 0, 0.5));
    animation: candleFlicker 4s ease-in-out infinite;
}

.comeback-background::before {
    content: '🕯️ 🕯️';
    top: 30%;
    left: 3%;
    letter-spacing: 1rem;
}

.comeback-background::after {
    content: '🕯️ 🕯️';
    top: 40%;
    right: 3%;
    letter-spacing: 1rem;
    animation-delay: 2s;
}

.comeback-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    box-shadow: 0 0 20px var(--color-accent);
    z-index: 1;
}

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

.comeback-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(139, 0, 0, 0.2);
    border: 1px solid rgba(139, 0, 0, 0.5);
    border-radius: 100px;
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.3);
}

.comeback-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    letter-spacing: -1px;
    text-shadow: 0 0 30px rgba(139, 0, 0, 0.6);
    position: relative;
}

/* Raven perched on title */
.comeback-title::before {
    content: '🦅';
    position: absolute;
    top: -30%;
    right: -5%;
    font-size: 2.5rem;
    opacity: 0.2;
    filter: drop-shadow(0 0 20px rgba(139, 0, 0, 0.5)) grayscale(100%);
    animation: ravenWatch 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ravenWatch {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

.comeback-text {
    text-align: left;
}

.comeback-text p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.comeback-text .lead {
    font-size: 1.25rem;
    color: var(--color-text);
    font-weight: 500;
    line-height: 1.7;
}

.comeback-quote {
    position: relative;
    margin-top: 3rem;
    padding: 2.5rem;
    background: rgba(139, 0, 0, 0.1);
    border-left: 4px solid var(--color-accent);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(139, 0, 0, 0.2);
}

/* Ghost haunting the quote */
.comeback-quote::before {
    content: '👻';
    position: absolute;
    top: -20px;
    right: 5%;
    font-size: 2rem;
    opacity: 0.15;
    filter: drop-shadow(0 0 25px rgba(139, 0, 0, 0.5));
    animation: hauntQuote 12s ease-in-out infinite;
    pointer-events: none;
}

@keyframes hauntQuote {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.12;
    }
    25% {
        transform: translate(-20px, -15px) rotate(-8deg);
        opacity: 0.2;
    }
    50% {
        transform: translate(20px, 10px) rotate(5deg);
        opacity: 0.15;
    }
    75% {
        transform: translate(-15px, -20px) rotate(-10deg);
        opacity: 0.18;
    }
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 4rem;
    color: var(--color-accent);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.comeback-quote p {
    font-size: 1.25rem;
    color: var(--color-text);
    font-style: italic;
    margin-bottom: 1rem;
}

.quote-author {
    font-size: 0.9375rem;
    color: var(--color-text-tertiary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Styling */
section {
    padding: 8rem 0;
    position: relative;
}

/* Fog effect at section bottoms */
section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(139, 0, 0, 0.03) 0%, transparent 100%);
    pointer-events: none;
    opacity: 0.6;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(139, 0, 0, 0.15);
    border: 1px solid rgba(139, 0, 0, 0.3);
    border-radius: 100px;
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.text-accent {
    color: var(--color-accent);
    text-shadow: 0 0 20px rgba(139, 0, 0, 0.4);
}

/* About Section */
.about {
    position: relative;
    background: var(--color-bg-secondary);
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(139, 0, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(139, 0, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    animation: ominousPulse 12s ease-in-out infinite;
}

.about-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    font-size: 1.0625rem;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.lead-text {
    font-size: 1.25rem !important;
    font-weight: 500;
    color: var(--color-text) !important;
    line-height: 1.7 !important;
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 120px;
}

.info-box {
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.info-box:hover {
    border-color: rgba(139, 0, 0, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 0, 0, 0.3);
}

.info-box h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
    font-weight: 600;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(139, 0, 0, 0.08);
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(139, 0, 0, 0.2);
}

.info-icon {
    font-size: 1.5rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(139, 0, 0, 0.5);
}

.info-label {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.stats-box {
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    justify-content: space-around;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.stats-box:hover {
    border-color: rgba(139, 0, 0, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 0, 0, 0.3);
}

.stats-item {
    text-align: center;
}

.stats-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 0 0 15px rgba(139, 0, 0, 0.6);
}

.stats-label {
    font-size: 0.8125rem;
    color: var(--color-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Compact Sponsors Section */
.sponsors-compact {
    background: var(--color-bg-secondary);
    padding: 4rem 0;
    border-bottom: 1px solid var(--color-border);
}

.sponsors-compact-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.sponsors-compact-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.sponsor-compact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    opacity: 0.6;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.sponsor-compact-card:hover {
    opacity: 1;
    transform: translateY(-4px);
}

.sponsor-compact-logo {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 0, 0, 0.12);
    border-radius: 12px;
    color: var(--color-accent);
    transition: var(--transition-smooth);
    border: 1px solid rgba(139, 0, 0, 0.2);
}

.sponsor-compact-card:hover .sponsor-compact-logo {
    background: rgba(139, 0, 0, 0.2);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
    transform: scale(1.05);
}

.sponsor-compact-card span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-tertiary);
    text-align: center;
    transition: var(--transition-smooth);
}

.sponsor-compact-card:hover span {
    color: var(--color-accent);
}

/* Programming Section */
.programming {
    background: var(--color-bg-dark);
    position: relative;
    overflow: hidden;
}

.programming::before {
    content: '🕯️';
    position: absolute;
    top: 15%;
    left: 5%;
    font-size: 2rem;
    opacity: 0.08;
    pointer-events: none;
    filter: drop-shadow(0 0 20px rgba(139, 0, 0, 0.5));
    animation: candleFlicker 4s ease-in-out infinite;
}

@keyframes candleFlicker {
    0%, 100% {
        opacity: 0.08;
        transform: scale(1);
    }
    50% {
        opacity: 0.12;
        transform: scale(1.05);
    }
    75% {
        opacity: 0.06;
    }
}

.programming .container > * {
    position: relative;
    z-index: 1;
}

/* Featured Show */
.featured-show {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    background: var(--color-bg-tertiary);
    border: 1px solid rgba(139, 0, 0, 0.4);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 3rem;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.featured-show:hover {
    border-color: var(--color-accent);
    box-shadow: 0 15px 60px rgba(139, 0, 0, 0.4);
    transform: translateY(-4px);
}

.featured-show-image {
    position: relative;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.25) 0%, rgba(139, 0, 0, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(139, 0, 0, 0.15) 100%);
    animation: gradientShift 10s ease-in-out infinite;
}

.featured-icon {
    position: relative;
    z-index: 1;
    color: var(--color-accent);
    opacity: 0.8;
}

.featured-show-content {
    padding: 2rem 2rem 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(139, 0, 0, 0.2);
    border: 1px solid rgba(139, 0, 0, 0.4);
    border-radius: 100px;
    color: var(--color-accent);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    width: fit-content;
    font-family: var(--font-display);
}

.featured-show-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.featured-show-content p {
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.featured-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-tertiary);
    font-size: 0.8125rem;
    font-weight: 500;
}

.featured-time svg {
    color: var(--color-accent);
    width: 16px;
    height: 16px;
}

/* Live DJ Show */
.live-dj-show {
    background: var(--color-bg-tertiary);
    border: 1px solid rgba(139, 0, 0, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.live-dj-show:hover {
    border-color: var(--color-accent);
    box-shadow: 0 10px 40px rgba(139, 0, 0, 0.3);
}

.live-dj-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background: rgba(139, 0, 0, 0.2);
    border: 1px solid rgba(139, 0, 0, 0.4);
    border-radius: 100px;
    color: var(--color-accent);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-display);
}

.live-pulse {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: sinisterBlink 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--color-accent);
}

.live-dj-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.live-dj-avatar {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 0, 0, 0.15);
    border-radius: 50%;
    color: var(--color-accent);
    flex-shrink: 0;
    transition: var(--transition-smooth);
    border: 2px solid rgba(139, 0, 0, 0.3);
}

.live-dj-show:hover .live-dj-avatar {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.4);
}

.live-dj-info h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.live-dj-info p {
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.live-dj-schedule {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(139, 0, 0, 0.15);
    border: 1px solid rgba(139, 0, 0, 0.3);
    border-radius: 100px;
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 600;
}

/* Music Programs */
.music-programs {
    margin-bottom: 3rem;
}

.programs-subtitle {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.music-channel {
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 1.5rem;
    transition: var(--transition-smooth);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.music-channel:hover {
    border-color: rgba(139, 0, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 0, 0, 0.3);
}

.music-channel-header {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin: 0 auto 1rem;
    transition: var(--transition-smooth);
}

.music-channel:hover .music-channel-header {
    transform: scale(1.1) rotate(-5deg);
}

.music-channel-header.pop {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(219, 39, 119, 0.1));
    color: #ec4899;
}

.music-channel-header.rap {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.1));
    color: #fbbf24;
}

.music-channel-header.rock {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.3), rgba(92, 0, 0, 0.15));
    color: #b22222;
}

.music-channel-header.country {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.1));
    color: #22c55e;
}

.music-channel h5 {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
    color: var(--color-text);
}

.music-channel p {
    color: var(--color-text-tertiary);
    font-size: 0.8125rem;
}

/* Afterdark Show */
.afterdark-show {
    position: relative;
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.15) 0%, var(--color-bg-tertiary) 100%);
    border: 1px solid rgba(75, 0, 130, 0.4);
    border-radius: 12px;
    padding: 2rem;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.afterdark-show:hover {
    border-color: #6a0dad;
    box-shadow: 0 12px 50px rgba(75, 0, 130, 0.3);
    transform: translateY(-2px);
}

.afterdark-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -20px); }
}

.afterdark-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.afterdark-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(75, 0, 130, 0.25);
    border-radius: 16px;
    color: #ba55d3;
    flex-shrink: 0;
    transition: var(--transition-smooth);
    border: 1px solid rgba(75, 0, 130, 0.4);
}

.afterdark-show:hover .afterdark-icon {
    transform: rotate(-10deg) scale(1.05);
    box-shadow: 0 8px 30px rgba(75, 0, 130, 0.5);
}

.afterdark-icon svg {
    width: 36px;
    height: 36px;
}

.afterdark-info {
    flex: 1;
}

.afterdark-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.afterdark-info h5 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ba55d3;
}

.mature-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.625rem;
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: 100px;
    color: #f59e0b;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mature-badge svg {
    width: 12px;
    height: 12px;
}

.afterdark-info p {
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.afterdark-time {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(75, 0, 130, 0.2);
    border: 1px solid rgba(75, 0, 130, 0.4);
    border-radius: 100px;
    color: #ba55d3;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Player Section */
.player-section {
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-secondary) 100%);
}

.player-container {
    max-width: 800px;
    margin: 0 auto;
}

.player-wrapper {
    position: relative;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.7);
    overflow: hidden;
}

.player-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(139, 0, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 0, 0, 0.15) 0%, transparent 50%);
    animation: gradientShift 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

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

.player-visualizer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    padding: 0 3rem 1rem;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.visualizer-bar {
    width: 4px;
    background: linear-gradient(to top, var(--color-accent), rgba(139, 0, 0, 0.3));
    border-radius: 2px;
    animation: visualizerPulse 1.5s ease-in-out infinite;
}

.visualizer-bar:nth-child(1) { animation-delay: 0s; height: 15%; }
.visualizer-bar:nth-child(2) { animation-delay: 0.1s; height: 30%; }
.visualizer-bar:nth-child(3) { animation-delay: 0.2s; height: 45%; }
.visualizer-bar:nth-child(4) { animation-delay: 0.3s; height: 60%; }
.visualizer-bar:nth-child(5) { animation-delay: 0.4s; height: 50%; }
.visualizer-bar:nth-child(6) { animation-delay: 0.5s; height: 35%; }
.visualizer-bar:nth-child(7) { animation-delay: 0.6s; height: 25%; }
.visualizer-bar:nth-child(8) { animation-delay: 0.7s; height: 20%; }

@keyframes visualizerPulse {
    0%, 100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(1.5);
    }
}

.player-header {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.player-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.now-playing {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.live-indicator {
    width: 10px;
    height: 10px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: sinisterBlink 2s ease-in-out infinite;
    box-shadow: 0 0 15px var(--color-accent);
}

.live-text {
    font-weight: 700;
    color: var(--color-accent);
    font-size: 0.875rem;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(139, 0, 0, 0.6);
}

.station-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0;
}

.station-tagline {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
}

.frequency-display {
    text-align: right;
}

.frequency {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(139, 0, 0, 0.15);
    border: 1px solid rgba(139, 0, 0, 0.4);
    border-radius: 100px;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    font-family: var(--font-display);
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.3);
}

.player-controls {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.play-pause-btn {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    border: none;
    color: white;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.5);
    position: relative;
}

.play-pause-btn::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.play-pause-btn:hover {
    background: linear-gradient(135deg, var(--color-accent-hover) 0%, var(--color-accent) 100%);
    transform: scale(1.05);
    box-shadow: 0 8px 40px rgba(139, 0, 0, 0.7), 0 0 60px rgba(139, 0, 0, 0.4);
}

.play-pause-btn:hover::before {
    opacity: 0.3;
    animation: pulse-ring 1.5s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.play-pause-btn:active {
    transform: scale(0.95);
}

.play-icon-svg,
.pause-icon-svg {
    width: 28px;
    height: 28px;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.volume-icon {
    width: 22px;
    height: 22px;
    color: var(--color-text-secondary);
}

.volume-slider {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: var(--color-border);
    outline: none;
    -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-accent);
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.6);
}

.volume-slider::-webkit-slider-thumb:hover {
    background: var(--color-accent-hover);
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.8);
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-accent);
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.6);
}

.volume-slider::-moz-range-thumb:hover {
    background: var(--color-accent-hover);
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.8);
}

.volume-value {
    min-width: 45px;
    text-align: right;
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-display);
}

.player-status {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 1rem;
    background: rgba(139, 0, 0, 0.1);
    border-radius: 8px;
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    border: 1px solid rgba(139, 0, 0, 0.2);
}

/* Platforms Section */
.platforms {
    position: relative;
    background: var(--color-bg-secondary);
    overflow: hidden;
}

.platforms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 85% 15%, rgba(139, 0, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 15% 85%, rgba(139, 0, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    animation: ominousPulse 12s ease-in-out infinite reverse;
}

.platforms-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.platform-card {
    position: relative;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.08) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.platform-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 50px rgba(139, 0, 0, 0.3);
}

.platform-card:hover::before {
    opacity: 1;
}

.platform-header {
    margin-bottom: 1.5rem;
}

.platform-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 0, 0, 0.15);
    border-radius: 12px;
    color: var(--color-accent);
    margin-bottom: 1.25rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(139, 0, 0, 0.3);
}

.platform-card:hover .platform-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(139, 0, 0, 0.25);
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.4);
}

.platform-card h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.platform-card p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.platform-tag {
    display: inline-block;
    padding: 0.4rem 0.875rem;
    background: rgba(139, 0, 0, 0.15);
    border: 1px solid rgba(139, 0, 0, 0.3);
    border-radius: 100px;
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Setup Guide Section */
.setup-guide {
    background: var(--color-bg-dark);
    position: relative;
}

/* Ghost decoration */
.setup-guide::before {
    content: '👻';
    position: absolute;
    top: 20%;
    right: 5%;
    font-size: 4rem;
    opacity: 0.04;
    pointer-events: none;
    filter: drop-shadow(0 0 30px rgba(139, 0, 0, 0.3));
    animation: floatGhost 20s ease-in-out infinite;
}

@keyframes floatGhost {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.04;
    }
    25% {
        transform: translate(-30px, -40px) rotate(-5deg);
        opacity: 0.08;
    }
    50% {
        transform: translate(-60px, 20px) rotate(3deg);
        opacity: 0.06;
    }
    75% {
        transform: translate(-20px, -60px) rotate(-8deg);
        opacity: 0.09;
    }
}

.setup-content {
    max-width: 1000px;
    margin: 0 auto;
}

.setup-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.setup-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--color-text-secondary);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.setup-tab:hover {
    color: var(--color-text);
}

.setup-tab.active {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
    text-shadow: 0 0 15px rgba(139, 0, 0, 0.5);
}

.setup-panel {
    display: none;
}

.setup-panel.active {
    display: block;
}

.setup-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.stream-notice {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(139, 0, 0, 0.15);
    border: 1px solid rgba(139, 0, 0, 0.4);
    border-radius: 12px;
    margin-bottom: 2.5rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.stream-notice svg {
    flex-shrink: 0;
    color: var(--color-accent);
    margin-top: 0.125rem;
}

.stream-notice strong {
    color: var(--color-accent);
    font-weight: 600;
}

.stream-urls-section {
    margin-bottom: 3rem;
}

.stream-urls-section h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--color-text);
}

.stream-urls-section > p {
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    font-size: 1.0625rem;
}

.stream-url-card {
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.stream-url-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 0, 0, 0.3);
}

.stream-url-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.stream-format-badge {
    padding: 0.375rem 0.875rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    font-family: var(--font-display);
}

.stream-format-badge.hls {
    background: rgba(139, 0, 0, 0.2);
    color: var(--color-accent);
    border: 1px solid rgba(139, 0, 0, 0.4);
}

.stream-format-badge.mp3 {
    background: rgba(163, 163, 163, 0.15);
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border-light);
}

.stream-recommended {
    padding: 0.25rem 0.75rem;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 100px;
    color: #22c55e;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stream-description {
    color: var(--color-text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.setup-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
    margin: 3rem 0;
}

.setup-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.setup-step {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    background: rgba(139, 0, 0, 0.15);
    border: 2px solid var(--color-accent);
    border-radius: 12px;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1.125rem;
    font-family: var(--font-display);
    transition: var(--transition-smooth);
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.3);
}

.setup-step:hover .step-number {
    background: rgba(139, 0, 0, 0.25);
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.5);
}

.step-content h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
    font-weight: 600;
}

.step-content p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.code-inline {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: 'Monaco', 'Courier New', monospace;
    color: var(--color-accent);
    font-size: 0.875rem;
}

.code-block {
    margin-top: 1rem;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--color-border);
}

.code-header span {
    font-size: 0.8125rem;
    color: var(--color-text-tertiary);
    font-family: 'Monaco', 'Courier New', monospace;
}

.copy-btn {
    padding: 0.25rem 0.75rem;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    color: var(--color-text-secondary);
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 600;
}

.copy-btn:hover {
    background: rgba(139, 0, 0, 0.15);
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.code-block pre {
    margin: 0;
    padding: 1rem;
    overflow-x: auto;
}

.code-block code {
    font-family: 'Monaco', 'Courier New', monospace;
    color: var(--color-text);
    font-size: 0.875rem;
    line-height: 1.6;
}

.setup-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.setup-list li {
    padding: 0.5rem 0;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.setup-list li::before {
    content: '→';
    color: var(--color-accent);
    font-weight: bold;
    margin-right: 0.75rem;
}

/* Footer */
.footer {
    background: var(--color-bg-dark);
    border-top: 1px solid var(--color-accent-dark);
    padding: 3rem 0;
    box-shadow: 0 -4px 20px rgba(139, 0, 0, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand .logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(139, 0, 0, 0.6);
}

.footer-brand p {
    color: var(--color-text-tertiary);
    margin-top: 0.5rem;
    font-size: 0.9375rem;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    color: var(--color-text-tertiary);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-sidebar {
        position: static;
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    section {
        padding: 5rem 0;
    }

    .hero-title {
        font-size: 3.5rem;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .hero-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .comeback-title {
        font-size: 2.5rem;
    }

    .featured-show {
        grid-template-columns: 1fr;
    }

    .featured-show-image {
        min-height: 200px;
    }

    .featured-show-content {
        padding: 2rem;
    }

    .featured-show-content h3 {
        font-size: 1.75rem;
    }

    .music-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .afterdark-content {
        flex-direction: column;
        text-align: center;
    }

    .live-dj-content {
        flex-direction: column;
        text-align: center;
    }

    .live-dj-badge {
        position: static;
        margin: 0 auto 1rem;
        width: fit-content;
    }

    .sponsors-compact {
        padding: 3rem 0;
    }

    .sponsors-compact-grid {
        gap: 2rem;
    }

    .sponsor-compact-logo {
        width: 56px;
        height: 56px;
    }

    .sponsor-compact-logo svg {
        width: 32px;
        height: 32px;
    }

    .player-wrapper {
        padding: 2rem;
    }

    .player-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .player-controls {
        flex-direction: column;
        gap: 1.5rem;
    }

    .volume-control {
        width: 100%;
    }

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

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }

    .about-sidebar {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-divider {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

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

    .afterdark-icon {
        width: 64px;
        height: 64px;
    }

    .afterdark-info h5 {
        font-size: 1.5rem;
    }

    .sponsors-compact {
        padding: 2rem 0;
    }

    .sponsors-compact-grid {
        gap: 1.5rem;
    }

    .sponsor-compact-logo {
        width: 48px;
        height: 48px;
    }

    .sponsor-compact-logo svg {
        width: 28px;
        height: 28px;
    }

    .sponsor-compact-card span {
        font-size: 0.75rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Halloween-themed decorative elements */
.section-header::before {
    content: '☠';
    display: block;
    font-size: 2rem;
    color: var(--color-accent);
    opacity: 0.2;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(139, 0, 0, 0.5));
}

/* Floating bats animation */
.hero-content::after {
    content: '🦇 🦇';
    position: absolute;
    top: 20%;
    right: -10%;
    font-size: 2.5rem;
    opacity: 0.2;
    animation: floatingBat 30s ease-in-out infinite;
    pointer-events: none;
    z-index: 10;
    filter: drop-shadow(0 0 15px rgba(139, 0, 0, 0.6));
    letter-spacing: 3rem;
}

@keyframes floatingBat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scaleX(1);
        opacity: 0.15;
    }
    25% {
        transform: translate(-150px, 80px) rotate(-15deg) scaleX(-1);
        opacity: 0.25;
    }
    50% {
        transform: translate(-300px, -50px) rotate(10deg) scaleX(1);
        opacity: 0.2;
    }
    75% {
        transform: translate(-200px, 100px) rotate(-20deg) scaleX(-1);
        opacity: 0.22;
    }
}

/* Spooky section divider */
.comeback-section::after,
.programming::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--color-accent) 20%, transparent 40%, var(--color-accent) 60%, transparent 80%, var(--color-accent) 100%);
    opacity: 0.3;
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.5);
}

/* Moon decoration in background */
.platforms::before {
    content: '🌙';
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 8rem;
    opacity: 0.03;
    pointer-events: none;
    filter: drop-shadow(0 0 40px rgba(139, 0, 0, 0.3));
    z-index: 0;
}

/* Pumpkin decorative elements */
.player-section::before {
    content: '🎃';
    position: absolute;
    top: 5%;
    left: 3%;
    font-size: 3rem;
    opacity: 0.06;
    pointer-events: none;
    filter: drop-shadow(0 0 30px rgba(139, 0, 0, 0.4));
    animation: gentleRock 8s ease-in-out infinite;
}

@keyframes gentleRock {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

/* Ghostly mist particles */
.about::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    animation: driftingMist 25s ease-in-out infinite;
    pointer-events: none;
}

@keyframes driftingMist {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.2;
    }
    33% {
        transform: translate(100px, -50px) scale(1.3);
        opacity: 0.35;
    }
    66% {
        transform: translate(50px, 80px) scale(0.8);
        opacity: 0.25;
    }
}

/* Witch hat decoration */
.footer::before {
    content: '🎩';
    position: absolute;
    top: -60px;
    right: 10%;
    font-size: 3rem;
    opacity: 0.08;
    pointer-events: none;
    transform: rotate(15deg);
    filter: drop-shadow(0 0 20px rgba(139, 0, 0, 0.5));
}

/* Spider decoration crawling down */
.comeback-content::before {
    content: '🕷️';
    position: absolute;
    top: -10%;
    right: 15%;
    font-size: 2rem;
    opacity: 0.25;
    pointer-events: none;
    filter: drop-shadow(0 0 20px rgba(139, 0, 0, 0.6));
    animation: spiderCrawl 15s linear infinite;
}

@keyframes spiderCrawl {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.25;
    }
    90% {
        opacity: 0.25;
    }
    100% {
        transform: translateY(250px) rotate(180deg);
        opacity: 0;
    }
}

/* Floating ghosts in comeback section */
.comeback-content::after {
    content: '👻';
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 3rem;
    opacity: 0.15;
    pointer-events: none;
    filter: drop-shadow(0 0 30px rgba(139, 0, 0, 0.5));
    animation: floatGhostComeback 18s ease-in-out infinite;
}

@keyframes floatGhostComeback {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.12;
    }
    33% {
        transform: translate(50px, -60px) rotate(-10deg);
        opacity: 0.2;
    }
    66% {
        transform: translate(-30px, 40px) rotate(8deg);
        opacity: 0.16;
    }
}

/* Additional floating mist particles */
.player-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 8%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.4;
    animation: driftingMist 30s ease-in-out infinite reverse;
    pointer-events: none;
}

/* Blood drip effect on section dividers */
.section-header::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, var(--color-accent) 0%, transparent 100%);
    opacity: 0.3;
}
