/* ===========================================
 * PREMIUM LANDING PAGE - HOT PINK SUCCUBUS THEME
 * Aggressive hot pink dominant, predatory, neon-lit
 * =========================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ===========================================
 * DESIGN TOKENS - HOT PINK SUCCUBUS AESTHETIC
 * =========================================== */
:root {
    /* Core palette - deep void with pink undertones */
    --bg-deep: #030002;
    --bg-surface: #080306;
    --bg-elevated: #12060D;
    --bg-hover: #260F1A;

    /* PRIMARY: HOT PINK (dominant) */
    --pink-hot: #FF0055;
    --pink-accent: #FF1493;
    --pink-soft: #FF6EB4;
    --pink-neon: #FF007F;
    --pink-glow: rgba(255, 0, 85, 0.7);
    --pink-deep: #990033;

    /* SECONDARY: Purple (supporting) */
    --purple-hot: #9D00FF;
    --purple-soft: #C860FF;
    --purple-glow: rgba(157, 0, 255, 0.4);
    --purple-deep: #3D0066;

    /* Accent gold */
    --gold: #FFD700;
    --gold-soft: #FFC107;

    /* Succubus red-pink blend */
    --succubus-red: #CC0044;
    --blood-glow: rgba(204, 0, 68, 0.5);

    /* Text - pink-tinted whites */
    --text-primary: #FFF5F8;
    --text-secondary: #FFD0E0;
    --text-muted: #CC8099;
    --text-dim: #804060;

    /* Gradients - HOT PINK FIRST, purple secondary */
    --gradient-hero: linear-gradient(180deg, #030002 0%, #180510 40%, #200815 60%, #030002 100%);
    --gradient-card: linear-gradient(135deg, rgba(255, 0, 85, 0.25) 0%, rgba(157, 0, 255, 0.1) 100%);
    --gradient-cta: linear-gradient(135deg, #FF0055 0%, #FF1493 50%, #9D00FF 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(255, 0, 85, 0.4) 0%, rgba(255, 20, 147, 0.2) 40%, transparent 70%);
    --gradient-succubus: linear-gradient(135deg, #FF0055 0%, #FF007F 35%, #9D00FF 100%);

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 48px;
    --space-2xl: 80px;

    /* Typography */
    --font: 'Inter', -apple-system, sans-serif;
    --font-heading: 'Cinzel', 'Georgia', serif;
    --size-xs: 12px;
    --size-sm: 14px;
    --size-base: 16px;
    --size-lg: 18px;
    --size-xl: 25px;
    --size-2xl: 36px;
    --size-3xl: 50px;

    /* Layout */
    --max-width: 1000px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    /* Neon glow intensities - PINK DOMINANT */
    --glow-soft: 0 0 15px var(--pink-glow), 0 0 25px var(--pink-glow);
    --glow-medium: 0 0 20px var(--pink-glow), 0 0 40px var(--pink-glow), 0 0 60px var(--purple-glow);
    --glow-intense: 0 0 25px var(--pink-glow), 0 0 50px var(--pink-glow), 0 0 75px var(--pink-glow), 0 0 100px var(--purple-glow);
}

/* E-Succubus Animations */
@keyframes pulse-glow {

    0%,
    100% {
        filter: drop-shadow(0 0 8px var(--purple-glow));
    }

    50% {
        filter: drop-shadow(0 0 20px var(--pink-glow));
    }
}

@keyframes breathe {

    0%,
    100% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

@keyframes neon-flicker {

    0%,
    100% {
        text-shadow: 0 0 10px var(--purple-hot), 0 0 20px var(--pink-hot);
    }

    50% {
        text-shadow: 0 0 15px var(--purple-hot), 0 0 30px var(--pink-hot), 0 0 40px var(--purple-glow);
    }
}

@keyframes blood-pulse {

    0%,
    100% {
        box-shadow: 0 0 5px var(--succubus-red);
    }

    50% {
        box-shadow: 0 0 15px var(--succubus-red), 0 0 25px var(--blood-glow);
    }
}

/* ===========================================
 * CORRUPTION TEXT EFFECTS
 * =========================================== */

/* Chromatic aberration - RGB split effect */
.text-corrupt {
    position: relative;
    text-shadow: 0 0 10px var(--pink-glow), 0 0 20px rgba(255, 0, 85, 0.3);
}

.text-corrupt-intense {
    position: relative;
    text-shadow: 0 0 15px var(--pink-glow), 0 0 30px rgba(255, 0, 85, 0.4);
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        text-shadow: 0 0 15px var(--pink-glow), 0 0 30px rgba(255, 0, 85, 0.4);
    }

    50% {
        text-shadow: 0 0 25px var(--pink-glow), 0 0 50px rgba(255, 0, 85, 0.6), 0 0 75px rgba(153, 51, 255, 0.3);
    }
}

/* Organic pulsing glow effect - replaces digital glitch */
.text-glitch {
    animation: corruption-pulse 3s ease-in-out infinite;
}

@keyframes corruption-pulse {

    0%,
    100% {
        text-shadow: 0 0 10px var(--pink-glow), 0 0 20px var(--pink-glow);
        filter: brightness(1);
    }

    50% {
        text-shadow: 0 0 20px var(--pink-glow), 0 0 40px var(--pink-hot), 0 0 60px var(--purple-glow);
        filter: brightness(1.1);
    }
}

/* Subtle corruption - color bleed for body text */
.text-tainted {
    text-shadow: 0 0 8px rgba(255, 0, 85, 0.3), 0 0 16px rgba(255, 0, 85, 0.1);
}

/* Heavy corruption - pulsing glow for headlines */
.text-corrupted {
    text-shadow: 0 0 15px var(--pink-glow), 0 0 30px var(--pink-hot), 0 0 45px var(--purple-glow);
    animation: headline-breathe 2.5s ease-in-out infinite;
}

@keyframes headline-breathe {

    0%,
    100% {
        text-shadow: 0 0 15px var(--pink-glow), 0 0 30px var(--pink-hot), 0 0 45px var(--purple-glow);
        filter: brightness(1) saturate(1);
    }

    50% {
        text-shadow: 0 0 25px var(--pink-glow), 0 0 50px var(--pink-hot), 0 0 75px var(--purple-glow), 0 0 100px var(--pink-hot);
        filter: brightness(1.15) saturate(1.1);
    }
}

/* ===========================================
 * LOGO STYLES
 * =========================================== */
.nav-logo-img {
    height: 40px;
    width: auto;
}

/* Navbar layout */
.navbar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-sm) var(--space-md);
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

/* Section headings - use Cinzel for all */
.section-heading {
    font-family: var(--font-heading);
    font-size: var(--size-2xl);
    font-weight: 600;
    color: var(--text-primary);
    text-shadow: 0 0 15px rgba(255, 0, 85, 0.4);
}

.nav-link,
.nav-cta {
    font-size: var(--size-sm);
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-link {
    color: #fff;
}

.nav-link:hover {
    color: var(--pink-hot);
}

.nav-cta {
    color: var(--pink-hot);
    font-weight: 600;
}

.nav-cta:hover {
    text-shadow: 0 0 10px var(--pink-glow);
}

/* Logo wrapper for colorization */
.hero-logo-glow {
    display: inline-block;
    margin-bottom: var(--space-sm);
    filter: drop-shadow(0 0 10px var(--purple-glow)) drop-shadow(0 0 25px rgba(157, 0, 255, 0.4));
    animation: logo-pulse 3s ease-in-out infinite;
}

.hero-logo-wrapper {
    display: block;
    background: var(--gradient-succubus);
    -webkit-mask-image: url('kurainu-logo.png');
    mask-image: url('kurainu-logo.png');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    height: 80px;
    width: 260px;
}

.hero-logo-wrapper .hero-logo-img {
    visibility: hidden;
    height: 80px;
    width: auto;
}

@keyframes logo-pulse {

    0%,
    100% {
        filter: drop-shadow(0 0 10px var(--purple-glow)) drop-shadow(0 0 25px rgba(157, 0, 255, 0.4));
    }

    50% {
        filter: drop-shadow(0 0 20px var(--purple-glow)) drop-shadow(0 0 45px rgba(157, 0, 255, 0.6));
    }
}

/* ===========================================
 * RESET & BASE
 * =========================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    /* Always show scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #ff1493 rgba(0, 0, 0, 0.3);
}

/* Custom scrollbar for Webkit browsers */
html::-webkit-scrollbar {
    width: 10px;
}

html::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

html::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff1493 0%, #9333ea 100%);
    border-radius: 5px;
}

html::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff3399 0%, #a855f7 100%);
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Skip Link - Hidden until focused */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--purple-hot);
    color: var(--text-primary);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    z-index: 10000;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: var(--space-md);
}

/* Focus Visible - Better keyboard navigation */
:focus-visible {
    outline: 2px solid var(--purple-hot);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--pink-accent);
    outline-offset: 2px;
}

body {
    font-family: var(--font);
    font-size: var(--size-base);
    color: var(--text-primary);
    background: var(--bg-deep);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.headline,
.section-heading {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===========================================
 * AGE GATE
 * =========================================== */
.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(6, 2, 8, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(20px);
}

.age-gate.hidden {
    display: none;
}

.age-gate-content {
    text-align: center;
    padding: var(--space-xl);
    max-width: 400px;
}

.age-18 {
    font-size: 80px;
    font-weight: 700;
    background: var(--gradient-cta);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--space-md);
}

.age-gate-content p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.age-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

.btn-no,
.btn-yes {
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font);
    font-size: var(--size-base);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-no {
    background: var(--bg-elevated);
    color: var(--text-muted);
    border: 1px solid var(--text-dim);
}

.btn-no:hover {
    background: var(--bg-hover);
}

.btn-yes {
    background: var(--gradient-cta);
    color: var(--text-primary);
}

.btn-yes:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--purple-glow);
}

/* ===========================================
 * PAGE LAYOUT
 * =========================================== */
.page {
    min-height: 100vh;
    position: relative;
    z-index: 100;
}

.section-heading {
    font-size: var(--size-xl);
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--space-xl);
    color: var(--text-primary);
}

/* Timeline Section Heading */
.timeline-heading {
    font-style: italic;
    font-family: 'Space Grotesk', sans-serif;
}

.timeline-glitch-text {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.timeline-subtitle {
    text-align: center;
    font-size: 0.95rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

/* ===========================================
 * HERO SECTION
 * =========================================== */
.hero {
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--space-xl);
    padding-bottom: 60px;
    /* Less bottom padding */
    background: transparent;
    overflow: hidden;
}

/* Mobile hero optimizations */
@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
        padding-top: var(--space-lg);
        justify-content: flex-start;
        padding-bottom: 100px;
    }

    .hero-content {
        margin-top: var(--space-xl);
    }

    .hero-logo-img {
        height: 45px;
        margin-bottom: var(--space-sm);
    }

    .headline {
        font-size: var(--size-2xl);
    }

    .hero-subtitle {
        font-size: var(--size-sm);
    }

    .nav-logo-img {
        height: 28px;
    }

    .navbar-inner {
        gap: var(--space-lg);
    }
}

/* Hero CTA Button */
.hero-cta {
    display: inline-block;
    margin-top: var(--space-lg);
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-heading);
    font-size: var(--size-sm);
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 0, 85, 0.6);
    border-radius: 30px;
    background: rgba(255, 0, 85, 0.15);
    text-shadow: 0 0 10px rgba(255, 0, 85, 0.5);
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.2), inset 0 0 20px rgba(255, 0, 85, 0.1);
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: rgba(255, 0, 85, 0.3);
    border-color: rgba(255, 0, 85, 0.9);
    box-shadow: 0 0 30px rgba(255, 0, 85, 0.4), inset 0 0 30px rgba(255, 0, 85, 0.2);
    transform: translateY(-2px);
}

