/* ============================================
   NEOREPLICANTE - PREMIUM BIOLUMINESCENT DESIGN
   Version 3.0 - Global Brand Transformation
   "El código está vivo"
   ============================================ */

/* Google Fonts Import - Premium Typography */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&family=Playfair+Display:wght@700;800;900&display=swap');

/* CSS Variables - Refined Brand Colors */
:root {
    /* Core CMYK - Refined */
    --cyan: #00F0FF;
    --cyan-glow: rgba(0, 240, 255, 0.6);
    --cyan-deep: #00A8B3;
    --magenta: #FF00E5;
    --magenta-glow: rgba(255, 0, 229, 0.5);
    --magenta-deep: #B300A0;
    --yellow: #F0FF00;
    --yellow-soft: #E5F200;
    
    /* Verde Geométrico - El Alma (Refined Bioluminescence) */
    --green-bio: #00FF6A;
    --green-glow: rgba(0, 255, 106, 0.7);
    --green-dark: #00CC55;
    --green-neon: #39FF14;
    --green-subtle: rgba(0, 255, 106, 0.15);
    
    /* Deep Blacks & Surfaces */
    --black-void: #050508;
    --black-surface: #0A0A0F;
    --gray-elevated: #12121A;
    --gray-card: #1A1A24;
    --gray-border: #2A2A38;
    --white-pure: #FFFFFF;
    --white-soft: #F0F0F5;
    --white-muted: rgba(255, 255, 255, 0.7);
    
    /* Platform Colors */
    --twitch-purple: #9146FF;
    --kick-green: #53FC18;
    --tiktok-pink: #FE2C55;
    --youtube-red: #FF0000;
    --twitter-blue: #1DA1F2;
    --discord-purple: #5865F2;
    --instagram-gradient: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    
    /* Typography */
    --font-display: 'Outfit', 'Helvetica Neue', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --font-accent: 'Playfair Display', Georgia, serif;
    
    /* Spacing & Layout */
    --border-weight: 2px;
    --border-glow: 1px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --container-max: 1400px;
    
    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
    --transition-fast: 200ms var(--ease-out-expo);
    --transition-smooth: 400ms var(--ease-out-expo);
    --transition-slow: 800ms var(--ease-out-expo);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-mono);
    background-color: var(--black-void);
    color: var(--white-soft);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 0%, rgba(0, 240, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(255, 0, 229, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 100% 80% at 50% 50%, rgba(0, 255, 106, 0.03) 0%, transparent 70%);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Selection */
::selection {
    background: var(--green-bio);
    color: var(--black-void);
}

/* ============================================
   ATMOSPHERIC EFFECTS
   ============================================ */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: repeating-linear-gradient(
        0deg,
        transparent 0px,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
    opacity: 0.4;
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.015;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Floating Particles Container */
.bio-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--green-bio);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 15s infinite;
    box-shadow: 0 0 10px var(--green-glow), 0 0 20px var(--green-glow);
}

@keyframes float-particle {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1);
    }
}

/* ============================================
   NAVIGATION - FLOATING GLASS
   ============================================ */
.nav-brutal {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    z-index: 1000;
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-logo .logo-link {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 2px;
}

.logo-neo {
    color: var(--green-bio);
    text-shadow: 0 0 20px var(--green-glow);
    transition: var(--transition-fast);
}

.logo-rep {
    color: var(--white-pure);
    font-weight: 600;
}

.logo-link:hover .logo-neo {
    text-shadow: 0 0 30px var(--green-glow), 0 0 60px var(--green-glow);
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white-muted);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-md);
    background: transparent;
    border: 1px solid transparent;
    transition: var(--transition-fast);
    letter-spacing: 0.05em;
}