/* Dual CTA Container */
.dual-cta {
    display: flex;
    gap: var(--space-md);
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-secondary {
    padding: var(--space-md) var(--space-xl);
    background: transparent;
    border: 2px solid var(--purple-soft);
    color: var(--purple-soft);
    font-size: var(--size-lg);
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.3s ease,
        box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        color 0.2s ease;
    cursor: pointer;
}

.cta-secondary:hover {
    background: var(--purple-soft);
    color: var(--text-primary);
    box-shadow: 0 0 25px var(--purple-glow),
        0 8px 30px rgba(147, 51, 234, 0.3);
    transform: scale(1.02) translateY(-2px);
}

.cta-secondary:active {
    transform: scale(0.98);
    box-shadow: 0 0 15px var(--purple-glow);
}

/* Primary CTA - Premium Hero Button */
.cta-primary {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-lg) var(--space-2xl);
    background: linear-gradient(135deg, #FF0055 0%, #FF007F 50%, #9D00FF 100%);
    color: var(--text-primary);
    font-size: var(--size-xl);
    font-weight: 700;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    cursor: pointer;
    box-shadow:
        0 4px 20px rgba(255, 0, 85, 0.4),
        0 0 40px rgba(255, 0, 85, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-primary:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow:
        0 8px 40px rgba(255, 0, 85, 0.5),
        0 0 60px rgba(255, 0, 85, 0.3),
        0 0 100px rgba(157, 0, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-primary:hover::before {
    opacity: 1;
}

.cta-primary:active {
    transform: scale(0.98);
    box-shadow: 0 2px 15px rgba(255, 0, 85, 0.4);
}

.cta-primary .cta-text {
    font-size: var(--size-xl);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-primary .cta-sub {
    font-size: var(--size-sm);
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 0.01em;
}

/* Heart CTA Button */
.cta-heart {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-heart:hover {
    transform: scale(1.08);
}

.heart-svg {
    width: 200px;
    height: 180px;
    filter: drop-shadow(0 4px 20px rgba(255, 0, 85, 0.5));
    transition: filter 0.3s ease;
}

.cta-heart:hover .heart-svg {
    filter: drop-shadow(0 8px 40px rgba(255, 0, 85, 0.7)) drop-shadow(0 0 60px rgba(157, 0, 255, 0.4));
}

.heart-path {
    transition: all 0.3s ease;
}

.cta-heart:hover .heart-path {
    filter: brightness(1.1);
}

.arrow-line,
.arrow-head,
.arrow-tail {
    transition: all 0.3s ease;
}

.cta-heart:hover .arrow-line {
    stroke-width: 5;
}

.heart-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    pointer-events: none;
}

.heart-text .cta-text {
    font-size: var(--size-lg);
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
}

.heart-text .cta-sub {
    font-size: var(--size-xs);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.cta-arrow {
    font-size: var(--size-xl);
}

/* Scroll Hint - Fixed at bottom of viewport */
.scroll-hint {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    color: var(--text-muted);
    font-size: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Hero background video container */
.hero-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    width: 100%;
    max-width: 1280px;
    aspect-ratio: 16 / 9;
}

.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Overlay removed */

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
}

/* Avatar */
.avatar-wrapper {
    position: relative;
    margin-bottom: var(--space-lg);
}

.avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--pink-hot);
}

.status-badge {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
    background: var(--bg-deep);
    padding: var(--space-xs) var(--space-md);
    font-size: var(--size-xs);
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid var(--text-dim);
    white-space: nowrap;
}

.status-badge.live {
    border-color: var(--pink-hot);
    color: var(--pink-hot);
    animation: blood-pulse 2s ease infinite;
    background: rgba(255, 0, 102, 0.1);
}

@keyframes pulse-live {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
    }

    50% {
        box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    }
}

/* Headlines */
.headline-intro {
    font-size: var(--size-lg);
    font-weight: 400;
    color: rgba(255, 200, 210, 0.9);
    margin: 0 0 var(--space-2xs) 0;
    text-transform: lowercase;
}

.headline {
    font-size: var(--size-3xl);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 var(--space-sm) 0;
    background: var(--gradient-succubus);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: neon-flicker 4s ease-in-out infinite;
    filter: drop-shadow(0 0 10px var(--purple-glow));
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


.headline-emphasis {
    display: block;
    font-size: 1.4em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}


.subheadline {
    font-size: var(--size-lg);
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: var(--space-xl);
}

/* ===========================================
 * NAVBAR
 * =========================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 101;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    background: rgba(3, 0, 2, 0.95);
    border-bottom: 1px solid rgba(255, 0, 85, 0.2);
    backdrop-filter: blur(10px);
}

.navbar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    gap: var(--space-xl);
}

.nav-logo {
    font-size: var(--size-lg);
    font-weight: 700;
    color: var(--pink-hot);
    text-decoration: none;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-link {
    font-size: var(--size-sm);
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--pink-hot);
}

.nav-cta {
    font-size: var(--size-sm);
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-cta:hover {
    text-shadow: 0 0 10px var(--pink-glow);
}

/* ===========================================
 * PROOF FLOAT (floating stats pill)
 * =========================================== */
.proof-bar {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: rgba(8, 3, 6, 0.85);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.proof-item {
    font-size: var(--size-xs);
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.proof-divider {
    color: var(--purple-soft);
    opacity: 0.4;
    font-size: var(--size-xs);
}

@media (max-width: 640px) {
    .navbar {
        padding: var(--space-xs) var(--space-md);
    }

    .nav-logo {
        font-size: var(--size-md);
    }

    .nav-links {
        gap: var(--space-sm);
    }

    .nav-link {
        font-size: var(--size-xs);
    }

    .nav-cta {
        font-size: var(--size-xs);
        padding: 4px var(--space-sm);
    }

    .proof-bar {
        top: 40px;
        gap: var(--space-sm);
        flex-wrap: wrap;
    }

    .proof-item {
        font-size: 10px;
    }
}

/* ===========================================
 * HERO ROTATING + SUBTITLE
 * =========================================== */
.hero-rotating {
    text-align: center;
    margin-bottom: var(--space-lg);
    min-height: 120px;
    /* Prevent layout shift during rotation */
}

.hero-rotating .headline {
    white-space: nowrap;
    /* Prevent wrapping during scramble */
}

.hero-subtitle {
    font-size: var(--size-md);
    color: rgba(255, 200, 210, 0.85);
    font-style: italic;
    margin-top: var(--space-sm);
    white-space: nowrap;
    /* Prevent wrapping during scramble */
}

@media (max-width: 640px) {
    .hero-rotating {
        min-height: 100px;
    }

    .hero-rotating .headline {
        white-space: normal;
        font-size: 2rem;
    }

    .hero-subtitle {
        white-space: normal;
        font-size: var(--size-sm);
    }
}

/* ===========================================
 * HERO VALUE PROPS
 * =========================================== */
.hero-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    max-width: 800px;
    margin: 0 auto var(--space-xl) auto;
    padding: 0 var(--space-md);
}

.hero-value-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-md);
    background: rgba(15, 5, 20, 0.6);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.hero-value-block:hover {
    border-color: var(--purple-soft);
    background: rgba(15, 5, 20, 0.8);
    transform: translateY(-2px);
}

.value-icon {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.value-title {
    font-size: var(--size-md);
    font-weight: 600;
    color: var(--pink-hot);
    text-transform: lowercase;
    text-shadow: 0 0 20px rgba(255, 0, 85, 0.3);
}

.value-desc {
    font-size: var(--size-sm);
    color: var(--text-muted);
    line-height: 1.4;
}

@media (max-width: 640px) {
    .hero-values {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .hero-value-block {
        flex-direction: row;
        text-align: left;
        gap: var(--space-md);
    }

    .value-icon {
        font-size: 1.2rem;
        margin-bottom: 0;
    }

    .hero-value-block>div {
        flex: 1;
    }
}

/* ===========================================
 * UNIFIED CARD CAROUSEL
 * =========================================== */
.card-section {
    padding: var(--space-3xl) var(--space-lg);
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

.card-section .section-title {
    font-size: var(--size-xl);
    font-weight: 400;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: var(--space-sm);
    letter-spacing: 0.02em;
}

.card-carousel {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    position: relative;
}

.carousel-viewport {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-item {
    flex: 0 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 3 / 4;
    border: 1px solid rgba(147, 51, 234, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(180deg, rgba(20, 5, 15, 1) 0%, rgba(40, 10, 25, 1) 100%);
}

/* Video/image background layer */
.card-media-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.card-media-bg video,
.card-media-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

/* Overlay removed - gradient now on content only */
.card-overlay {
    display: none;
}

/* Content layer with gradient background */
.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-lg);
    background: linear-gradient(0deg,
            rgba(15, 5, 20, 0.95) 0%,
            rgba(15, 5, 20, 0.8) 40%,
            rgba(15, 5, 20, 0.4) 70%,
            transparent 100%);
}

/* Animated border glow */
.card-item::before {
    content: '';
    position: absolute;
    inset: -2px;
    z-index: -1;
    border-radius: 18px;
    background: linear-gradient(45deg, var(--pink-hot), var(--purple-soft), var(--pink-hot));
    background-size: 200% 200%;
    animation: borderGlow 4s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes borderGlow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Floating animation on each card */
.card-item {
    animation: cardFloat 6s ease-in-out infinite;
}

.card-item:nth-child(2) {
    animation-delay: -1.5s;
}

.card-item:nth-child(3) {
    animation-delay: -3s;
}

.card-item:nth-child(4) {
    animation-delay: -4.5s;
}

.card-item:nth-child(5) {
    animation-delay: -2s;
}

.card-item:nth-child(6) {
    animation-delay: -3.5s;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Hover effects */
.card-item:hover {

    border-color: rgba(255, 0, 85, 0.6);
    box-shadow:
        0 20px 50px rgba(255, 0, 85, 0.25),
        0 0 40px rgba(255, 0, 85, 0.15),
        inset 0 0 30px rgba(255, 0, 85, 0.05);
}

.card-item:hover::before {
    opacity: 0.6;
}

.card-item:hover .card-media-bg video,
.card-item:hover .card-media-bg img {
    opacity: 0.6;
    transform: scale(1.1);
    filter: saturate(1.5) brightness(0.9);
}

.card-item:hover .card-overlay {
    background: linear-gradient(180deg,
            rgba(255, 0, 85, 0.1) 0%,
            rgba(15, 5, 20, 0.5) 50%,
            rgba(15, 5, 20, 0.9) 100%);
}

.card-title {
    font-size: var(--size-lg);
    font-weight: 700;
    color: var(--pink-hot);
    text-transform: lowercase;
    text-shadow:
        0 0 30px rgba(255, 0, 85, 0.5),
        0 2px 10px rgba(0, 0, 0, 0.8);
    margin-bottom: var(--space-xs);
    transition: all 0.3s ease;
}

.card-item:hover .card-title {
    text-shadow:
        0 0 40px rgba(255, 0, 85, 0.8),
        0 0 80px rgba(255, 0, 85, 0.4),
        0 2px 10px rgba(0, 0, 0, 0.8);
    transform: scale(1.05);
}

.card-desc {
    font-size: var(--size-sm);
    color: var(--text-secondary);
    line-height: 1.5;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    width: 100%;
}

/* Contrast cards (INLOG style) */
.card-contrast .card-struck {
    font-size: var(--size-sm);
    color: var(--text-muted);
    text-decoration: line-through;
    text-decoration-color: var(--purple-soft);
    text-decoration-thickness: 2px;
    opacity: 0.5;
    margin-bottom: var(--space-sm);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.card-contrast:hover .card-struck {
    opacity: 0.7;
    text-decoration-color: rgba(255, 0, 85, 0.6);
}

.card-contrast .card-real {
    font-size: var(--size-lg);
    font-weight: 700;
    color: var(--text-primary);
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.3),
        0 2px 10px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.card-contrast:hover .card-real {
    text-shadow:
        0 0 50px rgba(255, 0, 85, 0.8),
        0 0 100px rgba(255, 0, 85, 0.4),
        0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Carousel arrows */
.carousel-arrow {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(15, 5, 20, 0.8);
    border: 1px solid rgba(147, 51, 234, 0.3);
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    background: rgba(20, 5, 15, 1);
    border-color: var(--pink-hot);
    color: var(--pink-hot);
}

.carousel-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Carousel dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    margin-top: var(--space-md);
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(147, 51, 234, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.carousel-dot.active,
.carousel-dot:hover {
    background: var(--pink-hot);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .card-item {
        flex: 0 0 calc(100% - var(--space-md));
    }

    .carousel-arrow {
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .card-section {
        padding: var(--space-xl) var(--space-sm);
    }

    .carousel-arrow {
        display: none;
    }

    .carousel-viewport {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .card-item {
        scroll-snap-align: center;
    }
}

/* Adjust hero for stats bar */
.hero {
    padding-top: calc(60px + var(--space-2xl));
    /* Account for fixed stats bar */
}

/* Hero Branding - Single Line Contrast */
.hero-branding {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.branding-block {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) 0;
}

.branding-block .struck {
    text-align: right;
    text-decoration: line-through;
    text-decoration-color: var(--purple-soft);
    text-decoration-thickness: 2px;
    color: var(--text-muted);
    font-style: italic;
    opacity: 0.7;
}

.branding-arrow {
    color: var(--purple-soft);
    font-weight: 400;
    opacity: 0.6;
    text-align: center;
}

.branding-block .branding-positive {
    text-align: left;
    color: var(--pink-hot);
    font-weight: 500;
    text-shadow: 0 0 10px rgba(255, 0, 102, 0.3);
}

@keyframes subtle-pulse {

    0%,
    100% {
        text-shadow: 0 0 15px rgba(255, 0, 102, 0.3);
    }

    50% {
        text-shadow: 0 0 25px rgba(255, 0, 102, 0.5);
    }
}

.branding-label {
    font-size: var(--size-sm);
    color: var(--text-muted);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
    text-transform: lowercase;
    letter-spacing: 0.1em;
}

/* CTA buttons with proper hierarchy */
.cta-primary,
.cta-secondary {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Primary = main conversion (subscribe) - bold, filled */
.cta-primary {
    background: linear-gradient(135deg, var(--pink-hot) 0%, #cc0066 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(255, 0, 102, 0.4);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 0, 102, 0.6);
}

.cta-primary .cta-text {
    font-size: 1.1rem;
}

/* Secondary = supporting action (timeline) - subtle, outlined */
.cta-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(147, 51, 234, 0.4);
}

.cta-secondary:hover {
    background: rgba(147, 51, 234, 0.1);
    border-color: var(--purple-soft);
    color: var(--text-primary);
}

.cta-secondary .cta-text {
    font-size: 0.95rem;
}

.cta-sub {
    font-size: 0.7rem;
    opacity: 0.6;
    font-weight: 400;
    margin-top: 0.15rem;
}


/* Stream Countdown - no decorative lines */
.stream-countdown-wrapper {
    border: none !important;
    outline: none !important;
}

.stream-countdown-wrapper::before,
.stream-countdown-wrapper::after {
    display: none !important;
}

/* Live Stats */
.live-stats {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    font-size: var(--size-sm);
    color: var(--text-secondary);
}

.stat-item strong {
    color: var(--text-primary);
}

.stat-divider {
    color: var(--text-dim);
}

.stat-highlight {
    color: var(--gold-soft);
    font-size: var(--size-xs);
    font-weight: 500;
}

/* Hero CTA Blocks */
.hero-cta-block {
    margin-bottom: var(--space-xl);
    text-align: center;
}

.cta-desc {
    font-size: var(--size-sm);
    color: var(--text-muted);
    margin-top: 23px;
    font-style: italic;
    white-space: nowrap;
}

/* Hero Records */
.hero-records {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    padding: var(--space-lg);
    background: var(--gradient-card);
    border: 1px solid var(--purple-deep);
    border-radius: var(--radius-md);
    margin-top: var(--space-xl);
    flex-wrap: nowrap;
}

.record-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.record-value {
    font-size: var(--size-2xl);
    font-weight: 700;
    background: var(--gradient-succubus);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.record-label {
    font-size: var(--size-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.record-divider {
    color: var(--purple-deep);
    font-size: var(--size-lg);
}

/* Glitch Word Effect */
.glitch-word {
    color: var(--pink-hot);
    font-weight: 600;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px var(--pink-glow);
}

.glitch-word.glitching {
    animation: glitch-heavy 0.15s ease;
}

@keyframes glitch-heavy {
    0% {
        opacity: 1;
        transform: translateX(0) skewX(0deg);
        text-shadow: 0 0 10px var(--pink-glow);
    }

    20% {
        opacity: 0.8;
        transform: translateX(-3px) skewX(-5deg);
        text-shadow: -2px 0 #ff0055, 2px 0 #00ffff;
        color: #ff0055;
    }

    40% {
        opacity: 0.9;
        transform: translateX(3px) skewX(3deg);
        text-shadow: 2px 0 #ff0055, -2px 0 #00ffff;
    }

    60% {
        opacity: 0.7;
        transform: translateX(-2px) skewX(-2deg);
        text-shadow: -1px 0 #ff0055, 1px 0 #00ffff;
        color: #00ffff;
    }

    80% {
        opacity: 0.9;
        transform: translateX(1px) skewX(1deg);
        text-shadow: 1px 0 #ff0055, -1px 0 #00ffff;
    }

    100% {
        opacity: 1;
        transform: translateX(0) skewX(0deg);
        text-shadow: 0 0 10px var(--pink-glow);
        color: var(--pink-hot);
    }
}

/* How It Works - Quick Explainer */
.how-it-works {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
    padding: var(--space-md) var(--space-lg);
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid var(--purple-deep);
    border-radius: var(--radius-md);
}

.how-step {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.how-num {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-cta);
    border-radius: 50%;
    font-size: var(--size-xs);
    font-weight: 700;
}

.how-text {
    font-size: var(--size-sm);
    color: var(--text-secondary);
    font-weight: 500;
}

.how-arrow {
    color: var(--text-dim);
    font-size: var(--size-lg);
}

@media (max-width: 768px) {
    .how-it-works {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .how-arrow {
        transform: rotate(90deg);
    }
}

/* Primary CTA */
.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: var(--gradient-cta);
    color: var(--text-primary);
    font-size: var(--size-lg);
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px var(--pink-glow);
    animation: cta-pulse 2s ease-in-out infinite;
}

@keyframes cta-pulse {

    0%,
    100% {
        box-shadow: 0 4px 30px var(--pink-glow);
    }

    50% {
        box-shadow: 0 8px 50px var(--purple-glow), 0 0 40px var(--pink-glow);
    }
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 50px var(--pink-glow);
    animation: none;
}

.cta-primary.large {
    font-size: var(--size-xl);
    padding: var(--space-lg) var(--space-2xl);
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.cta-primary:hover .cta-arrow {
    transform: translateX(4px);
}

.cta-subtext {
    font-size: var(--size-sm);
    color: var(--text-muted);
    margin-top: var(--space-md);
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-dim);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ===========================================
 * PROOF OF LIFE SECTION
 * =========================================== */
.proof-of-life {
    padding: var(--space-xl) var(--space-lg);
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.08) 0%, rgba(88, 28, 135, 0.05) 100%);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: var(--radius-md);
}

.pol-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.pol-icon {
    font-size: 20px;
}

.pol-title {
    font-size: var(--size-sm);
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--purple-soft);
}

.pol-twitter-link {
    margin-left: auto;
    font-size: var(--size-sm);
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.pol-twitter-link:hover {
    color: var(--purple-soft);
}

/* Tweet feed */
.pol-tweets {
    margin-bottom: var(--space-lg);
}

.pol-loading {
    text-align: center;
    padding: var(--space-lg);
    color: var(--text-muted);
    font-style: italic;
}

.pol-tweet {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
}

.pol-tweet-time {
    font-size: var(--size-xs);
    color: var(--text-dim);
    white-space: nowrap;
    min-width: 50px;
}

.pol-tweet-text {
    flex: 1;
    font-size: var(--size-sm);
    color: var(--text-secondary);
}

.pol-tweet-link {
    font-size: var(--size-xs);
    color: var(--purple-soft);
    white-space: nowrap;
}

.pol-tweet-link:hover {
    color: var(--text-primary);
}

/* Verify links */
.pol-verify {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.pol-verify-link {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--size-sm);
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.pol-verify-link:hover {
    color: var(--purple-soft);
}

.pol-verify-icon {
    color: var(--purple-soft);
}

/* Glitch rotation transition */
#heroGlitch {
    transition: opacity 0.2s ease;
    color: var(--pink-soft);
}

/* ===========================================
 * DAILY TEASER (Rotating Content)
 * =========================================== */
.daily-teaser {
    padding: var(--space-2xl) var(--space-lg);
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.teaser-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.teaser-label {
    font-size: var(--size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--purple-soft);
}

.teaser-date {
    font-size: var(--size-sm);
    color: var(--text-muted);
}

.teaser-content {
    margin-bottom: var(--space-lg);
}

.teaser-image-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16/9;
    max-width: 600px;
    margin: 0 auto var(--space-md);
}

.teaser-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px) brightness(0.7);
    transition: filter 0.3s ease;
}

.teaser-image-wrapper:hover .teaser-image {
    filter: blur(12px) brightness(0.5);
}

.teaser-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 2, 8, 0.3);
}

.teaser-unlock {
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-deep);
    border: 1px solid var(--pink-hot);
    font-size: var(--size-sm);
    font-weight: 500;
    color: var(--pink-soft);
}

.teaser-placeholder {
    aspect-ratio: 16/9;
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-elevated);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    border-radius: var(--radius-md);
}

.teaser-placeholder span {
    font-size: 48px;
}

.teaser-placeholder p {
    color: var(--text-muted);
    font-style: italic;
}

.teaser-caption {
    color: var(--text-secondary);
    font-size: var(--size-sm);
}

.teaser-cta {
    display: inline-block;
    color: var(--purple-soft);
    font-weight: 500;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--purple-hot);
    transition: all 0.3s ease;
}

.teaser-cta:hover {
    background: var(--purple-hot);
    color: var(--text-primary);
}

/* ===========================================
 * PHOTO GALLERY
 * =========================================== */
.gallery-section {
    padding: 60px var(--space-lg);
    /* Varied rhythm */
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-item {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(-25deg);
    transition: left 0.5s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    left: 130%;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 40px rgba(147, 51, 234, 0.3);
}

.gallery-item.featured {
    grid-row: span 2;
    grid-column: span 2;
    /* Asymmetric grid - breaks template look */
    border-radius: 0;
    /* Sharp edges for featured */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.gallery-item:hover img {
    filter: brightness(1);
}

.gallery-overlay {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
}

.gallery-tag {
    background: rgba(147, 51, 234, 0.8);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: var(--size-xs);
    font-weight: 600;
    color: white;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-card);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bg-hover);
}

.gallery-placeholder span {
    font-size: 48px;
    opacity: 0.6;
}

.gallery-item.locked {
    position: relative;
}

.gallery-lock {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.lock-icon {
    font-size: 32px;
}

.lock-text {
    color: var(--purple-soft);
    font-weight: 600;
    font-size: var(--size-sm);
}

.gallery-cta {
    display: inline-block;
    color: var(--purple-soft);
    font-weight: 500;
    font-size: var(--size-lg);
    padding: var(--space-md) var(--space-xl);
    border: 1px solid var(--purple-hot);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.gallery-cta:hover {
    background: var(--purple-hot);
    color: var(--text-primary);
    box-shadow: 0 0 30px var(--purple-glow);
}

/* ===========================================
 * FREE CONTENT SECTION
 * =========================================== */
.free-content-section {
    padding: 40px var(--space-lg) 60px;
    /* Compact top, more bottom */
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(180deg, transparent, rgba(147, 51, 234, 0.05) 30%, rgba(147, 51, 234, 0.1) 50%, rgba(147, 51, 234, 0.05) 70%, transparent);
}

.section-subheading {
    color: var(--text-muted);
    margin-top: -35px;
    margin-bottom: var(--space-xl);
    font-size: var(--size-sm);
}

/* Edge Counter */
.edge-counter-wrapper {
    margin-bottom: var(--space-xl);
}

.edge-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    padding: var(--space-lg) var(--space-xl);
    background: var(--gradient-card);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-sm);
}

.counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.counter-value {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pink-hot), var(--purple-soft));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: counter-glow 3s ease-in-out infinite;
}

@keyframes counter-glow {

    0%,
    100% {
        filter: drop-shadow(0 0 5px var(--pink-glow));
    }

    50% {
        filter: drop-shadow(0 0 15px var(--purple-glow));
    }
}

.counter-label {
    font-size: var(--size-sm);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.counter-divider {
    font-size: 32px;
    color: var(--text-dim);
}

.counter-note {
    font-size: var(--size-xs);
    color: var(--text-dim);
    font-style: italic;
}

/* Free Video Grid */
.free-video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

@media (max-width: 600px) {
    .free-video-grid {
        grid-template-columns: 1fr;
    }
}

.free-video-card {
    background: var(--bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.free-video-card:hover {
    border-color: var(--pink-hot);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--pink-glow);
}

.free-video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--purple-deep), var(--bg-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.free-badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: var(--size-xs);
    font-weight: 700;
    color: white;
    text-transform: uppercase;
}

.free-badge.member {
    background: linear-gradient(135deg, #2196F3, #1565C0);
}

.video-duration {
    position: absolute;
    bottom: var(--space-sm);
    right: var(--space-sm);
    background: rgba(0, 0, 0, 0.8);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: var(--size-xs);
    font-weight: 600;
}

.free-video-info {
    padding: var(--space-md);
    text-align: left;
}

.free-video-info h3 {
    font-size: var(--size-base);
    font-weight: 600;
    margin-bottom: 4px;
}

.free-video-info p {
    font-size: var(--size-sm);
    color: var(--text-muted);
}

.member-note {
    display: block;
    font-size: var(--size-xs);
    color: var(--text-dim);
    margin-top: var(--space-xs);
    font-style: italic;
}

/* Ownership Banner - "Collect & Keep Forever" */
.ownership-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    margin-bottom: var(--space-xl);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(147, 51, 234, 0.1));
    border: 1px solid var(--gold);
    border-radius: var(--radius-md);
}

.ownership-icon {
    font-size: 24px;
}

.ownership-text {
    font-size: var(--size-sm);
    color: var(--gold-soft);
    font-weight: 500;
}

/* Keep Forever Note */
.keep-forever-note {
    display: block;
    font-size: var(--size-xs);
    color: #4CAF50;
    margin-top: var(--space-sm);
    font-weight: 600;
}

/* Claimable Card Highlight */
.free-video-card.claimable {
    border: 2px solid var(--gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.free-video-card.claimable:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

/* ===========================================
 * GAMIFICATION SECTION
 * =========================================== */
.gamification-section {
    padding: 60px var(--space-lg) 80px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.gamification-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

@media (max-width: 600px) {
    .gamification-grid {
        grid-template-columns: 1fr;
    }
}

.gamification-card {
    padding: var(--space-xl);
    background: var(--gradient-card);
    border: 1px solid var(--text-dim);
    text-align: left;
    transition: all 0.3s ease;
}

.gamification-card:hover {
    border-color: var(--purple-soft);
    transform: translateY(-4px);
}

.gamification-card.featured {
    border-color: var(--pink-hot);
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.1), rgba(147, 51, 234, 0.1));
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.15);
}

.gamification-icon {
    font-size: 32px;
    display: block;
    margin-bottom: var(--space-md);
}

.gamification-card h3 {
    font-size: var(--size-lg);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.gamification-card p {
    font-size: var(--size-sm);
    color: var(--text-secondary);
    line-height: 1.5;
}

/* XP Preview Bar */
.xp-preview {
    margin-top: var(--space-md);
}

.xp-bar {
    height: 8px;
    background: var(--bg-deep);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: var(--space-xs);
}

.xp-fill {
    height: 100%;
    width: 65%;
    background: linear-gradient(90deg, var(--pink-hot), var(--purple-soft));
    border-radius: 999px;
    animation: xp-pulse 2s ease infinite;
}

@keyframes xp-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.xp-text {
    font-size: var(--size-xs);
    color: var(--pink-soft);
    font-weight: 600;
}

.free-content-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: linear-gradient(135deg, var(--pink-hot), var(--purple-hot));
    color: white;
    font-size: var(--size-lg);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    animation: cta-pulse 2s ease-in-out infinite;
}

.free-content-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px var(--pink-glow);
    animation: none;
}

/* ===========================================
 * SUBSCRIPTION TIERS
 * =========================================== */
.tiers-section {
    padding: 30px var(--space-lg) 80px;
    /* Tight top, anchor bottom */
    max-width: 1100px;
    margin: 0 auto;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 900px) {
    .tiers-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

.tier-card {
    position: relative;
    padding: var(--space-xl);
    background: var(--gradient-card);
    border: 1px solid var(--text-dim);
    transition: all 0.3s ease;
}

.tier-card:hover {
    border-color: var(--purple-soft);
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(147, 51, 234, 0.25);
}

/* Popular tier highlight */
.tier-card.popular {
    border-color: var(--pink-hot);
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.15) 0%, rgba(107, 33, 168, 0.1) 100%);
    transform: scale(1.05);
    z-index: 1;
}

.tier-card.popular:hover {
    transform: scale(1.05) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: var(--gradient-cta);
    padding: var(--space-xs) var(--space-md);
    font-size: var(--size-xs);
    font-weight: 600;
    white-space: nowrap;
}

.tier-header {
    margin-bottom: var(--space-lg);
}

.tier-name {
    display: block;
    font-size: var(--size-lg);
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
}

.tier-price {
    display: flex;
    align-items: baseline;
    gap: var(--space-xs);
}

.price-amount {
    font-size: var(--size-2xl);
    font-weight: 700;
    color: var(--text-primary);
}

.price-period {
    font-size: var(--size-sm);
    color: var(--text-muted);
}

.tier-features {
    margin-bottom: var(--space-lg);
}

.tier-features li {
    padding: var(--space-sm) 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tier-features li:last-child {
    border-bottom: none;
}

.tier-features li.highlight {
    color: var(--pink-soft);
    font-weight: 500;
}

.tier-cta {
    display: block;
    width: 100%;
    padding: var(--space-md);
    text-align: center;
    font-weight: 600;
    border: 1px solid var(--text-dim);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.tier-cta:hover {
    background: var(--bg-hover);
    border-color: var(--purple-soft);
}

.tier-cta.primary {
    background: var(--gradient-cta);
    border: none;
}

.tier-cta.primary:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px var(--pink-glow);
}

.tier-note {
    text-align: center;
    font-size: var(--size-xs);
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

.tier-note.scarcity {
    color: var(--gold);
    font-weight: 500;
}

/* ===========================================
 * PROOF SECTION
 * =========================================== */
.proof-section {
    padding: var(--space-xl) var(--space-lg);
    background: var(--bg-surface);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    max-width: var(--max-width);
    margin: 0 auto;
}

@media (max-width: 768px) {
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.proof-item {
    text-align: center;
    padding: var(--space-lg);
}

.proof-icon {
    display: block;
    font-size: 32px;
    margin-bottom: var(--space-sm);
}

.proof-value {
    display: block;
    font-size: var(--size-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.proof-label {
    font-size: var(--size-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===========================================
 * VIDEOS SECTION
 * =========================================== */
.videos-section {
    padding: 40px var(--space-lg);
    /* Tight */
    max-width: var(--max-width);
    margin: 0 auto;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

@media (max-width: 600px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

.video-card {
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 0, 128, 0.2);
}

.video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--bg-elevated);
    margin-bottom: var(--space-sm);
    overflow: hidden;
}

.thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent, var(--purple-deep)) 0%, var(--bg-deep) 100%);
}

.thumb-placeholder.locked {
    flex-direction: column;
    gap: var(--space-xs);
    font-size: var(--size-sm);
    color: var(--text-muted);
}

.play-icon {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease;
}

.video-card:hover .play-icon {
    transform: scale(1.2);
}

.lock-icon {
    font-size: 32px;
}

.video-duration {
    position: absolute;
    bottom: var(--space-sm);
    right: var(--space-sm);
    padding: 2px var(--space-sm);
    background: rgba(0, 0, 0, 0.8);
    font-size: var(--size-xs);
    font-weight: 500;
}

.video-title {
    display: block;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.video-meta {
    font-size: var(--size-xs);
    color: var(--text-muted);
}

.see-all-link {
    display: block;
    text-align: center;
    color: var(--pink-soft);
    font-weight: 500;
}

.see-all-link:hover {
    color: var(--pink-hot);
}

/* ===========================================
 * TESTIMONIALS
 * =========================================== */
.testimonials-section {
    padding: var(--space-xl) var(--space-lg);
    max-width: var(--max-width);
    margin: 0 auto;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 768px) {
    .testimonial-cards {
        grid-template-columns: 1fr;
    }
}

.testimonial {
    position: relative;
    padding: var(--space-lg);
    padding-left: calc(var(--space-lg) + 24px);
    background: var(--bg-surface);
    border-left: 3px solid var(--pink-hot);
    transition: all 0.3s ease;
}

.testimonial::before {
    content: '"';
    position: absolute;
    left: var(--space-md);
    top: var(--space-md);
    font-size: 48px;
    font-family: Georgia, serif;
    color: var(--pink-hot);
    line-height: 1;
    opacity: 0.3;
}

.testimonial:hover {
    background: var(--bg-elevated);
    box-shadow: -4px 0 20px rgba(255, 0, 128, 0.15);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.testimonial-author {
    font-size: var(--size-sm);
    color: var(--text-muted);
}

/* ===========================================
 * FINAL CTA
 * =========================================== */
.final-cta {
    padding: 120px var(--space-lg);
    /* Maximum breathing room */
    text-align: center;
    background: var(--gradient-glow);
}

.final-cta h2 {
    font-size: var(--size-2xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.final-cta p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

/* ===========================================
 * FOOTER
 * =========================================== */
.footer {
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    border-top: 1px solid var(--text-dim);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.social-link {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--pink-soft);
}

.legal {
    font-size: var(--size-xs);
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.copyright {
    font-size: var(--size-xs);
    color: var(--text-dim);
}

/* ===========================================
 * STREAM COUNTDOWN
 * =========================================== */
.stream-countdown-wrapper {
    position: relative;
    margin-top: var(--space-lg);
    text-align: center;
    z-index: 1;
}

.stream-countdown-wrapper .countdown-label {
    display: block;
    font-size: var(--size-xs);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

/* ===========================================
 * FROM THE ARCHIVES
 * =========================================== */
.archives-section {
    padding: var(--space-2xl) var(--space-lg);
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.archives-header {
    margin-bottom: var(--space-xl);
}

.archives-icon {
    font-size: 48px;
    display: block;
    margin-bottom: var(--space-sm);
    filter: sepia(1) hue-rotate(280deg);
}

.archives-header .section-heading {
    margin-bottom: var(--space-sm);
}

.archives-subtitle {
    color: var(--text-muted);
    font-style: italic;
}

.archives-showcase {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    text-align: left;
}

@media (max-width: 768px) {
    .archives-showcase {
        grid-template-columns: 1fr;
    }
}

.archive-card.featured {
    background: var(--gradient-card);
    border: 1px solid var(--text-dim);
    overflow: hidden;
    transition: all 0.3s ease;
}

.archive-card.featured:hover {
    border-color: var(--purple-soft);
    transform: translateY(-4px);
}

.archive-image-wrapper {
    position: relative;
    aspect-ratio: 16/9;
}

.archive-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--purple-deep) 0%, var(--bg-deep) 100%);
}

.archive-placeholder span {
    font-size: 48px;
    opacity: 0.6;
}

.archive-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: var(--space-xs) var(--space-sm);
    background: var(--gold);
    color: var(--bg-deep);
    font-size: var(--size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.archive-info {
    padding: var(--space-lg);
}

.archive-title {
    display: block;
    font-size: var(--size-lg);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.archive-meta {
    display: block;
    font-size: var(--size-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.archive-stats {
    font-size: var(--size-sm);
    color: var(--pink-soft);
}

/* Archive list (mini items) */
.archive-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.archive-mini {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-surface);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.archive-mini:hover {
    border-color: var(--purple-soft);
    background: var(--bg-elevated);
}

.archive-mini-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    flex-shrink: 0;
}

.archive-mini-info {
    flex: 1;
}

.archive-mini-title {
    display: block;
    font-weight: 500;
    margin-bottom: 2px;
}

.archive-mini-date {
    font-size: var(--size-xs);
    color: var(--text-muted);
}

.archives-cta {
    display: inline-block;
    color: var(--pink-soft);
    font-weight: 500;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--pink-hot);
    transition: all 0.3s ease;
}

.archives-cta:hover {
    background: var(--pink-hot);
    color: var(--text-primary);
}

/* ===========================================
 * MOBILE STICKY CTA BAR
 * Thumb-zone optimized conversion
 * =========================================== */
.sticky-cta-bar {
    display: none;
}

@media (max-width: 768px) {
    .sticky-cta-bar {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: var(--space-md);
        background: rgba(5, 2, 8, 0.95);
        backdrop-filter: blur(10px);
        border-top: 1px solid var(--purple-deep);
        z-index: 100;
    }

    .sticky-cta-bar .cta-primary {
        width: 100%;
        justify-content: center;
    }

    /* Add padding to body so content isn't hidden behind sticky bar */
    body {
        padding-bottom: 80px;
    }
}

/* ===========================================
 * CTA HIERARCHY - Text Links (Tertiary)
 * De-emphasized actions
 * =========================================== */
.cta-text-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--pink-soft);
    font-weight: 500;
    font-size: var(--size-base);
    padding: var(--space-sm) 0;
    border: none;
    background: none;
    transition: color 0.2s ease;
}

.cta-text-link:hover {
    color: var(--text-primary);
}

.cta-text-link::after {
    content: '→';
    transition: transform 0.2s ease;
}

.cta-text-link:hover::after {
    transform: translateX(4px);
}

/* Mobile-only utility */
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
}

/* ===========================================
 * INFO MODALS
 * =========================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 2, 8, 0.9);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.info-modal {
    position: relative;
    max-width: 420px;
    width: 90%;
    background: var(--bg-surface);
    border: 1px solid var(--purple-soft);
    padding: var(--space-xl);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal-overlay.active .info-modal.active {
    transform: translateY(0);
    opacity: 1;
}

.info-modal:not(.active) {
    display: none;
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 32px;
    height: 32px;
    background: transparent;
    border: 1px solid var(--text-dim);
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: var(--purple-hot);
    border-color: var(--purple-hot);
    color: white;
}

.modal-icon {
    font-size: 48px;
    display: block;
    margin-bottom: var(--space-md);
}

.info-modal h3 {
    font-size: var(--size-xl);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.modal-content p {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
}

.modal-content ul {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-lg);
}

.modal-content li {
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
    list-style: none;
    position: relative;
}

.modal-content li::before {
    content: '→';
    position: absolute;
    left: -20px;
    color: var(--pink-soft);
}

.modal-content .leaderboard li::before,
.modal-content .achievement-list li::before {
    content: none;
}

.modal-example {
    font-style: italic;
    padding: var(--space-md);
    background: var(--bg-elevated);
    border-left: 3px solid var(--pink-hot);
}

.modal-note {
    font-size: var(--size-sm);
    color: var(--text-muted);
    font-style: italic;
}

/* Info Button on Cards */
.info-btn {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 24px;
    height: 24px;
    background: transparent;
    border: 1px solid var(--text-dim);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.info-btn:hover {
    background: var(--purple-soft);
    border-color: var(--purple-soft);
    color: white;
}

.gamification-card {
    position: relative;
}

/* ===========================================
 * COMPACT GAMIFICATION GRID
 * =========================================== */
.gamification-section {
    text-align: center;
}

.creator-record {
    display: block;
    margin-top: var(--space-sm);
    color: var(--pink-soft);
    font-weight: 600;
    font-style: italic;
}

.gamification-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.gamification-card {
    background: var(--bg-surface);
    border: 1px solid var(--bg-elevated);
    padding: var(--space-md);
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gamification-card:hover {
    border-color: var(--purple-soft);
    transform: translateY(-2px);
}

.gamification-card.featured {
    border-color: var(--pink-soft);
    background: linear-gradient(135deg, var(--bg-surface), rgba(236, 72, 153, 0.05));
}

.gamification-icon {
    font-size: 28px;
    display: block;
    margin-bottom: var(--space-xs);
}

.gamification-card h3 {
    font-size: var(--size-sm);
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.gamification-card p {
    font-size: var(--size-xs);
    color: var(--text-muted);
    line-height: 1.3;
}

.gamification-card .card-cta {
    font-size: var(--size-xs);
    margin-top: var(--space-sm);
}

.gamification-card .info-btn {
    top: var(--space-xs);
    right: var(--space-xs);
    width: 18px;
    height: 18px;
    font-size: 10px;
}

@media (max-width: 768px) {
    .gamification-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gamification-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xs);
    }

    .gamification-icon {
        font-size: 24px;
    }

    .gamification-card {
        padding: var(--space-sm);
    }
}

/* Edge Matching - Edges Owed Preview */
.edges-owed-preview {
    margin-top: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.owed-label {
    font-size: var(--size-sm);
    color: var(--text-muted);
}

.owed-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 var(--space-sm);
    background: linear-gradient(135deg, #FF4444, #CC0000);
    color: white;
    font-size: var(--size-sm);
    font-weight: 700;
    border-radius: 999px;
    animation: pulse-owed 2s ease infinite;
}

@keyframes pulse-owed {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.4);
    }

    50% {
        box-shadow: 0 0 12px 4px rgba(255, 68, 68, 0.3);
    }
}

/* Modal Profile Preview */
.modal-profile-preview {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--bg-elevated);
    border: 1px solid var(--text-dim);
    margin-bottom: var(--space-md);
}

.profile-stat {
    font-size: var(--size-sm);
    color: var(--text-secondary);
}

.owed-red {
    color: #FF4444;
}

/* Opt-in Note */
.opt-in-note {
    font-size: var(--size-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    font-style: italic;
}

/* Card CTA */
.card-cta {
    display: inline-block;
    margin-top: var(--space-md);
    font-size: var(--size-sm);
    color: var(--pink-soft);
    font-weight: 600;
    transition: color 0.2s ease;
}

.card-cta:hover {
    color: var(--text-primary);
}

.card-detail {
    display: block;
    margin-top: var(--space-xs);
    font-size: var(--size-xs);
    color: var(--pink-soft);
    font-style: italic;
}

/* ===========================================
 * EXPLORE / RABBIT HOLE SECTION
 * =========================================== */
.explore-section {
    text-align: center;
    padding: var(--space-2xl) 0;
}

/* Category Cards - Main Click Targets */
.category-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin: var(--space-xl) auto;
    max-width: 700px;
}

.category-card {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(147, 51, 234, 0.3);
}

.category-photo {
    position: absolute;
    inset: 0;
    filter: blur(4px) brightness(0.7);
    transition: filter 0.3s ease;
}

.category-card:hover .category-photo {
    filter: blur(2px) brightness(0.8);
}

/* Category-specific gradients (replace with actual images via data-category) */
.category-photo[data-category="cosplay"] {
    background: linear-gradient(135deg, #9333EA 0%, #EC4899 100%);
}

.category-photo[data-category="goth"] {
    background: linear-gradient(135deg, #1F2937 0%, #6B21A8 100%);
}

.category-photo[data-category="exhibitionist"] {
    background: linear-gradient(135deg, #DC2626 0%, #F97316 100%);
}

.category-photo[data-category="latex"] {
    background: linear-gradient(135deg, #111827 0%, #9333EA 100%);
}

.category-photo[data-category="cute"] {
    background: linear-gradient(135deg, #F472B6 0%, #FBCFE8 100%);
}

.category-photo[data-category="more"] {
    background: linear-gradient(135deg, #6B21A8 0%, #EC4899 50%, #9333EA 100%);
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    text-align: left;
}

.category-name {
    display: block;
    font-size: var(--size-base);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.category-count {
    font-size: var(--size-xs);
    color: var(--text-muted);
}

.category-lock {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    font-size: 1rem;
    opacity: 0.8;
}

.category-card.more {
    border: 1px dashed var(--purple-soft);
}

/* Photo Strip - Horizontal Preview */
.photo-strip {
    margin: var(--space-xl) 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.photo-strip::-webkit-scrollbar {
    display: none;
}

.photo-strip-inner {
    display: flex;
    gap: var(--space-xs);
    width: max-content;
    padding: 0 var(--space-md);
}

.strip-photo {
    width: 100px;
    height: 140px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.3), rgba(236, 72, 153, 0.3));
    position: relative;
    transition: transform 0.2s ease;
}

.strip-photo:hover {
    transform: scale(1.05);
}

.strip-photo.locked::after {
    content: '🔒';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    font-size: 1.25rem;
    border-radius: var(--radius-sm);
}

/* CTA Area */
.explore-cta-area {
    margin-top: var(--space-xl);
}

.explore-stats-inline {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.explore-stats-inline span {
    font-size: var(--size-sm);
    color: var(--text-muted);
}

/* Mobile */
@media (max-width: 600px) {
    .category-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .category-name {
        font-size: var(--size-sm);
    }

    .strip-photo {
        width: 80px;
        height: 112px;
    }

    .explore-stats-inline {
        gap: var(--space-md);
    }

    .explore-stats-inline span {
        font-size: var(--size-xs);
    }
}

/* ===========================================
 * CATEGORY CARD STAGGER ANIMATIONS
 * =========================================== */
.category-card {
    opacity: 0;
    transform: translateY(20px);
    animation: cardFadeIn 0.5s ease forwards;
}

.category-card:nth-child(1) {
    animation-delay: 0s;
}

.category-card:nth-child(2) {
    animation-delay: 0.1s;
}

.category-card:nth-child(3) {
    animation-delay: 0.2s;
}

.category-card:nth-child(4) {
    animation-delay: 0.3s;
}

.category-card:nth-child(5) {
    animation-delay: 0.4s;
}

.category-card:nth-child(6) {
    animation-delay: 0.5s;
}

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================================
 * FOOTER COLLAGE STRIP
 * =========================================== */
.footer-collage {
    width: 100%;
    overflow: hidden;
    margin-bottom: var(--space-xl);
}

.collage-strip {
    display: flex;
    gap: 4px;
    animation: scrollCollage 30s linear infinite;
    width: max-content;
}

.collage-photo {
    width: 80px;
    height: 100px;
    flex-shrink: 0;
    border-radius: var(--radius-xs);
    opacity: 0.6;
    transition: opacity 0.3s ease;
    background: linear-gradient(135deg,
            rgba(147, 51, 234, 0.4) 0%,
            rgba(236, 72, 153, 0.4) 50%,
            rgba(147, 51, 234, 0.3) 100%);
}

.collage-photo:nth-child(odd) {
    background: linear-gradient(135deg,
            rgba(236, 72, 153, 0.4) 0%,
            rgba(147, 51, 234, 0.4) 100%);
}

.collage-strip:hover {
    animation-play-state: paused;
}

.collage-strip:hover .collage-photo {
    opacity: 0.9;
}

@keyframes scrollCollage {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Duplicate photos for seamless loop */
.footer-collage::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60px;
    background: linear-gradient(to right, transparent, var(--bg-deep));
    pointer-events: none;
}

.footer-collage::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 60px;
    background: linear-gradient(to left, transparent, var(--bg-deep));
    pointer-events: none;
    z-index: 1;
}

.footer-collage {
    position: relative;
}

/* ===========================================
 * SOCIAL PROOF BAR
 * Credibility strip after hero
 * =========================================== */
.social-proof-bar {
    background: linear-gradient(90deg,
            rgba(147, 51, 234, 0.1) 0%,
            rgba(236, 72, 153, 0.15) 50%,
            rgba(147, 51, 234, 0.1) 100%);
    border-top: 1px solid rgba(147, 51, 234, 0.2);
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
    padding: var(--space-md) var(--space-lg);
}

.proof-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    max-width: var(--max-width);
    margin: 0 auto;
}

.proof-stat {
    font-size: var(--size-sm);
    color: var(--text-secondary);
    white-space: nowrap;
}

.proof-stat strong {
    color: var(--text-primary);
    font-weight: 600;
}

.proof-divider {
    color: var(--text-dim);
    font-size: var(--size-xs);
}

@media (max-width: 768px) {
    .social-proof-bar {
        padding: var(--space-sm) var(--space-md);
    }

    .proof-stats {
        gap: var(--space-sm);
    }

    .proof-divider {
        display: none;
    }

    .proof-stat {
        font-size: var(--size-xs);
    }
}

/* ===========================================
 * ABOUT ME SECTION
 * Brand identity & personality
 * =========================================== */
.about-section {
    padding: var(--space-2xl) var(--space-lg);
    max-width: var(--max-width);
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-xl);
    align-items: center;
    text-align: left;
}

.about-photo {
    position: relative;
}

.about-photo img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    border: 2px solid var(--purple-soft);
    box-shadow: 0 0 40px rgba(147, 51, 234, 0.2);
}

.about-photo-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--bg-elevated), var(--bg-surface));
    border-radius: var(--radius-md);
    border: 2px solid var(--purple-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}

.about-text {
    color: var(--text-secondary);
}

.about-intro {
    font-size: var(--size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    text-transform: lowercase;
}

.about-intro .highlight {
    color: var(--pink-hot);
}

.about-text p {
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.about-tags .tag {
    padding: var(--space-xs) var(--space-md);
    background: var(--bg-elevated);
    border: 1px solid var(--purple-deep);
    font-size: var(--size-sm);
    color: var(--purple-soft);
    text-transform: lowercase;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-photo {
        max-width: 200px;
        margin: 0 auto;
    }

    .about-tags {
        justify-content: center;
    }
}

/* ===========================================
 * CORRUPTION ARC TIMELINE (YEAR ACCORDION)
 * Collapsible year blocks with moment grids
 * =========================================== */
.timeline-section {
    padding: var(--space-2xl) var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

/* Corruption Arc Container - now with centered line */
.corruption-arc {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 20px;
}

/* Centered vertical line through all blocks */
.corruption-arc::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 120px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--purple-soft) 0%, var(--purple-deep) 50%, transparent 100%);
    transform: translateX(-50%);
    z-index: -1;
}

/* Year Block - grid layout: [left] [center] [right] */
.arc-year-block {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 24px 1fr;
    gap: 8px;
    width: 100%;
    min-height: 260px;
    align-items: center;
    padding: 20px 0;
}

/* Hide old line element */
.arc-year-line {
    display: none;
}

/* Centered dot on the line */
.arc-year-dot {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    align-self: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ff1493;
    border: 3px solid var(--bg-base);
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        0 0 10px #ff1493,
        0 0 20px #ff1493,
        0 0 40px #ff1493,
        0 0 60px rgba(255, 0, 102, 0.6);
    animation: dotPulse 1.5s ease-in-out infinite;
    position: relative;
}

/* Outer ring to indicate clickability */
.arc-year-dot::after {

    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid #ff6699;
    border-radius: 50%;
    opacity: 0.7;
    animation: ringPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        box-shadow:
            0 0 10px #ff1493,
            0 0 20px #ff1493,
            0 0 40px #ff1493,
            0 0 60px rgba(255, 0, 102, 0.6);
        transform: scale(1);
    }

    50% {
        box-shadow:
            0 0 15px #ff1493,
            0 0 30px #ff1493,
            0 0 60px #ff1493,
            0 0 90px rgba(255, 0, 102, 0.8);
        transform: scale(1.2);
    }
}


@keyframes ringPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.2;
    }
}

.arc-year-dot:hover {
    transform: scale(1.4);
    background: var(--pink-hot);
    box-shadow: 0 0 30px var(--pink-glow), 0 0 60px var(--pink-glow);
    animation: none;
}

.arc-year-dot:hover::after {
    animation: none;
    opacity: 0.8;
    transform: scale(1.2);
}

.arc-year-block.milestone .arc-year-dot {
    background: var(--pink-hot);
}



/* Year content wrapper - contains year number, title, teaser */
.arc-year-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 20px;
}

/* Odd blocks: content on LEFT (grid-column 1), text aligned RIGHT */
.arc-year-block:nth-child(odd) .arc-year-content {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
    padding-right: 30px;
}

.arc-year-block:nth-child(odd) .arc-year-content * {
    text-align: inherit;
}

/* Even blocks: content on RIGHT (grid-column 3), text aligned LEFT */
.arc-year-block:nth-child(even) .arc-year-content {
    grid-column: 3;
    grid-row: 1;
    text-align: left;
    padding-left: 30px;
}

.arc-year-block:nth-child(even) .arc-year-content * {
    text-align: inherit;
}

/* Year display styling */
.arc-year-display {
    font-family: var(--font-heading);
    font-size: var(--size-2xl);
    font-weight: 700;
    color: var(--pink-soft);
    opacity: 0.8;
    line-height: 1;
    display: block;
    margin: 0;
    text-shadow: 0 0 15px rgba(255, 0, 85, 0.4);
}

/* Remove any pseudo-element year */
.arc-year-block::before {
    display: none;
}


/* Chibi positioning - ABSOLUTE so transparent PNG space doesn't affect layout */
.arc-year-thumb.chibi {
    position: absolute;
    width: 350px;
    height: 450px;
    background: transparent;
    border: none;
    overflow: visible;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    animation: chibiFloat 3s ease-in-out infinite;
    pointer-events: none;
}

/* Floating animation for chibis */
@keyframes chibiFloat {

    0%,
    100% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(-55%);
    }
}


/* Odd blocks: chibi on RIGHT side of timeline */
.arc-year-block:nth-child(odd) .arc-year-thumb.chibi {
    left: calc(50% - 50px);
    right: auto;
}

/* Even blocks: chibi on LEFT side of timeline */
.arc-year-block:nth-child(even) .arc-year-thumb.chibi {
    right: calc(50% - 50px);
    left: auto;
}




.arc-year-thumb.chibi img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    border: none;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.85));
}



/* Mobile responsive for timeline */
@media (max-width: 768px) {
    .corruption-arc {
        padding: 0 5px;
    }

    .arc-year-block {
        grid-template-columns: 1fr 36px 1fr;
        gap: 5px;
        min-height: 180px;
        padding: 0 5px;
    }

    .arc-year-content {
        width: 100% !important;
        min-width: unset;
        max-width: none;
        padding: var(--space-xs);
    }

    .arc-year-thumb.chibi {
        width: 200px !important;
        height: 270px !important;
    }

    .arc-year-thumb.chibi img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain;
    }


    .arc-year-display {
        font-size: var(--size-xl);
    }

    .arc-year-teaser {
        font-size: var(--size-xs);
    }

    .arc-year-dot {
        width: 28px;
        height: 28px;
    }

    .arc-year-dot::after {
        top: -6px;
        left: -6px;
        right: -6px;
        bottom: -6px;
    }
}

@media (max-width: 480px) {
    .arc-year-thumb.chibi {
        width: 180px !important;
        height: 240px !important;
    }

    .arc-year-thumb.chibi img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain;
    }


    .arc-year-block {
        grid-template-columns: 1fr 28px 1fr;
        min-height: 160px;
        gap: 8px;
    }

    .arc-year-content {
        padding: var(--space-sm);
    }

    .arc-year-teaser {
        font-size: var(--size-sm);
        line-height: 1.4;
    }
}

/* Chibi gradient overlay - fades into background */
.arc-year-thumb.chibi::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top,
            var(--bg-base) 0%,
            transparent 100%);
    pointer-events: none;
    z-index: 1;
}