.nav-link:hover {
    color: var(--white-pure);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.nav-link--cta {
    background: var(--green-bio);
    color: var(--black-void) !important;
    font-weight: 700;
    border-color: var(--green-bio);
    box-shadow: 0 0 20px rgba(0, 255, 106, 0.3);
}

.nav-link--cta:hover {
    background: var(--white-pure);
    border-color: var(--white-pure);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.nav-link--live {
    background: linear-gradient(135deg, var(--magenta), #FF4081);
    color: var(--white-pure) !important;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulse-glow-live 2s ease-in-out infinite;
}

@keyframes pulse-glow-live {
    0%, 100% { box-shadow: 0 0 15px rgba(255, 0, 229, 0.4); }
    50% { box-shadow: 0 0 25px rgba(255, 0, 229, 0.6); }
}

.nav-link--live:hover {
    transform: translateY(-2px) scale(1.02);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--white-pure);
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white-pure);
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* Language Toggle */
.nav-link--lang {
    background: rgba(0, 240, 255, 0.1);
    color: var(--cyan) !important;
    border: 1px solid rgba(0, 240, 255, 0.3);
    font-size: 0.7rem;
    padding: 0.5rem 0.8rem;
    cursor: pointer;
}

.nav-link--lang:hover {
    background: var(--cyan);
    color: var(--black-void) !important;
}

/* ============================================
   HERO SECTION - CINEMATIC ENTRANCE
   ============================================ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 10rem 6rem 6rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 60% 40% at 10% 90%, rgba(0, 255, 106, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 90% 10%, rgba(0, 240, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255, 0, 229, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

/* Grid Lines Background */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 106, 0.08);
    border: 1px solid rgba(0, 255, 106, 0.3);
    border-radius: 100px;
    margin-bottom: 2rem;
}

.badge-text {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--white-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.badge-status {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--green-bio);
    animation: blink-soft 2s steps(1) infinite;
}

@keyframes blink-soft {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 1.5rem;
}

.title-line {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    position: relative;
}

.title-line--cyan {
    color: var(--cyan);
    text-shadow: 0 0 40px var(--cyan-glow);
}

.title-line--magenta {
    color: var(--magenta);
    text-shadow: 0 0 40px var(--magenta-glow);
}

.title-line--green {
    color: var(--green-bio);
    text-shadow: 0 0 40px var(--green-glow);
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.subtitle-bar {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--magenta));
    border-radius: 4px;
}

.hero-subtitle p {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--white-muted);
    letter-spacing: 0.1em;
}

.highlight-yellow {
    color: var(--yellow);
    font-weight: 600;
}

.highlight-green {
    color: var(--green-bio);
}

.hero-description {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--white-muted);
    margin-bottom: 2.5rem;
    max-width: 480px;
    line-height: 1.7;
}

/* CTA Buttons - Premium Style */
.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn--primary {
    background: linear-gradient(135deg, var(--green-bio), var(--green-dark));
    color: var(--black-void);
    box-shadow: 
        0 4px 20px rgba(0, 255, 106, 0.4),
        0 0 0 1px rgba(0, 255, 106, 0.3) inset;
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 30px rgba(0, 255, 106, 0.5),
        0 0 0 1px rgba(0, 255, 106, 0.5) inset;
}

.btn--secondary {
    background: transparent;
    color: var(--white-pure);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--cyan);
    color: var(--cyan);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 240, 255, 0.2);
}

.btn-icon {
    font-size: 0.9rem;
}

/* Hero Social */
.hero-social {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white-muted);
    transition: var(--transition-fast);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.social-icon:hover {
    background: var(--green-bio);
    border-color: var(--green-bio);
    color: var(--black-void);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 255, 106, 0.3);
}

/* ============================================
   HERO VISUAL - ORGANIC DNA HELIX
   ============================================ */
.hero-visual {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-frame {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Glowing Orbs Background */
.visual-frame::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 255, 106, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(0, 240, 255, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 0, 229, 0.08) 0%, transparent 50%);
    animation: pulse-bg 8s ease-in-out infinite;
    filter: blur(40px);
}

@keyframes pulse-bg {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.frame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--green-bio);
    opacity: 0.5;
}

.frame-corner--tl { top: 10%; left: 10%; border-right: none; border-bottom: none; }
.frame-corner--tr { top: 10%; right: 10%; border-left: none; border-bottom: none; }
.frame-corner--bl { bottom: 10%; left: 10%; border-right: none; border-top: none; }
.frame-corner--br { bottom: 10%; right: 10%; border-left: none; border-top: none; }

.visual-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* DNA Helix - Enhanced Organic Animation */
.dna-helix {
    position: relative;
    width: 200px;
    height: 200px;
    margin-bottom: 2rem;
}

.helix-strand {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
}

.strand--cyan {
    border-color: var(--cyan);
    border-style: dashed;
    animation: rotate-strand 10s linear infinite;
    box-shadow: 0 0 30px var(--cyan-glow);
}

.strand--magenta {
    border-color: var(--magenta);
    border-style: dashed;
    animation: rotate-strand 8s linear infinite reverse;
    box-shadow: 0 0 30px var(--magenta-glow);
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
}

@keyframes rotate-strand {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.helix-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--green-bio) 0%, var(--green-dark) 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 40px var(--green-glow),
        0 0 80px var(--green-glow),
        0 0 120px rgba(0, 255, 106, 0.3);
    animation: pulse-core 3s ease-in-out infinite;
}

@keyframes pulse-core {
    0%, 100% { 
        box-shadow: 
            0 0 40px var(--green-glow),
            0 0 80px var(--green-glow),
            0 0 120px rgba(0, 255, 106, 0.3);
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        box-shadow: 
            0 0 60px var(--green-glow),
            0 0 120px var(--green-glow),
            0 0 180px rgba(0, 255, 106, 0.4);
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Orbiting Particles */
.helix-core::before,
.helix-core::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--cyan-glow);
}

.helix-core::before {
    animation: orbit 4s linear infinite;
}

.helix-core::after {
    background: var(--magenta);
    box-shadow: 0 0 15px var(--magenta-glow);
    animation: orbit 4s linear infinite reverse;
    animation-delay: -2s;
}

@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(80px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(80px) rotate(-360deg);
    }
}

.visual-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.code-line {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--green-bio);
    letter-spacing: 0.1em;
    opacity: 0.8;
    text-shadow: 0 0 10px var(--green-glow);
}

/* ============================================
   SECTIONS - COMMON STYLES
   ============================================ */
section {
    padding: 6rem 4rem;
    position: relative;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.section-number {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--black-void);
    background: var(--green-bio);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    letter-spacing: 0.05em;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--white-pure);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.section-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--green-bio), transparent);
    border-radius: 2px;
}

/* ============================================
   LIVE STREAM SECTION
   ============================================ */
.live-section {
    background: var(--black-surface);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stream-container {
    max-width: 1000px;
    margin: 0 auto;
}

.stream-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 1.5rem;
}

.stream-tab {
    flex: 1;
    padding: 1rem 1.5rem;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    background: var(--gray-card);
    color: var(--white-muted);
    border: 1px solid var(--gray-border);
    cursor: pointer;
    transition: var(--transition-fast);
    letter-spacing: 0.05em;
}

.stream-tab:first-child {
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    border-right: none;
}

.stream-tab:last-child {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.stream-tab.active {
    background: var(--twitch-purple);
    color: var(--white-pure);
    border-color: var(--twitch-purple);
}

.stream-tab[data-platform="kick"].active {
    background: var(--kick-green);
    color: var(--black-void);
    border-color: var(--kick-green);
}

.stream-embed-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-elevated);
    margin-bottom: 1.5rem;
    border: 1px solid var(--gray-border);
}

.stream-embed {
    display: none;
    width: 100%;
    height: 100%;
}

.stream-embed.active {
    display: block;
}

.stream-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.stream-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stream-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    background: var(--gray-card);
    border: 1px solid var(--gray-border);
    font-family: var(--font-display);
    font-weight: 600;
    transition: var(--transition-fast);
}

.stream-link:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}

.stream-link--twitch:hover {
    background: var(--twitch-purple);
    box-shadow: 0 8px 30px rgba(145, 70, 255, 0.3);
}

.stream-link--kick:hover {
    background: var(--kick-green);
    color: var(--black-void);
    box-shadow: 0 8px 30px rgba(83, 252, 24, 0.3);
}

.platform-icon {
    font-size: 1.2rem;
}

.arrow {
    opacity: 0.5;
    transition: var(--transition-fast);
}

.stream-link:hover .arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* ============================================
   CONTENT SECTION
   ============================================ */
.content-section {
    background: var(--black-void);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.content-card {
    border-radius: var(--radius-lg);
    background: var(--gray-card);
    border: 1px solid var(--gray-border);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.content-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--gray-elevated);
    border-bottom: 1px solid var(--gray-border);
}

.card-icon {
    font-size: 1.2rem;
}