/* Hide title - only show year and teaser */
.arc-year-title {
    display: none;
}

/* Teaser styling */
.arc-year-teaser {
    font-size: var(--size-sm);
    color: var(--text-soft);
    font-style: italic;
    margin: 0;
}

/* Hide moments container (used for modal) */
.arc-year-moments {
    display: none;
}

/* Hide arrow - not needed in new design */
.arc-year-arrow {
    display: none;
}

/* Hide header button wrapper - not needed */
.arc-year-header {
    display: none;
}

/* Hide meta info */
.arc-year-meta,
.arc-year-count,
.arc-year-sep,
.arc-year-num {
    display: none;
}

/* Year info container */
.arc-year-info {
    display: contents;
}




/* Year Header (Clickable) */
.arc-year-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    width: 100%;
    padding: var(--space-md);
    background: rgb(25, 10, 35);
    border: 2px solid var(--purple-soft);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 100px;
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.3);
}

.arc-year-header:hover {
    background: var(--bg-surface);
    border-color: var(--purple-soft);
}



.arc-year-info {
    flex: 1;
    min-width: 0;
}

.arc-year-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}



.arc-year-sep {
    color: var(--purple-deep);
    font-size: var(--size-sm);
}

.arc-year-count {
    font-size: var(--size-xs);
    color: var(--text-muted);
}