.content-card--tiktok .card-icon { color: var(--tiktok-pink); }
.content-card--youtube .card-icon { color: var(--youtube-red); }
.content-card--instagram .card-icon { color: var(--magenta); }
.content-card--twitter .card-icon { color: var(--white-pure); }

.card-title {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    flex: 1;
    letter-spacing: 0.03em;
}

.card-link {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--cyan);
    transition: var(--transition-fast);
}

.card-link:hover {
    color: var(--green-bio);
}

.card-body {
    padding: 1.25rem;
    min-height: 200px;
}

.card-placeholder, .insta-placeholder, .twitter-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 150px;
    text-align: center;
    gap: 1rem;
}

.card-placeholder p {
    color: var(--white-muted);
    font-size: 0.875rem;
}

.placeholder-btn {
    padding: 0.6rem 1.2rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--green-bio);
    color: var(--black-void);
    border-radius: var(--radius-md);
    border: none;
    transition: var(--transition-fast);
}

.placeholder-btn:hover {
    background: var(--white-pure);
    transform: translateY(-2px);
}

.youtube-embed {
    aspect-ratio: 16/9;
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.youtube-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.subscribe-btn {
    display: block;
    width: 100%;
    padding: 0.75rem;
    text-align: center;
    background: var(--youtube-red);
    color: var(--white-pure);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: var(--radius-md);
    border: none;
    transition: var(--transition-fast);
    letter-spacing: 0.05em;
}

.subscribe-btn:hover {
    background: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

.twitter-timeline-container {
    max-height: 400px;
    overflow-y: auto;
}

/* ============================================
   COMMUNITY SECTION
   ============================================ */
.community-section {
    background: var(--black-surface);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.community-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--gray-card);
    border: 1px solid var(--gray-border);
    text-align: center;
    transition: var(--transition-smooth);
}

.community-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
}

.community-card--discord:hover {
    box-shadow: 0 20px 50px rgba(88, 101, 242, 0.2);
    border-color: rgba(88, 101, 242, 0.3);
}

.community-card--facebook:hover {
    box-shadow: 0 20px 50px rgba(24, 119, 242, 0.2);
    border-color: rgba(24, 119, 242, 0.3);
}

.community-card--newsletter:hover {
    box-shadow: 0 20px 50px rgba(0, 255, 106, 0.15);
    border-color: rgba(0, 255, 106, 0.3);
}

.community-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.community-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.community-card p {
    font-size: 0.875rem;
    color: var(--white-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.community-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--green-bio);
    color: var(--black-void);
    border-radius: var(--radius-md);
    border: none;
    transition: var(--transition-fast);
    letter-spacing: 0.05em;
}

.community-btn:hover {
    background: var(--white-pure);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 255, 106, 0.3);
}

.newsletter-form {
    display: flex;
    gap: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--gray-border);
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    background: var(--gray-elevated);
    color: var(--white-pure);
    border: none;
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--white-muted);
}

.newsletter-form input:focus {
    background: var(--black-void);
}

.newsletter-form button {
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
    background: var(--green-bio);
    color: var(--black-void);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    background: var(--cyan);
}

/* ============================================
   SUPPORT SECTION
   ============================================ */
.support-section {
    background: var(--black-void);
}

.support-intro {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3rem;
}

.support-intro p {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white-muted);
    line-height: 1.7;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.support-card {
    border-radius: var(--radius-lg);
    background: var(--gray-card);
    border: 1px solid var(--gray-border);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.support-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.support-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--gray-elevated);
    border-bottom: 1px solid var(--gray-border);
}

.support-flag {
    font-size: 1.5rem;
}

.support-header h3 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.support-body {
    padding: 1.5rem;
}

.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-method {
    text-align: center;
}

.qr-code {
    margin-bottom: 0.5rem;
}

.qr-placeholder-box {
    width: 100%;
    aspect-ratio: 1;
    background: var(--gray-elevated);
    border: 1px dashed var(--gray-border);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    transition: var(--transition-fast);
}

.qr-placeholder-box:hover {
    border-color: var(--green-bio);
}

.qr-placeholder-box span {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--white-muted);
}

.qr-placeholder-box small {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
}

.payment-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
}

.donation-tiers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tier {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    padding: 0.6rem 0.8rem;
    background: var(--gray-elevated);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--green-bio);
}

.international-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.intl-btn {
    display: block;
    padding: 0.8rem;
    text-align: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: var(--radius-md);
    background: var(--gray-elevated);
    border: 1px solid var(--gray-border);
    transition: var(--transition-fast);
}

.intl-btn:hover {
    transform: translateY(-2px);
}

.intl-btn--kofi:hover {
    background: #FF5E5B;
    border-color: #FF5E5B;
    color: var(--white-pure);
    box-shadow: 0 8px 20px rgba(255, 94, 91, 0.3);
}

.intl-btn--paypal:hover {
    background: #0070BA;
    border-color: #0070BA;
    box-shadow: 0 8px 20px rgba(0, 112, 186, 0.3);
}

.intl-btn--patreon:hover {
    background: #FF424D;
    border-color: #FF424D;
    box-shadow: 0 8px 20px rgba(255, 66, 77, 0.3);
}

.crypto-note {
    font-size: 0.75rem;
    color: var(--white-muted);
    text-align: center;
}

.stream-support-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.stream-support-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1rem;
    background: var(--gray-elevated);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-border);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.stream-support-btn:hover {
    transform: translateY(-2px);
    border-color: var(--cyan);
    box-shadow: 0 8px 20px rgba(0, 240, 255, 0.15);
}

.platform-badge {
    padding: 0.25rem 0.5rem;
    font-size: 0.6rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
}

.platform-badge.twitch {
    background: var(--twitch-purple);
}

.platform-badge.kick {
    background: var(--kick-green);
    color: var(--black-void);
}

.bits-note {
    font-size: 0.75rem;
    color: var(--white-muted);
    text-align: center;
}

/* Transparency Section */
.support-transparency {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(0, 255, 106, 0.05), rgba(0, 240, 255, 0.05));
    border: 1px solid rgba(0, 255, 106, 0.2);
}

.support-transparency h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--green-bio);
}

.transparency-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bar-item {
    display: grid;
    grid-template-columns: 200px 1fr 50px;
    gap: 1rem;
    align-items: center;
}

.bar-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--white-muted);
}

.bar-track {
    height: 8px;
    background: var(--gray-elevated);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--cyan), var(--green-bio));
    border-radius: 4px;
    transition: width 1s var(--ease-out-expo);
}

.bar-percent {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--green-bio);
}

/* ============================================
   SOCIAL SECTION
   ============================================ */
.social-section {
    padding: 4rem;
    background: linear-gradient(180deg, var(--black-void), var(--black-surface));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-header {
    text-align: center;
    margin-bottom: 2rem;
}

.social-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white-pure);
    letter-spacing: 0.15em;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    border-radius: var(--radius-lg);
    background: var(--gray-card);
    border: 1px solid var(--gray-border);
    text-align: center;
    transition: var(--transition-smooth);
}

.social-card:hover {
    transform: translateY(-5px);
}

.social-card--twitch:hover { 
    box-shadow: 0 15px 40px rgba(145, 70, 255, 0.25);
    border-color: rgba(145, 70, 255, 0.4);
}
.social-card--kick:hover { 
    box-shadow: 0 15px 40px rgba(83, 252, 24, 0.25);
    border-color: rgba(83, 252, 24, 0.4);
}
.social-card--tiktok:hover { 
    box-shadow: 0 15px 40px rgba(254, 44, 85, 0.25);
    border-color: rgba(254, 44, 85, 0.4);
}
.social-card--instagram:hover { 
    box-shadow: 0 15px 40px rgba(221, 42, 123, 0.25);
    border-color: rgba(221, 42, 123, 0.4);
}
.social-card--youtube:hover { 
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.25);
    border-color: rgba(255, 0, 0, 0.4);
}
.social-card--twitter:hover { 
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}
.social-card--discord:hover { 
    box-shadow: 0 15px 40px rgba(88, 101, 242, 0.25);
    border-color: rgba(88, 101, 242, 0.4);
}
.social-card--facebook:hover { 
    box-shadow: 0 15px 40px rgba(24, 119, 242, 0.25);
    border-color: rgba(24, 119, 242, 0.4);
}