.arc-year-title {
    font-size: var(--size-base);
    font-weight: 500;
    color: var(--text-secondary);
    margin: 0;
    text-transform: lowercase;
}

.arc-year-teaser {
    font-size: var(--size-sm);
    color: var(--text-muted);
    margin: 4px 0 0 0;
    font-style: italic;
}

.arc-year-arrow {
    font-size: 24px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    position: absolute;
}

/* Moments Grid (Hidden by default) */
.arc-year-moments {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.arc-year-block.open .arc-year-moments {
    max-height: 5000px;
    opacity: 1;
    padding-top: var(--space-md);
}

/* Full width when open */
.arc-year-block.open .arc-year-content {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 120px;
    /* Space for chibi */
}


/* Hide floating year when open */
.arc-year-block.open::before {
    display: none;
}

.arc-year-block.open .arc-year-header {
    text-align: left;
    flex-direction: row;
}

.arc-year-block.open .arc-year-info {
    text-align: left;
}

.arc-year-block.open .arc-year-meta {
    justify-content: flex-start;
}

.arc-year-block.open .arc-year-arrow {
    transform: rotate(180deg);
}


.arc-moments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--purple-deep);
}

@media (min-width: 768px) {
    .arc-moments-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Individual Moment */
.arc-moment {
    text-align: center;
}

.arc-moment-thumb {
    aspect-ratio: 2 / 3;
    background: var(--bg-elevated);
    border: 1px solid var(--purple-deep);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 8px;
    transition: border-color 0.2s ease;
    overflow: hidden;
}

.arc-moment:hover .arc-moment-thumb {
    border-color: var(--pink-soft);
}

.arc-moment-thumb span {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 4px;
}

.arc-moment p {
    font-size: var(--size-sm);
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

/* Media support for thumbnails - images and videos */
.arc-moment-thumb img,
.arc-moment-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(var(--radius-sm) - 1px);
}

.arc-moment-thumb video {
    pointer-events: none;
}

/* Lazy loading states - smooth fade-in + slide-up animation */
:not(.timeline-modal)>.arc-moment-thumb img,
:not(.timeline-modal)>.arc-moment-thumb video,
.card-item,
.card-carousel .carousel-slide,
.tier-card,
.gooner-header,
.section-heading,
.section-title,
.testimonial,
.proof-item,
.video-card,
.daily-teaser,
.arc-year-card,
.arc-year-title,
.arc-year-thumb:not(.chibi),
.footer-links,
.footer-socials,
.footer-brand {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* Loading state - visible but dimmed */
.arc-moment-thumb img.loading,
.arc-moment-thumb video.loading {
    opacity: 0.3;
    transform: translateY(10px);
}

/* Loaded/visible state - full animation complete */
:not(.timeline-modal)>.arc-moment-thumb img.loaded,
:not(.timeline-modal)>.arc-moment-thumb video.loaded,
.card-item.in-view,
.card-carousel .carousel-slide.in-view,
.tier-card.in-view,
.gooner-header.in-view,
.section-heading.in-view,
.section-title.in-view,
.testimonial.in-view,
.proof-item.in-view,
.video-card.in-view,
.daily-teaser.in-view,
.arc-year-card.in-view,
.arc-year-title.in-view,
.arc-year-thumb:not(.chibi).in-view,
.footer-links.in-view,
.footer-socials.in-view,
.footer-brand.in-view {
    opacity: 1;
    transform: translateY(0);
}


/* =============================================
   TIMELINE MODAL - CORRUPTION CAROUSEL
   ============================================= */
.timeline-modal {
    position: fixed;
    inset: 0;
    background: transparent;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
}

.timeline-modal.open {
    opacity: 1;
    visibility: visible;
}

/* Force timeline modal content to be visible (override lazy load) */
.timeline-modal .arc-moment-thumb img,
.timeline-modal .arc-moment-thumb video,
.timeline-modal .carousel-slide {
    opacity: 1 !important;
    transform: none !important;
}

/* Corruption overlay - intensity increases with level */
.corruption-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    transition: all 0.5s ease;
}

/* Corruption levels 0-6 - DARKER backgrounds */
.timeline-modal[data-corruption="0"] .corruption-overlay {
    background: radial-gradient(ellipse at center, rgba(20, 10, 30, 0.85) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.timeline-modal[data-corruption="1"] .corruption-overlay {
    background: radial-gradient(ellipse at center, rgba(30, 10, 25, 0.88) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.timeline-modal[data-corruption="2"] .corruption-overlay {
    background: radial-gradient(ellipse at center, rgba(40, 5, 30, 0.90) 0%, rgba(5, 0, 5, 0.96) 100%);
}

.timeline-modal[data-corruption="3"] .corruption-overlay {
    background: radial-gradient(ellipse at center, rgba(60, 0, 40, 0.90) 0%, rgba(10, 0, 10, 0.96) 100%);
}

.timeline-modal[data-corruption="4"] .corruption-overlay {
    background: radial-gradient(ellipse at center, rgba(80, 0, 50, 0.92) 0%, rgba(15, 0, 15, 0.97) 100%);
}

.timeline-modal[data-corruption="5"] .corruption-overlay {
    background: radial-gradient(ellipse at center, rgba(100, 0, 60, 0.93) 0%, rgba(20, 0, 20, 0.97) 100%);
}

.timeline-modal[data-corruption="6"] .corruption-overlay {
    background: radial-gradient(ellipse at center, rgba(120, 0, 70, 0.94) 0%, rgba(30, 0, 25, 0.98) 100%);
    box-shadow: inset 0 0 300px rgba(255, 0, 100, 0.2);
}

/* Close button */
.timeline-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 20, 147, 0.5);
    border-radius: 50%;
    color: #ff1493;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100;
}

.timeline-modal-close:hover {
    background: rgba(255, 20, 147, 0.3);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.5);
}

/* Carousel header */
.carousel-header {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 30px 20px;
}

.corruption-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: rgba(255, 20, 147, 0.6);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.corruption-meter {
    width: 200px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 20, 147, 0.3);
}

.corruption-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff69b4, #ff1493, #dc143c, #8b0000);
    border-radius: 3px;
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

.carousel-year {
    font-size: 4rem;
    font-weight: 900;
    margin: 0;
    background: linear-gradient(180deg, #fff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    text-shadow: 0 0 60px rgba(255, 255, 255, 0.3);
    transition: all 0.5s ease;
}

.carousel-title {
    font-size: 1.1rem;
    color: #fff;
    margin: 10px 0 0;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Carousel container */
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    padding: 20px 80px;
    z-index: 10;
}

.carousel-track {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 20px;
    overflow: visible;
    perspective: 1000px;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    flex: 0 0 auto;
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    transform-style: preserve-3d;
}

.carousel-slide .arc-moment-thumb {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.carousel-slide .arc-moment-thumb:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
}

.carousel-slide .arc-moment-thumb img,
.carousel-slide .arc-moment-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-slide p {
    margin-top: 12px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.85rem;
    color: #fff;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
    max-width: 200px;
    text-align: center;
}

/* Navigation arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 20, 147, 0.4);
    border-radius: 50%;
    color: #ff1493;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 20;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-nav:hover {
    background: rgba(255, 20, 147, 0.2);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 25px rgba(255, 20, 147, 0.4);
}


/* Progressive corruption effects per level */

/* Level 1-2: Subtle warmth, slight vignette */
.timeline-modal[data-corruption="1"] .carousel-slide .arc-moment-thumb {
    border-color: rgba(255, 200, 220, 0.3);
}

.timeline-modal[data-corruption="1"] .carousel-slide .arc-moment-thumb img,
.timeline-modal[data-corruption="1"] .carousel-slide .arc-moment-thumb video {
    filter: saturate(1.05);
}

.timeline-modal[data-corruption="2"] .carousel-slide .arc-moment-thumb {
    border-color: rgba(255, 150, 180, 0.4);
}

.timeline-modal[data-corruption="2"] .carousel-slide .arc-moment-thumb img,
.timeline-modal[data-corruption="2"] .carousel-slide .arc-moment-thumb video {
    filter: saturate(1.1) contrast(1.02);
}

/* Level 3-4: Pink hue shift, stronger vignette, slight blur edge */
.timeline-modal[data-corruption="3"] .carousel-slide .arc-moment-thumb {
    border-color: rgba(255, 100, 150, 0.5);
    border-width: 3px;
}

.timeline-modal[data-corruption="3"] .carousel-slide .arc-moment-thumb img,
.timeline-modal[data-corruption="3"] .carousel-slide .arc-moment-thumb video {
    filter: saturate(1.2) hue-rotate(-5deg) contrast(1.05);
}

.timeline-modal[data-corruption="4"] .carousel-slide .arc-moment-thumb {
    border-color: rgba(255, 50, 120, 0.6);
    border-width: 3px;
}

.timeline-modal[data-corruption="4"] .carousel-slide .arc-moment-thumb img,
.timeline-modal[data-corruption="4"] .carousel-slide .arc-moment-thumb video {
    filter: saturate(1.3) hue-rotate(-10deg) contrast(1.08);
}

/* Level 5-6: Deep corruption, intense filters only */
.timeline-modal[data-corruption="5"] .carousel-slide .arc-moment-thumb {
    border-color: rgba(220, 20, 60, 0.5);
    border-width: 2px;
}

.timeline-modal[data-corruption="5"] .carousel-slide .arc-moment-thumb img,
.timeline-modal[data-corruption="5"] .carousel-slide .arc-moment-thumb video {
    filter: saturate(1.4) hue-rotate(-15deg) contrast(1.1) brightness(0.95);
}

.timeline-modal[data-corruption="6"] .carousel-slide .arc-moment-thumb {
    border-color: rgba(180, 0, 50, 0.6);
    border-width: 2px;
    animation: corruptBorder 3s ease-in-out infinite;
}

.timeline-modal[data-corruption="6"] .carousel-slide .arc-moment-thumb img,
.timeline-modal[data-corruption="6"] .carousel-slide .arc-moment-thumb video {
    filter: saturate(1.5) hue-rotate(-20deg) contrast(1.15) brightness(0.9);
    animation: corruptImage 4s ease-in-out infinite;
}

@keyframes corruptBorder {

    0%,
    100% {
        border-color: rgba(180, 0, 50, 0.8);
    }

    50% {
        border-color: rgba(255, 20, 100, 0.9);
    }
}

@keyframes corruptImage {

    0%,
    100% {
        filter: saturate(1.5) hue-rotate(-20deg) contrast(1.15) brightness(0.9);
    }

    50% {
        filter: saturate(1.6) hue-rotate(-25deg) contrast(1.2) brightness(0.85);
    }
}

/* Vignette overlay that intensifies with corruption */
.timeline-modal::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 5;
    transition: all 0.5s ease;
}

.timeline-modal[data-corruption="0"]::after {
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
}

.timeline-modal[data-corruption="1"]::after {
    box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.35);
}