.social-icon-large {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.social-name {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.social-handle {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--cyan);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black-void);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    padding: 3rem 4rem;
    align-items: center;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
}

.footer-info {
    text-align: center;
}

.footer-text {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--white-muted);
    margin-bottom: 0.25rem;
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--cyan);
    letter-spacing: 0.1em;
}

.footer-code {
    text-align: right;
}

.code-snippet {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--green-bio);
    background: var(--gray-card);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-border);
}

.footer-credit {
    padding: 1.5rem;
    text-align: center;
    background: var(--gray-elevated);
}

.footer-credit p {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--white-muted);
}

.neuronax-link {
    color: var(--green-bio);
    font-weight: 700;
    transition: var(--transition-fast);
}

.neuronax-link:hover {
    color: var(--cyan);
    text-shadow: 0 0 15px var(--cyan-glow);
}

.footer-bar {
    display: flex;
    height: 4px;
}

.bar-segment {
    flex: 1;
}

.bar-segment--cyan { background: var(--cyan); }
.bar-segment--magenta { background: var(--magenta); }
.bar-segment--yellow { background: var(--yellow); }
.bar-segment--green { background: var(--green-bio); }

/* ============================================
   ANIMATIONS - PAGE LOAD
   ============================================ */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Stagger Animation Classes */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* Initial hidden state for animated elements */
.hero-badge,
.hero-title .title-line,
.hero-subtitle,
.hero-description,
.hero-cta,
.hero-social,
.hero-visual {
    opacity: 0;
    animation: fade-in-up 0.8s var(--ease-out-expo) forwards;
}

.hero-badge { animation-delay: 0.2s; }
.hero-title .title-line:nth-child(1) { animation-delay: 0.3s; }
.hero-title .title-line:nth-child(2) { animation-delay: 0.4s; }
.hero-title .title-line:nth-child(3) { animation-delay: 0.5s; }
.hero-subtitle { animation-delay: 0.6s; }
.hero-description { animation-delay: 0.7s; }
.hero-cta { animation-delay: 0.8s; }
.hero-social { animation-delay: 0.9s; }
.hero-visual { animation: scale-in 1s var(--ease-out-expo) 0.5s forwards; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .hero {
        padding: 8rem 4rem 5rem;
        gap: 3rem;
    }
    
    .hero-title .title-line {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
}

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 8rem 2rem 4rem;
    }
    
    .hero-visual { order: -1; }
    .visual-frame { max-width: 320px; }
    .hero-subtitle { justify-content: center; }
    .hero-cta { justify-content: center; }
    .hero-social { justify-content: center; }
    .hero-description { margin-left: auto; margin-right: auto; }
    
    .content-grid { grid-template-columns: 1fr; }
    .community-grid { grid-template-columns: 1fr; }
    .support-grid { grid-template-columns: 1fr; }
    .social-links-grid { grid-template-columns: repeat(2, 1fr); }
    
    .bar-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-code { text-align: center; }
}

@media (max-width: 768px) {
    section { padding: 4rem 1.5rem; }
    
    .nav-brutal {
        top: 10px;
        width: calc(100% - 20px);
        padding: 0.8rem 1rem;
        border-radius: var(--radius-lg);
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(20px);
        border-radius: var(--radius-lg);
        padding: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.8rem;
    }
    
    .nav-mobile-toggle {
        display: flex;
    }
    
    .hero {
        padding: 7rem 1.5rem 3rem;
    }
    
    .hero-title .title-line {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    
    .section-header { flex-wrap: wrap; }
    .section-line { width: 100%; order: 3; margin-top: 1rem; }
    
    .stream-links { grid-template-columns: 1fr; }
    .social-links-grid { grid-template-columns: 1fr; }
    .payment-methods { grid-template-columns: 1fr; }
    
    .dna-helix {
        width: 150px;
        height: 150px;
    }
    
    .helix-core {
        width: 45px;
        height: 45px;
    }
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--black-void); }
::-webkit-scrollbar-thumb { 
    background: var(--gray-card);
    border-radius: 5px;
    border: 2px solid var(--black-void);
}
::-webkit-scrollbar-thumb:hover { 
    background: var(--green-bio);
}

/* Print */
@media print {
    .scanlines, .noise, .bio-particles { display: none; }
    body { background: white; color: black; }
}