.timeline-modal[data-corruption="2"]::after {
    box-shadow: inset 0 0 150px rgba(10, 0, 10, 0.4);
}

.timeline-modal[data-corruption="3"]::after {
    box-shadow: inset 0 0 180px rgba(20, 0, 15, 0.45);
}

.timeline-modal[data-corruption="4"]::after {
    box-shadow: inset 0 0 200px rgba(30, 0, 20, 0.5);
}

.timeline-modal[data-corruption="5"]::after {
    box-shadow: inset 0 0 250px rgba(40, 0, 25, 0.55);
}

.timeline-modal[data-corruption="6"]::after {
    box-shadow: inset 0 0 300px rgba(50, 0, 30, 0.6);
}

/* Year text progressively corrupts */
.timeline-modal[data-corruption="1"] .carousel-year {
    background: linear-gradient(180deg, #fff 0%, #ffe0f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.timeline-modal[data-corruption="2"] .carousel-year {
    background: linear-gradient(180deg, #fff 0%, #ffc0e0 80%, #ffb0d0 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.timeline-modal[data-corruption="3"] .carousel-year {
    background: linear-gradient(180deg, #fff 0%, #ff90c0 70%, #ff69b4 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.timeline-modal[data-corruption="4"] .carousel-year {
    background: linear-gradient(180deg, #ffd0e8 0%, #ff69b4 50%, #ff1493 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.timeline-modal[data-corruption="5"] .carousel-year {
    background: linear-gradient(180deg, #ff90c0 0%, #ff1493 40%, #dc143c 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.timeline-modal[data-corruption="6"] .carousel-year {
    background: linear-gradient(180deg, #ff69b4 0%, #ff1493 30%, #dc143c 60%, #8b0000 100%);
    -webkit-background-clip: text;
    background-clip: text;
    animation: yearPulse 2s ease-in-out infinite;
}

@keyframes yearPulse {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.3);
    }
}

.timeline-modal[data-corruption="6"] .corruption-label {
    color: #ff1493;
    animation: corruptPulse 2s ease-in-out infinite;
}

@keyframes corruptPulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 10px #ff1493;
    }
}

/* Mobile carousel: 2 slides visible, smaller */
@media (max-width: 768px) {
    .carousel-header {
        padding: 20px 15px;
    }

    .carousel-year {
        font-size: 2.5rem;
    }

    .carousel-title {
        font-size: 0.9rem;
    }

    .corruption-meter {
        width: 150px;
    }

    .carousel-container {
        padding: 10px 50px;
    }

    .carousel-track {
        gap: 15px;
        padding: 10px;
    }

    .carousel-slide {
        width: calc(50vw - 50px);
        max-width: 160px;
        padding: 8px;
    }

    .carousel-slide p {
        font-size: 0.75rem;
        margin-top: 8px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .timeline-modal-close {
        width: 40px;
        height: 40px;
        font-size: 18px;
        top: 10px;
        right: 10px;
    }
}

/* Odd blocks (left side): text aligned right */
.arc-year-block:nth-child(odd) .arc-year-content {
    text-align: right;
}

/* Even blocks (right side): text aligned left */
.arc-year-block:nth-child(even) .arc-year-content {
    text-align: left;
}


@media (max-width: 600px) {
    .arc-year-block {
        padding-left: 10px;
        padding-right: 10px;
    }

    /* Removed conflicting old chibi styles - using grid-based styles from earlier */

    .arc-year-num {
        font-size: var(--size-lg);
    }

    .arc-year-title {
        font-size: var(--size-base);
    }
}



/* ===========================================
 * PRINT STYLES
 * =========================================== */
/* =============================================
 * LIGHTBOX - Full-size media viewer
 * ============================================= */
#mediaLightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#mediaLightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 36px;
    height: 36px;
    background: var(--bg-surface);
    border: 1px solid var(--purple-deep);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.lightbox-close:hover {
    background: var(--purple-deep);
}

.lightbox-media {
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-media img,
.lightbox-media video {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    margin-top: var(--space-md);
    font-size: var(--size-base);
    color: var(--text-secondary);
    font-style: italic;
    text-align: center;
    max-width: 600px;
}

/* =============================================
 * PRINT STYLES
 * ============================================= */
@media print {

    .age-gate,
    .sticky-cta-bar,
    .skip-link,
    .video-thumbnail,
    .photo-strip,
    .footer-collage,
    .modal-overlay {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .page {
        padding: 0 !important;
    }

    a {
        color: black !important;
        text-decoration: underline !important;
    }

    .cta-primary,
    .cta-secondary {
        border: 2px solid black !important;
        background: none !important;
        color: black !important;
    }
}

/* =============================================
 * STICKY CTA BUTTON
 * ============================================= */
.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-cta-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: var(--gradient-succubus);
    color: var(--text-primary);
    font-size: var(--size-base);
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: var(--glow-medium);
    animation: pulse-glow 2s ease-in-out infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-intense);
}

.sticky-cta-btn::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #00FF00;
    border-radius: 50%;
    animation: pulse-live 1.5s ease infinite;
}

/* =============================================
 * CHIBI MASCOT WITH SPEECH BUBBLES
 * ============================================= */
.chibi-mascot {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.chibi-mascot.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.chibi-speech {
    background: var(--bg-elevated);
    border: 1px solid var(--purple-hot);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    max-width: 200px;
    font-size: var(--size-sm);
    color: var(--text-secondary);
    box-shadow: 0 0 15px var(--purple-glow);
    position: relative;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.chibi-speech.visible {
    opacity: 1;
    transform: translateY(0);
}

.chibi-speech::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--purple-hot);
}

.chibi-img {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 0 10px var(--purple-glow));
    cursor: pointer;
    transition: transform 0.2s ease;
    animation: breathe 4s ease-in-out infinite;
}

.chibi-img:hover {
    transform: scale(1.1);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .sticky-cta {
        bottom: 16px;
        right: 16px;
    }

    .sticky-cta-btn {
        padding: var(--space-sm) var(--space-md);
        font-size: var(--size-sm);
    }

    .chibi-mascot {
        bottom: 16px;
        left: 16px;
    }

    .chibi-img {
        width: 60px;
    }

    .chibi-speech {
        max-width: 150px;
        font-size: var(--size-xs);
    }

    /* Old timeline styles removed - using grid-based layout defined earlier */

}

/* ===========================================
 * KINKS SECTION - What Gets Me Off
 * =========================================== */
.kinks-section {
    padding: var(--space-3xl) var(--space-lg);
    background: var(--bg-surface);
    position: relative;
}

.kinks-intro {
    font-size: var(--size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.kinks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.kink-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-elevated);
    border: 1px solid rgba(147, 51, 234, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kink-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255, 0, 85, 0.2);
}

.kink-card[data-energy="sub"] {
    border-color: rgba(255, 0, 85, 0.3);
}

.kink-card[data-energy="dom"] {
    border-color: rgba(147, 51, 234, 0.3);
}

.kink-card[data-energy="sub"]:hover {
    box-shadow: 0 8px 30px rgba(255, 0, 85, 0.3);
}

.kink-card[data-energy="dom"]:hover {
    box-shadow: 0 8px 30px rgba(147, 51, 234, 0.3);
}

.kink-video {
    aspect-ratio: 2/3;
    background: var(--bg-deep);
    overflow: hidden;
}

.kink-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kink-content {
    padding: var(--space-md);
    text-align: center;
}

.kink-title {
    font-size: var(--size-base);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.kink-card[data-energy="sub"] .kink-title {
    color: var(--pink-hot);
}

.kink-card[data-energy="dom"] .kink-title {
    color: var(--purple-soft);
}

.kink-desc {
    font-size: var(--size-sm);
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.4;
}

/* Kinks responsive */
@media (max-width: 768px) {
    .kinks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .kink-title {
        font-size: var(--size-xs);
    }
}

@media (max-width: 480px) {
    .kinks-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-sm);
    }

    .kink-content {
        padding: var(--space-sm);
    }

    .kink-title {
        font-size: 0.7rem;
    }

    .kink-desc {
        font-size: 0.65rem;
    }
}

/* Kink Modal Styles */
.kink-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.kink-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.kink-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.kink-modal-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    width: auto;
    max-width: 90vw;
}

.kink-modal-container {
    position: relative;
    width: 100%;
    max-height: 80vh;
    background: var(--bg-elevated);
    border-radius: 16px;
    border: 1px solid rgba(147, 51, 234, 0.3);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 0, 85, 0.2);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.kink-modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 28px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.kink-modal-close:hover {
    background: var(--pink-hot);
    transform: rotate(90deg);
}

.kink-modal-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 75vh;
    overflow: hidden;
}

.kink-modal-video {
    display: none;
}

.kink-modal-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kink-modal-info {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    overflow-y: auto;
    max-height: 75vh;
}

.kink-modal-title {
    font-size: var(--size-2xl);
    font-weight: 600;
    color: var(--pink-hot);
    margin: 0;
    text-align: center;
    text-shadow: 0 0 20px rgba(255, 0, 85, 0.5);
}

.kink-modal[data-energy="dom"] .kink-modal-title {
    color: var(--purple-soft);
}

.kink-modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    order: 2;
}

.kink-modal-tags span {
    padding: 4px 12px;
    background: rgba(255, 0, 85, 0.15);
    border: 1px solid rgba(255, 0, 85, 0.3);
    border-radius: 20px;
    font-size: var(--size-xs);
    color: var(--pink-hot);
}

.kink-modal[data-energy="dom"] .kink-modal-tags span {
    background: rgba(147, 51, 234, 0.15);
    border-color: rgba(147, 51, 234, 0.3);
    color: var(--purple-soft);
}

.kink-modal-description {
    font-size: var(--size-sm);
    color: var(--text-secondary);
    line-height: 1.7;
}

.kink-modal-description p {
    margin: 0;
}

/* Modal responsive */
@media (max-width: 768px) {
    .kink-modal-content {
        grid-template-columns: 1fr;
    }

    .kink-modal-video {
        aspect-ratio: 16/9;
    }

    .kink-modal-info {
        padding: var(--space-lg);
    }

    .kink-modal-title {
        font-size: var(--size-lg);
    }
}

/* Clickable kink tags */
.kink-tag {
    cursor: pointer;
    transition: all 0.2s ease;
}

.kink-tag:hover {
    background: rgba(255, 0, 85, 0.3) !important;
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(255, 0, 85, 0.4);
}

.kink-modal[data-energy="dom"] .kink-tag:hover {
    background: rgba(147, 51, 234, 0.3) !important;
    box-shadow: 0 0 10px rgba(147, 51, 234, 0.4);
}

/* ===========================================
 * TAG SUB-MODAL - Individual kink explanations
 * =========================================== */
.tag-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.tag-modal.active {
    display: flex;
}

.tag-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.tag-modal-content {
    position: relative;
    background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-surface) 100%);
    border: 1px solid rgba(255, 0, 85, 0.4);
    border-radius: 16px;
    padding: var(--space-xl);
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow:
        0 0 40px rgba(255, 0, 85, 0.3),
        0 20px 40px rgba(0, 0, 0, 0.5);
    animation: tagModalSlide 0.25s ease;
}

@keyframes tagModalSlide {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.tag-modal-close {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 22px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tag-modal-close:hover {
    background: var(--pink-hot);
    transform: rotate(90deg);
}

.tag-modal-title {
    font-size: var(--size-lg);
    font-weight: 600;
    color: var(--pink-hot);
    margin: 0 0 var(--space-md) 0;
    text-transform: lowercase;
    text-shadow: 0 0 15px rgba(255, 0, 85, 0.5);
}

.tag-modal-text {
    font-size: var(--size-base);
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

/* Mobile tag modal */
@media (max-width: 768px) {
    .tag-modal-content {
        padding: var(--space-lg);
        max-width: 320px;
    }

    .tag-modal-title {
        font-size: var(--size-base);
    }

    .tag-modal-text {
        font-size: var(--size-sm);
    }
}

/* ===== GOONER SECTION - SUBSCRIPTION TIERS ===== */
.gooner-section {
    padding: var(--space-3xl) var(--space-lg);
    padding-top: var(--space-4xl);
    max-width: 1200px;
    margin: 0 auto;
    margin-top: var(--space-2xl);
    border-top: 1px solid rgba(255, 0, 85, 0.15);
}

.gooner-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.gooner-header .section-heading {
    font-size: var(--size-2xl);
    color: var(--pink-hot);
    text-shadow: 0 0 30px rgba(255, 0, 85, 0.4);
}

.gooner-header .section-subheading {
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

/* Tiers Grid */
.tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    align-items: stretch;
    padding: 0 var(--space-md);
}

/* Individual Tier Card */
.tier-card {
    position: relative;
    background: rgba(15, 5, 20, 0.8);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 16px;
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(147, 51, 234, 0.2);
}

/* Popular tier highlight */
.tier-card.popular {
    border-color: var(--pink-hot);
    background: rgba(255, 0, 85, 0.05);
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(255, 0, 85, 0.2);
}

.tier-card.popular:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 0 8px 50px rgba(255, 0, 85, 0.3);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--pink-hot), #cc0066);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: var(--size-xs);
    font-weight: 600;
    text-transform: lowercase;
    letter-spacing: 0.05em;
}

/* VIP tier */
.tier-card.vip {
    border-color: var(--gold-soft);
    background: rgba(218, 165, 32, 0.05);
}

.tier-card.vip:hover {
    box-shadow: 0 8px 40px rgba(218, 165, 32, 0.2);
}

/* Tier Header */
.tier-header {
    text-align: center;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-name {
    display: block;
    font-size: var(--size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.tier-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-amount {
    font-size: var(--size-2xl);
    font-weight: 700;
    color: var(--pink-hot);
}

.tier-card.vip .price-amount {
    color: var(--gold-soft);
}

.price-period {
    font-size: var(--size-sm);
    color: var(--text-muted);
}

/* Tier Features */
.tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg) 0;
    flex-grow: 1;
}

.tier-features li {
    padding: var(--space-sm) 0;
    color: var(--text-secondary);
    font-size: var(--size-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 24px;
}

.tier-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--purple-soft);
}

.tier-features li.highlight {
    color: var(--text-primary);
    font-weight: 500;
}

.tier-features li.highlight::before {
    color: var(--pink-hot);
}

.tier-features li.promo {
    color: var(--gold-soft);
    font-weight: 500;
}

.tier-features li.promo::before {
    content: '★';
    color: var(--gold-soft);
}

/* Tier CTA */
.tier-cta {
    display: block;
    text-align: center;
    padding: 14px 24px;
    background: transparent;
    border: 1px solid rgba(147, 51, 234, 0.5);
    border-radius: 8px;
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tier-cta:hover {
    background: rgba(147, 51, 234, 0.2);
    border-color: var(--purple-soft);
}

.tier-cta.primary {
    background: linear-gradient(135deg, var(--pink-hot), #cc0066);
    border: none;
    color: white;
    box-shadow: 0 4px 20px rgba(255, 0, 85, 0.4);
}

.tier-cta.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 0, 85, 0.5);
}

.tier-note {
    text-align: center;
    font-size: var(--size-xs);
    color: var(--text-muted);
    font-style: italic;
    margin-top: var(--space-sm);
}

/* Tiers Responsive */
@media (max-width: 900px) {
    .tiers-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: var(--space-lg);
        padding: 0;
    }

    .tier-card.popular {
        transform: none;
        order: -1;
    }

    .tier-card.popular:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 480px) {
    .gooner-section {
        padding: var(--space-2xl) var(--space-sm);
    }

    .gooner-header .section-heading {
        font-size: var(--size-xl);
    }
}

/* ===== I'M NOT LIKE OTHER GIRLS SECTION ===== */
.inlog-section {
    padding: var(--space-3xl) var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.inlog-title {
    font-size: var(--size-xl);
    font-weight: 400;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: var(--space-xs);
    letter-spacing: 0.02em;
}

.inlog-subtitle {
    font-size: var(--size-md);
    color: var(--pink-hot);
    font-weight: 600;
    margin-bottom: var(--space-2xl);
}

.inlog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.inlog-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-md);
    background: rgba(15, 5, 20, 0.6);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.inlog-block:hover {
    background: rgba(255, 0, 85, 0.1);
    border-color: rgba(255, 0, 85, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 0, 85, 0.2);
}

.inlog-struck {
    color: var(--text-muted);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 0, 85, 0.6);
    font-size: var(--size-sm);
    opacity: 0.7;
}

.inlog-arrow {
    color: var(--pink-hot);
    font-size: var(--size-md);
    opacity: 0.8;
}

.inlog-real {
    color: var(--pink-hot);
    font-weight: 600;
    font-size: var(--size-md);
    text-shadow: 0 0 20px rgba(255, 0, 85, 0.3);
}

.inlog-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 32px;
    background: transparent;
    border: 1px solid rgba(147, 51, 234, 0.4);
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.inlog-cta:hover {
    background: rgba(147, 51, 234, 0.1);
    border-color: var(--purple-soft);
    transform: translateY(-2px);
}

.inlog-cta .cta-text {
    font-weight: 600;
    font-size: var(--size-md);
}

.inlog-cta .cta-sub {
    font-size: var(--size-xs);
    color: var(--text-muted);
    margin-top: 4px;
}

/* INLOG Responsive */
@media (max-width: 768px) {
    .inlog-section {
        padding: var(--space-2xl) var(--space-md);
    }

    .inlog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .inlog-title {
        font-size: var(--size-lg);
    }
}

/* deployed 2026-02-03 14:53:31 */