/* ==========================================
   COGNIS GAMES - MODERN GAMING STUDIO DESIGN
   Professional & Immersive Experience
   ========================================== */

/* ==========================================
   CSS CUSTOM PROPERTIES
   ========================================== */

:root {
    /* Colors - Cognis Unique Identity */
    --color-primary: #39FF14;
    --color-primary-hover: #2BE30F;
    --color-primary-light: #5DFF47;
    --color-primary-dark: #28CC0F;
    
    --color-secondary: #FF6B35;
    --color-secondary-hover: #E65A2E;
    
    --color-dark: #0D0D0D;
    --color-dark-light: #1A1A1A;
    --color-dark-lighter: #262626;
    
    --color-text: #FFFFFF;
    --color-text-secondary: #CCCCCC;
    --color-text-muted: #999999;
    
    --color-border: #333333;
    --color-accent: #39FF14;
    
    --color-surface: #1A1A1A;
    --color-surface-elevated: #262626;
    --color-surface-hover: #333333;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #39FF14 0%, #28CC0F 100%);
    --gradient-secondary: linear-gradient(135deg, #FF6B35 0%, #E65A2E 100%);
    --gradient-accent: linear-gradient(135deg, #39FF14 0%, #FFEB3B 100%);
    --gradient-dark: linear-gradient(180deg, #0D0D0D 0%, #1A1A1A 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(57, 255, 20, 0.08) 0%, rgba(255, 107, 53, 0.08) 100%);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --font-size-xs: 0.75rem;     /* 12px */
    --font-size-sm: 0.875rem;    /* 14px */
    --font-size-base: 1rem;      /* 16px */
    --font-size-lg: 1.125rem;    /* 18px */
    --font-size-xl: 1.25rem;     /* 20px */
    --font-size-2xl: 1.5rem;     /* 24px */
    --font-size-3xl: 2rem;       /* 32px */
    --font-size-4xl: 2.5rem;     /* 40px */
    --font-size-5xl: 3.5rem;     /* 56px */
    --font-size-6xl: 4rem;       /* 64px */
    
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    --line-height-tight: 1.2;
    --line-height-base: 1.6;
    --line-height-relaxed: 1.8;
    
    --letter-spacing-tight: -0.03em;
    --letter-spacing-base: 0;
    --letter-spacing-wide: 0.05em;
    
    /* Spacing Scale */
    --space-1: 0.25rem;   /* 4px */
    --space-2: 0.5rem;    /* 8px */
    --space-3: 0.75rem;   /* 12px */
    --space-4: 1rem;      /* 16px */
    --space-5: 1.25rem;   /* 20px */
    --space-6: 1.5rem;    /* 24px */
    --space-8: 2rem;      /* 32px */
    --space-10: 2.5rem;   /* 40px */
    --space-12: 3rem;     /* 48px */
    --space-16: 4rem;     /* 64px */
    --space-20: 5rem;     /* 80px */
    --space-24: 6rem;     /* 96px */
    --space-32: 8rem;     /* 128px */
    
    /* Border Radius - Modern */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(57, 255, 20, 0.15);
    --shadow-md: 0 4px 16px rgba(57, 255, 20, 0.2);
    --shadow-lg: 0 8px 32px rgba(57, 255, 20, 0.25);
    --shadow-xl: 0 16px 48px rgba(57, 255, 20, 0.3);
    --shadow-glow: 0 0 25px rgba(57, 255, 20, 0.5);
    --shadow-glow-orange: 0 0 25px rgba(255, 107, 53, 0.5);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 600ms cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Animation Easings */
    --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-quart: cubic-bezier(0.76, 0, 0.24, 1);
    
    /* Layout */
    --container-max: 1280px;
    --header-height: 80px;
    
    /* Shorthand aliases for compatibility */
    --primary: var(--color-primary);
    --primary-hover: var(--color-primary-hover);
    --primary-dark: var(--color-primary-dark);
    --secondary: var(--color-secondary);
    --background: var(--color-dark);
    --surface: var(--color-surface);
    --surface-light: var(--color-surface-elevated);
    --text-primary: var(--color-text);
    --text-secondary: var(--color-text-secondary);
    --text-muted: var(--color-text-muted);
    --border: var(--color-border);
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-base);
    color: var(--color-text);
    background: var(--gradient-dark);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    position: relative;
}

/* Technical Grid Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(57, 255, 20, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(57, 255, 20, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 1;
    animation: gridPulse 10s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

body > * {
    position: relative;
    z-index: 1;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* ==========================================
   LAYOUT UTILITIES
   ========================================== */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-8);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-6);
    }
}

.section {
    padding: var(--space-24) 0;
}

/* ==========================================
   TYPOGRAPHY UTILITIES
   ========================================== */

.text-accent {
    color: var(--color-primary-light);
}

.text-lead {
    font-size: var(--font-size-xl);
    color: var(--color-text);
    line-height: var(--line-height-relaxed);
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-height);
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 2px solid var(--color-primary);
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(57, 255, 20, 0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.logo-icon {
    flex-shrink: 0;
    transition: all 0.5s ease;
    position: relative;
}

.nav-logo:hover .logo-icon {
    transform: rotate(180deg);
    filter: drop-shadow(0 0 15px rgba(57, 255, 20, 0.8));
}

.nav-logo::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: width 0.4s ease;
}

.nav-logo:hover::after {
    width: 100%;
    animation: loadingBarScan 1.2s ease-in-out infinite;
}

@keyframes loadingBarScan {
    0%, 100% { opacity: 1; box-shadow: 0 0 5px var(--color-primary); }
    50% { opacity: 0.5; box-shadow: 0 0 15px var(--color-primary); }
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    color: white;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--letter-spacing-wide);
    border-radius: var(--radius-md);
}

.logo-text {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.nav-link {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-secondary);
    padding: var(--space-2) 0;
    position: relative;
    transition: color var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-base);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.8);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-text);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: var(--space-3) var(--space-6);
    background: var(--color-primary);
    color: #000000;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    border-radius: 0;
    transition: all var(--transition-base);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid var(--color-primary);
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.7);
}

/* Nav Actions Container */
.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

/* Secondary CTA (Login) */
.nav-cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: var(--space-3) var(--space-6);
    background: transparent;
    color: var(--color-text);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    border: 1px solid var(--color-surface-elevated);
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
}

.nav-cta-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(57, 255, 20, 0.05);
}

/* ===========================================
   SECTION TABS NAVIGATION
   =========================================== */

.section-tabs {
    background: var(--color-dark);
    border-bottom: 1px solid var(--color-surface-elevated);
    position: sticky;
    top: var(--header-height);
    z-index: 90;
}

.section-tabs .container {
    padding: 0;
}

.section-tabs .tabs-list {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.section-tabs .tabs-list::-webkit-scrollbar {
    display: none;
}

.section-tabs .tab-btn {
    display: inline-flex;
    align-items: center;
    padding: 20px 32px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--color-text-secondary);
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
}

.section-tabs .tab-btn:hover {
    color: var(--color-text);
    background: rgba(57, 255, 20, 0.02);
}

.section-tabs .tab-btn.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

@media (max-width: 768px) {
    .section-tabs .tab-btn {
        padding: 16px 20px;
        font-size: 0.75rem;
    }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
}

.toggle-bar {
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    transition: all var(--transition-base);
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4) var(--space-6);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-primary);
    color: #000000;
    font-weight: var(--font-weight-bold);
    box-shadow: 
        0 0 20px rgba(57, 255, 20, 0.5),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid var(--color-primary);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 0 30px rgba(57, 255, 20, 0.8),
        0 4px 12px rgba(0, 0, 0, 0.5),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3);
    animation: buttonPulse 1.5s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 0 30px rgba(57, 255, 20, 0.8), 0 4px 12px rgba(0, 0, 0, 0.5); }
    50% { box-shadow: 0 0 50px rgba(57, 255, 20, 1), 0 6px 20px rgba(0, 0, 0, 0.7); }
}

.btn-ghost {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-ghost::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(57, 255, 20, 0.15);
    transition: width var(--transition-base);
    z-index: -1;
}

.btn-ghost:hover::before {
    width: 100%;
}

.btn-ghost:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 
        0 0 20px rgba(57, 255, 20, 0.4),
        inset 0 0 20px rgba(57, 255, 20, 0.1);
}

.btn-large {
    padding: var(--space-5) var(--space-8);
    font-size: var(--font-size-base);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '01001000 01000101 01001100 01001100 01001111 \A01010111 01001111 01010010 01001100 01000100\A01000011 01001111 01000111 01001110 01001001\A01010011 00100000 01000111 01000001 01001101\A01000101 01010011 00100000 00110010 00110000\A00110010 00110110';
    position: absolute;
    top: 10%;
    right: -5%;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    color: var(--color-primary);
    opacity: 0.04;
    white-space: pre;
    line-height: 2;
    letter-spacing: 0.3em;
    z-index: 0;
    transform: rotate(15deg);
    animation: dataStream 20s linear infinite;
    pointer-events: none;
}

@keyframes dataStream {
    0% { opacity: 0.04; transform: rotate(15deg) translateY(0); }
    50% { opacity: 0.08; transform: rotate(15deg) translateY(-20px); }
    100% { opacity: 0.04; transform: rotate(15deg) translateY(0); }
}

/* Hexagonal Technical Pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(30deg, transparent 48%, rgba(57, 255, 20, 0.05) 49%, rgba(57, 255, 20, 0.05) 51%, transparent 52%),
        linear-gradient(90deg, transparent 48%, rgba(57, 255, 20, 0.05) 49%, rgba(57, 255, 20, 0.05) 51%, transparent 52%),
        linear-gradient(150deg, transparent 48%, rgba(57, 255, 20, 0.05) 49%, rgba(57, 255, 20, 0.05) 51%, transparent 52%);
    background-size: 80px 140px;
    opacity: 0.6;
    animation: hexMove 30s linear infinite;
    will-change: transform;
}

/* Parallax class for JS */
.parallax-layer {
    transition: transform 0.1s ease-out;
    will-change: transform;
}

@keyframes hexMove {
    0% { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: 80px 140px, -80px -140px, 80px -140px; }
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-20);
    align-items: start;
    padding-top: var(--space-20);
}

.hero-label {
    display: inline-block;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: var(--space-6);
    padding: var(--space-2) var(--space-5);
    background: rgba(57, 255, 20, 0.05);
    border-left: 3px solid var(--color-primary);
    border-right: 3px solid var(--color-primary);
    position: relative;
    font-family: 'Courier New', monospace;
}

.hero-label {
    animation: labelGlitch 1s var(--ease-out-expo) both;
}

@keyframes labelGlitch {
    0% {
        opacity: 0;
        transform: translateX(-20px);
        filter: blur(4px);
    }
    50% {
        transform: translateX(2px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

.hero-label::before,
.hero-label::after {
    content: '/';
    color: var(--color-primary);
    font-weight: bold;
    opacity: 0.5;
    animation: blink 2s step-end infinite;
}

.hero-label::before { margin-right: 8px; }
.hero-label::after { margin-left: 8px; animation-delay: 1s; }

.hero-title {
    font-size: var(--font-size-6xl);
    font-weight: var(--font-weight-extrabold);
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--color-text);
    margin-bottom: var(--space-6);
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.8);
    position: relative;
    animation: heroTitleReveal 1s var(--ease-out-expo) forwards;
}

.hero-title.typing-cursor::after {
    content: '|';
    color: var(--color-primary);
    animation: cursorBlink 1s infinite;
    margin-left: 4px;
}

@keyframes cursorBlink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

@keyframes heroTitleReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
        letter-spacing: 0.2em;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: -0.04em;
    }
}

.hero-description {
    animation: fadeInUp 1s var(--ease-out-expo) 0.3s both;
}

.hero-actions {
    animation: fadeInUp 1s var(--ease-out-expo) 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
    max-width: 600px;
    margin-bottom: var(--space-10);
    border-left: 3px solid var(--color-primary);
    padding-left: var(--space-6);
    background: rgba(57, 255, 20, 0.03);
    padding: var(--space-6);
    padding-left: var(--space-6);
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
}

.hero-visual {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    margin-top: -80px;
}

/* Glowing orbs effect around hero logo */
.hero-visual::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
    z-index: 0;
}

.hero-visual::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out 2s infinite;
    z-index: 0;
}

.hero-graphic {
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.graphic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}

.grid-cell {
    width: 80px;
    height: 80px;
    background-color: var(--color-surface);
    border-radius: var(--radius-lg);
    transition: all var(--transition-slow);
}

.grid-cell.active {
    background-color: var(--color-primary);
}

.grid-cell:hover {
    background-color: var(--color-primary-light);
    transform: scale(1.05);
}

/* ==========================================
   STATS SECTION
   ========================================== */

.stats {
    background: #0D0D0D;
    padding: var(--space-16) 0;
    border-top: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(57, 255, 20, 0.03) 40px, rgba(57, 255, 20, 0.03) 41px);
    animation: scanline 8s linear infinite;
}

@keyframes scanline {
    0% { transform: translateX(0); }
    100% { transform: translateX(40px); }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-12);
    align-items: start;
}

.stat-item:nth-child(2) {
    margin-top: var(--space-12);
}

.stat-item:nth-child(3) {
    margin-top: var(--space-8);
}

.stat-item:nth-child(4) {
    margin-top: var(--space-16);
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::before {
    content: '> ';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -24px;
    font-family: 'Courier New', monospace;
    color: var(--color-primary);
    font-size: var(--font-size-lg);
    opacity: 0.6;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 49%, 100% { opacity: 0.6; }
    50%, 99% { opacity: 0; }
}

.stat-number {
    display: block;
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--color-primary);
    margin-bottom: var(--space-2);
    font-family: 'Courier New', monospace;
    text-shadow: 
        0 0 15px rgba(57, 255, 20, 0.8),
        0 0 30px rgba(57, 255, 20, 0.4);
    letter-spacing: 0.05em;
    animation: counterPop 0.6s var(--ease-out-back) both;
}

@keyframes counterPop {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(20px);
    }
    50% {
        transform: scale(1.1) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.stat-item:nth-child(1) .stat-number { animation-delay: 0.1s; }
.stat-item:nth-child(3) .stat-number { animation-delay: 0.2s; }
.stat-item:nth-child(5) .stat-number { animation-delay: 0.3s; }
.stat-item:nth-child(7) .stat-number { animation-delay: 0.4s; }

.stat-label {
    opacity: 0;
    animation: fadeInUp 0.6s var(--ease-out-expo) 0.3s both;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.stat-divider {
    width: 1px;
    height: 48px;
    background-color: var(--color-border);
}

/* ==========================================
   SECTION HEADERS
   ========================================== */

.section-header {
    text-align: left;
    margin-bottom: var(--space-20);
    max-width: 900px;
    position: relative;
    padding-left: var(--space-8);
    cursor: default;
    transition: all 0.3s ease;
}

.section-header:hover {
    animation: glitchHeader 0.6s ease-in-out;
}

@keyframes glitchHeader {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); text-shadow: 2px 0 var(--color-primary), -2px 0 var(--color-secondary); }
    40% { transform: translate(-2px, -2px); text-shadow: -2px 0 var(--color-primary), 2px 0 var(--color-secondary); }
    60% { transform: translate(2px, 2px); text-shadow: 2px 2px var(--color-primary), -2px -2px var(--color-secondary); }
    80% { transform: translate(2px, -2px); text-shadow: -2px 2px var(--color-primary), 2px -2px var(--color-secondary); }
}

.section-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--color-primary);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.6);
}

.section-label {
    display: inline-block;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: var(--space-4);
    padding: var(--space-2) 0;
    font-family: 'Courier New', monospace;
    position: relative;
}

.section-label::before {
    content: '// ';
    color: var(--color-text-muted);
    margin-right: 4px;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--color-primary);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.8);
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-extrabold);
    line-height: var(--line-height-tight);
    color: var(--color-text);
    margin-bottom: var(--space-6);
}

.section-description {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: var(--line-height-relaxed);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: var(--space-20);
    align-items: start;
}

.about-principles {
    margin-top: var(--space-12);
    position: sticky;
    top: calc(var(--header-height) + var(--space-8));
}

.about-content p {
    margin-bottom: var(--space-6);
    color: var(--color-text-secondary);
}

.about-content p.text-lead {
    color: var(--color-text);
    margin-bottom: var(--space-8);
}

.about-principles {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05) 0%, rgba(0, 153, 255, 0.05) 100%);
    padding: var(--space-10);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 240, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.about-principles::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.principles-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-8);
    position: relative;
    z-index: 1;
}

.principles-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.principle-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    position: relative;
    z-index: 1;
}

.principle-marker {
    width: 10px;
    height: 10px;
    background: var(--gradient-primary);
    border-radius: 2px;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.principle-text {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
}

/* ==========================================
   MANIFESTO SECTION
   ========================================== */

.manifesto {
    background-color: var(--color-dark-light);
}

.manifesto-content {
    max-width: 100%;
    margin: 0;
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-20);
    align-items: start;
}

.manifesto-quote {
    margin: var(--space-12) 0;
}

.manifesto-quote p {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-semibold);
    line-height: 1.3;
    color: #FFFFFF;
    margin-bottom: var(--space-6);
    border-left: 4px solid var(--color-primary);
    padding-left: var(--space-6);
    position: relative;
}

.manifesto-quote p::before {
    content: '"';
    position: absolute;
    left: -20px;
    top: -20px;
    font-size: 80px;
    color: var(--color-primary);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.manifesto-text {
    margin-bottom: var(--space-12);
}

.manifesto-text p {
    font-size: var(--font-size-lg);
    color: #DDDDDD;
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-6);
}

.beliefs-title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-muted);
    margin-bottom: var(--space-6);
}

.beliefs-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-bottom: var(--space-12);
}

.belief-item {
    padding: var(--space-3) var(--space-5);
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.belief-item:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 240, 255, 0.2);
}

.belief-text {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-text);
}

.manifesto-statement {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary-light);
}

/* ==========================================
   TECHNOLOGY SECTION
   ========================================== */

.technology {
    background-color: var(--color-dark);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    align-items: start;
}

.tech-card:nth-child(1) { margin-top: 0; }
.tech-card:nth-child(2) { margin-top: var(--space-12); }
.tech-card:nth-child(3) { margin-top: var(--space-6); }
.tech-card:nth-child(4) { margin-top: var(--space-8); }
.tech-card:nth-child(5) { margin-top: 0; }
.tech-card:nth-child(6) { margin-top: var(--space-16); }

.tech-card {
    padding: var(--space-8);
    background: #1A1A1A;
    border: 1px solid #333333;
    border-left: 3px solid var(--color-primary);
    border-radius: 0;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    counter-increment: tech-counter;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.tech-card::after {
    content: '0x' counter(tech-counter, upper-hex);
    position: absolute;
    top: var(--space-3);
    right: var(--space-4);
    font-family: 'Courier New', monospace;
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    opacity: 0.3;
    letter-spacing: 0.1em;
    transition: all var(--transition-base);
}

.tech-card:hover::after {
    color: var(--color-primary);
    opacity: 0.8;
}

.tech-card:hover::before,
.tech-card:hover::after {
    opacity: 1;
}

.tech-card {
    transition: all 0.4s var(--ease-out-expo);
}

.tech-card:hover {
    border-left-color: var(--color-primary);
    transform: translateX(12px) scale(1.02);
    box-shadow: 
        -6px 0 0 var(--color-primary),
        0 0 50px rgba(57, 255, 20, 0.2),
        0 10px 40px rgba(0, 0, 0, 0.5);
    background: #262626;
}

.tech-card:hover .tech-title {
    color: var(--color-primary);
    transform: translateX(4px);
}

.tech-card .tech-title,
.tech-card .tech-description {
    transition: all 0.3s var(--ease-out-expo);
}

.tech-card:hover .tech-description {
    color: var(--color-text);
}

.tech-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: #000000;
    border-radius: 0;
    margin-bottom: var(--space-6);
    font-size: 24px;
    font-weight: bold;
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
    box-shadow: 
        4px 4px 0 rgba(0, 0, 0, 0.5),
        0 0 20px rgba(57, 255, 20, 0.3);
}

.tech-card:hover .tech-icon {
    transform: translate(-4px, -4px);
    box-shadow: 
        8px 8px 0 rgba(0, 0, 0, 0.5),
        0 0 30px rgba(57, 255, 20, 0.6);
}

.tech-title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
    margin-bottom: var(--space-3);
    position: relative;
    z-index: 1;
}

.tech-description {
    font-size: var(--font-size-sm);
    color: #CCCCCC;
    line-height: var(--line-height-relaxed);
    position: relative;
    z-index: 1;
}

/* ==========================================
   VISION SECTION
   ========================================== */

.vision {
    background-color: var(--color-surface);
}

.vision-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.vision-title {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-base);
    color: var(--color-text);
    margin: var(--space-8) 0 var(--space-12);
}

.vision-statement p {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-2);
}

.vision-statement p:first-child {
    color: var(--color-text-secondary);
}

/* ==========================================
   PROJECTS SECTION
   ========================================== */

.projects {
    background-color: var(--color-dark);
}

.projects-content {
    max-width: 700px;
    margin: 0 auto;
}

.project-placeholder {
    background-color: var(--color-surface);
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-16);
    text-align: center;
}

.placeholder-label {
    display: inline-block;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    margin-bottom: var(--space-6);
}

.placeholder-title {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
    margin-bottom: var(--space-4);
}

.placeholder-text {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-8);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================
   COMMUNITY SECTION
   ========================================== */

.community {
    background-color: var(--color-dark-light);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    margin-bottom: var(--space-20);
}

.community-card:nth-child(1) { grid-column: 1 / 2; }
.community-card:nth-child(2) { grid-column: 2 / 3; margin-top: var(--space-12); }
.community-card:nth-child(3) { grid-column: 1 / 2; margin-top: -var(--space-8); }
.community-card:nth-child(4) { grid-column: 2 / 3; }

.community-card {
    padding: var(--space-8);
    background: #1A1A1A;
    border: 1px solid #333333;
    border-top: 2px solid var(--color-primary);
    border-radius: 0;
    transition: all var(--transition-base);
    position: relative;
    overflow: visible;
}

.community-card::before {
    content: '┌───';
    position: absolute;
    top: -1px;
    left: -1px;
    font-family: 'Courier New', monospace;
    color: var(--color-primary);
    font-size: 12px;
    line-height: 1;
    opacity: 0.6;
    transition: all var(--transition-base);
}

.community-card::after {
    content: '───┘';
    position: absolute;
    bottom: -1px;
    right: -1px;
    font-family: 'Courier New', monospace;
    color: var(--color-primary);
    font-size: 12px;
    line-height: 1;
    opacity: 0.6;
    transition: all var(--transition-base);
}

.community-card:hover::before,
.community-card:hover::after {
    opacity: 1;
    text-shadow: 0 0 10px var(--color-primary);
}
    transition: opacity var(--transition-base);
}

.community-card:hover::after {
    opacity: 1;
}

.community-card:hover {
    transform: translateY(-4px);
    border-top-width: 4px;
    box-shadow: 
        0 4px 0 var(--color-primary),
        0 0 30px rgba(57, 255, 20, 0.2);
}

.community-title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
    margin-bottom: var(--space-3);
}

.community-text {
    font-size: var(--font-size-sm);
    color: #CCCCCC;
    line-height: var(--line-height-relaxed);
}

.community-cta {
    background: var(--color-primary);
    border-radius: 0;
    padding: var(--space-16);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 40px rgba(57, 255, 20, 0.4),
        inset 0 0 60px rgba(255, 255, 255, 0.1);
    border: 2px solid var(--color-primary);
    cursor: pointer;
    transition: transform 0.3s var(--ease-out-expo);
}

.community-cta:hover {
    transform: scale(1.02);
}

/* Ripple effect on click */
.community-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.community-cta:active::after {
    width: 300px;
    height: 300px;
}

.community-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.03) 10px,
        rgba(0, 0, 0, 0.03) 20px
    );
    animation: diagonalMove 20s linear infinite;
}

@keyframes diagonalMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

.cta-title {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-extrabold);
    color: #000000;
    margin-bottom: var(--space-4);
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.cta-text {
    font-size: var(--font-size-base);
    color: rgba(0, 0, 0, 0.8);
    max-width: 500px;
    margin: 0 auto var(--space-8);
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.community-cta .btn-primary {
    background-color: #000000;
    color: var(--color-primary);
    position: relative;
    z-index: 1;
    border-color: #000000;
}

.community-cta .btn-primary:hover {
    background-color: #1A1A1A;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background-color: var(--color-dark);
    padding: var(--space-16) 0 var(--space-8);
    border-top: 3px solid var(--color-primary);
    position: relative;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--color-primary) 0%, 
        var(--color-primary) 33%, 
        transparent 33%, 
        transparent 34%, 
        var(--color-primary) 34%, 
        var(--color-primary) 66%, 
        transparent 66%, 
        transparent 67%, 
        var(--color-primary) 67%);
    animation: statusBar 2s linear infinite;
}

@keyframes statusBar {
    0% { background-position: 0 0; }
    100% { background-position: 100px 0; }
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-16);
    margin-bottom: var(--space-12);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.footer-logo .logo-mark {
    width: 36px;
    height: 36px;
    font-size: var(--font-size-xs);
}

.footer-logo .logo-text {
    font-size: var(--font-size-base);
}

.footer-tagline {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-4);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.footer-social .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid rgba(57, 255, 20, 0.2);
    color: var(--color-primary);
    transition: all var(--transition-base);
}

.footer-social .social-link:hover {
    background: var(--color-primary);
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.footer-title {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
    margin-bottom: var(--space-5);
}

.footer-list li {
    margin-bottom: var(--space-3);
}

.footer-list a {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    transition: color var(--transition-base);
}

.footer-list a:hover {
    color: var(--color-text);
}

.footer-bottom {
    padding-top: var(--space-8);
    border-top: 1px solid var(--color-border);
    text-align: center;
    position: relative;
}

.footer-bottom::before {
    content: '[SYS]';
    position: absolute;
    left: 0;
    top: var(--space-8);
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: var(--color-primary);
    opacity: 0.5;
}

.footer-bottom::after {
    content: '[/SYS]';
    position: absolute;
    right: 0;
    top: var(--space-8);
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: var(--color-primary);
    opacity: 0.5;
}

.copyright {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-2);
    font-family: 'Courier New', monospace;
    letter-spacing: 0.05em;
}

.copyright::before {
    content: '$ ';
    color: var(--color-primary);
    margin-right: 4px;
}

.footer-note {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-family: 'Courier New', monospace;
    animation: subtleGlitch 5s infinite;
}

@keyframes subtleGlitch {
    0%, 90%, 100% { opacity: 0.6; }
    91%, 93%, 95% { opacity: 1; color: var(--color-primary); }
    92%, 94% { opacity: 0.3; }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .community-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }
    
    /* Games Section Tablet */
    .released-games-grid {
        grid-template-columns: 1fr;
    }
    
    .game-card-released {
        grid-template-columns: 250px 1fr;
    }
    
    .devlog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --font-size-5xl: 2.5rem;
        --font-size-4xl: 2rem;
        --font-size-3xl: 1.75rem;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        background-color: var(--color-dark);
        padding: var(--space-8);
        transform: translateX(-100%);
        transition: transform var(--transition-slow);
        gap: var(--space-6);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: var(--space-4);
    }
    
    .nav-link {
        font-size: var(--font-size-lg);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .toggle-bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .toggle-bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .toggle-bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-title {
        font-size: var(--font-size-4xl);
    }
    
    /* Responsive Asymmetric Layouts */
    .hero .container {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
    
    .hero-visual {
        margin-top: 0;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-6);
    }
    
    .stat-item:nth-child(2),
    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        margin-top: 0;
    }
    
    .stat-divider {
        display: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
    
    .about-principles {
        margin-top: 0;
        position: static;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-card:nth-child(n) {
        margin-top: 0;
    }
    
    .community-grid {
        grid-template-columns: 1fr;
    }
    
    .community-card:nth-child(n) {
        margin-top: 0 !important;
        grid-column: 1 / -1;
    }
    
    .manifesto-content {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
    
    .section-header {
        padding-left: var(--space-6);
    }
    
    .section-header::before {
        width: 3px;
    }
    
    .section::before {
        font-size: 150px;
        right: -30px;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: var(--space-6);
        text-align: center;
    }
    
    /* Games Section Responsive */
    .released-games-grid {
        grid-template-columns: 1fr;
    }
    
    .game-card-released {
        grid-template-columns: 1fr;
    }
    
    .game-cover {
        min-height: 200px;
    }
    
    .devlog-grid {
        grid-template-columns: 1fr;
    }
    
    .game-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .game-card-placeholder {
        min-height: 150px;
    }
    
    .games-category-dev {
        margin: 0 calc(-1 * var(--space-6));
        padding: var(--space-8) var(--space-6);
    }
    
    .section {
        padding: var(--space-16) 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-4);
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .beliefs-grid {
        flex-direction: column;
    }
    
    .manifesto-quote p {
        font-size: var(--font-size-2xl);
    }
}

/* ==========================================
   ANIMATIONS & INTERACTIONS
   ========================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes pulse-delay {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

.node-pulse {
    animation: pulse 3s ease-in-out infinite;
}

.node-pulse-delay {
    animation: pulse-delay 3s ease-in-out infinite 1.5s;
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================
   NEW SECTIONS - PILLARS / WHAT WE DO
   ========================================== */

.what-we-do {
    background-color: var(--color-dark-light);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.pillar-card {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 0;
    padding: var(--space-10);
    transition: all var(--transition-base);
    position: relative;
    overflow: visible;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 50px;
    height: 50px;
    border-top: 2px solid var(--color-primary);
    border-left: 2px solid var(--color-primary);
    opacity: 0;
    transition: all 0.4s ease;
}

.pillar-card::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 50px;
    height: 50px;
    border-bottom: 2px solid var(--color-primary);
    border-right: 2px solid var(--color-primary);
    opacity: 0;
    transition: all 0.4s ease;
}

.pillar-card:hover::before,
.pillar-card:hover::after {
    opacity: 1;
    width: 100%;
    height: 100%;
}

.pillar-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
}

.pillar-number {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    color: var(--color-dark);
    background: var(--color-primary);
    padding: var(--space-2) var(--space-4);
    margin-bottom: var(--space-6);
    letter-spacing: var(--letter-spacing-wide);
    display: inline-block;
    font-family: 'Courier New', monospace;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
    text-transform: uppercase;
    position: relative;
}

.pillar-number::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.pillar-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
    margin-bottom: var(--space-4);
}

.pillar-description {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-4);
    line-height: var(--line-height-relaxed);
}

.pillar-detail {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: var(--line-height-relaxed);
}

.pillar-list {
    margin-top: var(--space-4);
    padding-left: var(--space-5);
}

.pillar-list li {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2);
    position: relative;
}

.pillar-list li::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 8px;
    width: 4px;
    height: 4px;
    background-color: var(--color-primary);
    border-radius: 1px;
}

/* ==========================================
   GAMES SECTION
   ========================================== */

.games {
    background: var(--color-dark);
    position: relative;
}

.games::before {
    content: 'GAMES';
    position: absolute;
    top: 100px;
    right: -20px;
    font-size: 200px;
    font-weight: 900;
    color: rgba(57, 255, 20, 0.02);
    letter-spacing: -0.05em;
    pointer-events: none;
    z-index: 0;
}

.games-category {
    margin-bottom: var(--space-24);
}

.games-category-dev {
    background: rgba(57, 255, 20, 0.02);
    margin: 0 calc(-1 * var(--space-8));
    padding: var(--space-12) var(--space-8);
    border-top: 1px solid rgba(57, 255, 20, 0.1);
    border-bottom: 1px solid rgba(57, 255, 20, 0.1);
}

.category-header {
    margin-bottom: var(--space-10);
}

.category-status {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: 'Courier New', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    padding: var(--space-2) var(--space-4);
    margin-bottom: var(--space-4);
}

.category-status.status-released {
    background: rgba(57, 255, 20, 0.1);
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.category-status.status-dev {
    background: rgba(255, 107, 53, 0.1);
    color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.category-title {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-bottom: var(--space-2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.category-description {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
}

/* Released Games Grid */
.released-games-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-6);
}

/* Game Card - Released */
.game-card-released {
    display: grid;
    grid-template-columns: 300px 1fr;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.game-card-released::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
}

.game-card-released:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(57, 255, 20, 0.1);
}

.game-cover {
    position: relative;
    height: 100%;
    min-height: 350px;
    overflow: hidden;
}

.game-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.game-card-released:hover .game-cover-img {
    transform: scale(1.05);
}

.game-cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--space-4);
    display: flex;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.game-platform {
    font-family: 'Courier New', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    background: var(--color-primary);
    color: var(--color-dark);
    padding: var(--space-1) var(--space-2);
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: #FFD700;
}

.game-rating svg {
    fill: #FFD700;
}

.game-info {
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
}

.game-meta {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-3);
}

.game-genre,
.game-year {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

.game-genre::before {
    content: '// ';
    color: var(--color-primary);
}

.game-title {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.game-description {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-5);
    flex-grow: 1;
}

.game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
}

.game-tag {
    font-family: 'Courier New', monospace;
    font-size: 10px;
    letter-spacing: 0.05em;
    padding: var(--space-1) var(--space-3);
    background: rgba(57, 255, 20, 0.1);
    color: var(--color-primary);
    border: 1px solid rgba(57, 255, 20, 0.3);
}

.game-actions {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.btn-game {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    font-size: var(--font-size-sm);
}

.game-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-border);
}

.game-stat {
    text-align: center;
}

.game-stat-value {
    display: block;
    font-family: 'Courier New', monospace;
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 2px;
}

.game-stat-label {
    font-size: 10px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Game Placeholder Card */
.game-card-placeholder {
    border: 2px dashed var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    transition: all 0.3s ease;
}

.game-card-placeholder:hover {
    border-color: var(--color-primary);
    background: rgba(57, 255, 20, 0.02);
}

.placeholder-content {
    text-align: center;
}

.placeholder-icon {
    display: block;
    font-size: 48px;
    color: var(--color-text-muted);
    margin-bottom: var(--space-4);
    font-weight: 300;
}

.placeholder-text {
    font-family: 'Courier New', monospace;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}

/* Devlog Grid */
.devlog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

/* Devlog Card */
.devlog-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-secondary);
    padding: var(--space-6);
    position: relative;
    transition: all 0.3s ease;
}

.devlog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -3px;
    width: 3px;
    height: 0;
    background: var(--color-primary);
    transition: height 0.4s ease;
}

.devlog-card:hover::before {
    height: 100%;
}

.devlog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.devlog-card-new {
    border-left-color: var(--color-primary);
    background: linear-gradient(135deg, var(--color-surface) 0%, rgba(57, 255, 20, 0.03) 100%);
}

.devlog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-4);
}

.devlog-project {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.project-codename {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-secondary);
    letter-spacing: 0.1em;
}

.project-phase {
    font-size: 10px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.devlog-date {
    text-align: right;
    padding: var(--space-2) var(--space-3);
    background: var(--color-dark);
    border: 1px solid var(--color-border);
}

.date-day {
    display: block;
    font-family: 'Courier New', monospace;
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1;
}

.date-month {
    font-size: 10px;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
}

.devlog-progress {
    margin-bottom: var(--space-4);
}

.progress-bar {
    height: 4px;
    background: var(--color-dark);
    overflow: hidden;
    margin-bottom: var(--space-2);
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    position: relative;
    transition: width 0.6s ease;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5));
    animation: progressGlow 1.5s ease-in-out infinite;
}

@keyframes progressGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.progress-text {
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: var(--color-primary);
    letter-spacing: 0.05em;
}

.devlog-title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-bottom: var(--space-3);
}

.devlog-excerpt {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-4);
}

.devlog-changelog {
    margin-bottom: var(--space-4);
    padding: var(--space-3);
    background: var(--color-dark);
    border-left: 2px solid var(--color-border);
}

.changelog-item {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    color: var(--color-text-secondary);
    padding: var(--space-1) 0;
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.changelog-type {
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    letter-spacing: 0.05em;
}

.changelog-add .changelog-type {
    background: rgba(57, 255, 20, 0.2);
    color: var(--color-primary);
}

.changelog-fix .changelog-type {
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
}

.changelog-wip .changelog-type {
    background: rgba(255, 107, 53, 0.2);
    color: var(--color-secondary);
}

.devlog-teaser {
    padding: var(--space-4);
    background: var(--color-dark);
    border: 1px dashed var(--color-primary);
    text-align: center;
    margin-bottom: var(--space-4);
}

.teaser-text {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: var(--color-primary);
    letter-spacing: 0.1em;
}

.teaser-dots {
    display: inline-block;
    animation: dotsAnimation 1.5s infinite;
}

@keyframes dotsAnimation {
    0%, 20% { content: '.'; opacity: 0.3; }
    40% { opacity: 0.6; }
    60%, 100% { opacity: 1; }
}

.devlog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-border);
}

.devlog-author {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.author-avatar {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-dark);
    font-size: 11px;
    font-weight: 700;
}

.author-name {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    color: var(--color-text-muted);
}

.devlog-link {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.devlog-link:hover {
    color: var(--color-text);
    letter-spacing: 0.05em;
}

.devlog-status {
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: var(--color-primary);
    letter-spacing: 0.1em;
    animation: blink 2s infinite;
}

.devlog-cta {
    margin-top: var(--space-10);
    text-align: center;
    padding: var(--space-8);
    border: 1px dashed var(--color-border);
}

.devlog-cta-text {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-4);
}

/* ==========================================
   TECH QUOTE
   ========================================== */

.tech-quote {
    margin-top: var(--space-16);
    text-align: center;
}

.tech-quote blockquote {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-medium);
    color: var(--color-text);
    font-style: italic;
    padding: var(--space-8);
    background-color: var(--color-surface);
    border-left: 3px solid var(--color-primary);
    border-radius: var(--radius-md);
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================
   NOT SECTION (What We Are Not)
   ========================================== */

.not-section {
    background-color: var(--color-surface);
}

.not-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.not-title {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-medium);
    color: var(--color-text);
    margin-top: var(--space-4);
    margin-bottom: var(--space-12);
}

.not-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-12);
}

.not-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-5);
    background-color: var(--color-dark);
    border: 1px solid var(--color-border);
    border-left: 3px solid #FF6B35;
    border-radius: 0;
    position: relative;
    transition: all 0.3s ease;
}

.not-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 107, 53, 0.1);
    transition: width 0.3s ease;
}

.not-item:hover {
    border-left-width: 6px;
    transform: translateX(4px);
}

.not-item:hover::before {
    width: 100%;
}

.not-marker {
    width: 16px;
    height: 16px;
    position: relative;
    flex-shrink: 0;
}

.not-marker::before,
.not-marker::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background-color: #FF6B35;
}

.not-marker::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.not-marker::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.not-text {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
}

.not-statement {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    color: var(--color-primary);
    margin-top: var(--space-8);
    padding: var(--space-6);
    border: 2px solid var(--color-primary);
    background: rgba(57, 255, 20, 0.05);
    position: relative;
}

.not-statement::before {
    content: '>> ';
    color: var(--color-primary);
    font-family: 'Courier New', monospace;
    margin-right: 8px;
}

/* ==========================================
   VISION SECTION (Updated)
   ========================================== */

.vision-goals {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    margin: var(--space-12) 0;
}

.vision-goal {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-6);
    background-color: var(--color-dark);
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-primary);
    border-radius: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.vision-goal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.1), transparent);
    transition: left 0.6s ease;
}

.vision-goal:hover::before {
    left: 100%;
}

.vision-goal:hover {
    border-left-width: 5px;
    background: rgba(57, 255, 20, 0.03);
}

.vision-icon {
    width: 12px;
    height: 12px;
    background-color: var(--color-primary);
    border-radius: 0;
    margin-top: 6px;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
    animation: iconPulse 2s ease-in-out infinite;
}

.vision-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: var(--color-dark);
}

@keyframes iconPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(57, 255, 20, 0.5); }
    50% { box-shadow: 0 0 20px rgba(57, 255, 20, 0.9), 0 0 30px rgba(57, 255, 20, 0.5); }
}

.vision-goal p {
    font-size: var(--font-size-lg);
    color: var(--color-text);
    margin: 0;
}

.vision-metrics {
    margin: var(--space-12) 0;
    padding: var(--space-8);
    background-color: var(--color-dark);
    border-radius: var(--radius-lg);
}

.metrics-title {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: var(--space-6);
}

.metrics-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
}

.metric-item {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    padding: var(--space-2) var(--space-4);
    background-color: var(--color-surface);
    border-radius: var(--radius-md);
}

/* ==========================================
   COMMUNITY ORIGIN & CTA SUBTITLE
   ========================================== */

.community-origin {
    margin: var(--space-12) 0;
    padding: var(--space-6);
    background-color: var(--color-surface);
    border-left: 3px solid var(--color-primary);
    border-radius: var(--radius-md);
    text-align: center;
}

.community-origin p {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    margin: 0;
}

.cta-subtitle {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-semibold);
    color: #000000;
    margin-bottom: var(--space-8);
    position: relative;
    z-index: 1;
}

/* ==========================================
   COMMITMENT SECTION
   ========================================== */

.commitment {
    background-color: var(--color-dark);
    border-top: 1px solid var(--color-border);
}

.commitment-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.commitment-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
    margin: var(--space-12) 0;
}

.commitment-item {
    font-size: var(--font-size-base);
    color: var(--color-text);
    padding: var(--space-4) var(--space-6);
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 0;
    border-left: 3px solid var(--color-text-muted);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.commitment-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.4s ease;
}

.commitment-item::after {
    content: attr(data-index);
    position: absolute;
    top: var(--space-2);
    right: var(--space-3);
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: var(--color-text-muted);
    opacity: 0.3;
}

.commitment-item:hover {
    border-left-color: var(--color-primary);
    border-left-width: 5px;
    background: rgba(57, 255, 20, 0.03);
    transform: translateX(4px);
}

.commitment-item:hover::before {
    width: 100%;
}

.commitment-item:hover::after {
    color: var(--color-primary);
    opacity: 0.7;
}

.commitment-statement {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: var(--line-height-relaxed);
}

/* ==========================================
   HERO LOGO
   ========================================== */

.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    animation: 
        fadeInScale 1.2s var(--ease-out-expo) 0.2s both,
        float 6s ease-in-out infinite;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8) rotate(-5deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.hero-logo svg {
    opacity: 0.9;
    filter: drop-shadow(0 0 30px rgba(57, 255, 20, 0.5));
    transition: all 0.3s ease;
}

.hero-logo:hover svg {
    filter: drop-shadow(0 0 50px rgba(57, 255, 20, 0.8));
    transform: scale(1.05);
}

/* ==========================================
   RESPONSIVE - NEW SECTIONS
   ========================================== */

@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-goals {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .not-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .commitment-grid {
        flex-direction: column;
    }
    
    .tech-quote blockquote {
        font-size: var(--font-size-base);
    }
}

/* ==========================================
   HIGHLIGHTED PHRASES - Key Brand Messages
   ========================================== */

/* Stat item highlight */
.stat-highlight {
    position: relative;
}

.stat-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    border-radius: 2px;
}

.stat-highlight .stat-number {
    color: var(--color-primary);
    text-shadow: 0 0 20px rgba(14, 211, 207, 0.3);
}

.stat-highlight .stat-label strong {
    color: var(--color-primary);
    font-weight: 600;
}

/* Principle highlight */
.principle-highlight {
    background: linear-gradient(135deg, rgba(14, 211, 207, 0.1), rgba(14, 211, 207, 0.05));
    border-radius: 8px;
    padding: var(--spacing-sm) var(--spacing-md);
    margin-left: calc(var(--spacing-md) * -1);
    margin-right: calc(var(--spacing-md) * -1);
    border-left: 3px solid var(--color-primary);
}

.principle-highlight .principle-marker {
    background: var(--color-primary);
    box-shadow: 0 0 10px rgba(14, 211, 207, 0.5);
}

.principle-highlight .principle-text strong {
    color: var(--color-primary);
    font-weight: 600;
}

/* Vision goal highlight */
.vision-highlight {
    background: linear-gradient(135deg, rgba(14, 211, 207, 0.12), rgba(14, 211, 207, 0.05));
    border: 1px solid rgba(14, 211, 207, 0.3);
    transform: scale(1.02);
}

.vision-highlight .vision-icon::before {
    background: var(--color-primary);
    box-shadow: 0 0 15px rgba(14, 211, 207, 0.6);
}

.vision-highlight p strong {
    color: var(--color-primary);
    font-weight: 600;
}

/* Hero emphasis - main tagline */
.hero-title .text-accent {
    position: relative;
    display: inline-block;
}

.hero-title .text-accent::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
    border-radius: 2px;
}

/* ==========================================
   MODERN GAMING STUDIO ENHANCEMENTS
   ========================================== */

/* Technical accent text with glitch effect */
.text-accent {
    color: var(--color-primary);
    position: relative;
    display: inline-block;
    text-shadow: 
        0 0 10px rgba(57, 255, 20, 0.8),
        0 0 20px rgba(57, 255, 20, 0.5),
        2px 0 0 rgba(255, 107, 53, 0.3),
        -2px 0 0 rgba(57, 255, 20, 0.3);
    animation: textGlitch 5s infinite;
}

@keyframes textGlitch {
    0%, 90%, 100% { text-shadow: 0 0 10px rgba(57, 255, 20, 0.8), 0 0 20px rgba(57, 255, 20, 0.5); }
    91%, 93% { text-shadow: 2px 0 0 rgba(255, 107, 53, 0.8), -2px 0 0 rgba(57, 255, 20, 0.8); }
}

/* SVG Logo animations */
.hero-logo svg .node {
    animation: nodePulse 3s ease-in-out infinite;
}

.hero-logo svg .node-pulse {
    animation: nodePulse 2s ease-in-out infinite;
}

.hero-logo svg .node-pulse-delay {
    animation: nodePulse 2s ease-in-out 1s infinite;
}

.hero-logo svg .node-center {
    animation: centerPulse 4s ease-in-out infinite;
}

@keyframes nodePulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes centerPulse {
    0%, 100% { 
        opacity: 1;
        filter: drop-shadow(0 0 8px rgba(57, 255, 20, 0.9));
    }
    50% { 
        opacity: 0.7;
        filter: drop-shadow(0 0 4px rgba(57, 255, 20, 0.5));
    }
}

/* ==========================================
   SCROLL REVEAL ANIMATIONS
   ========================================== */

/* Base state - hidden */
.fade-in,
.slide-up,
.slide-left,
.slide-right,
.scale-in,
.tech-card,
.community-card,
.stat-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-out-expo),
                transform 0.6s var(--ease-out-expo);
}

/* Visible state */
.fade-in.visible,
.slide-up.visible,
.slide-left.visible,
.slide-right.visible,
.scale-in.visible,
.tech-card.visible,
.community-card.visible,
.stat-item.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Specific animations */
.slide-left {
    transform: translateX(-50px);
}

.slide-right {
    transform: translateX(50px);
}

.scale-in {
    transform: scale(0.8);
}

/* Stagger effect for children */
.stagger-container > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--ease-out-expo),
                transform 0.5s var(--ease-out-expo);
}

.stagger-container.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger-container.visible > *:nth-child(2) { transition-delay: 100ms; }
.stagger-container.visible > *:nth-child(3) { transition-delay: 200ms; }
.stagger-container.visible > *:nth-child(4) { transition-delay: 300ms; }
.stagger-container.visible > *:nth-child(5) { transition-delay: 400ms; }
.stagger-container.visible > *:nth-child(6) { transition-delay: 500ms; }

.stagger-container.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced gradient backgrounds for sections */
.vision {
    background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-dark-light) 100%);
    position: relative;
}

.vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(57, 255, 20, 0.05) 0%, transparent 50%);
}

/* Manifesto section special styling */
.manifesto {
    background: var(--color-dark-light);
    position: relative;
    overflow: hidden;
}

.manifesto::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(57, 255, 20, 0.04) 0%, transparent 25%),
        radial-gradient(circle at 80% 50%, rgba(255, 107, 53, 0.04) 0%, transparent 25%);
    animation: slowRotate 60s linear infinite;
}

@keyframes slowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Particle effect overlay (optional, subtle) */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle, rgba(57, 255, 20, 0.15) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 107, 53, 0.1) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    background-position: 0 0, 40px 40px;
    opacity: 0.3;
    pointer-events: none;
}

/* Enhanced hover effects for all interactive elements */
a, button, .btn, .nav-link, .tech-card, .community-card {
    -webkit-tap-highlight-color: transparent;
}

/* Custom selection color */
::selection {
    background-color: rgba(57, 255, 20, 0.3);
    color: var(--color-text);
}

::-moz-selection {
    background-color: rgba(57, 255, 20, 0.3);
    color: var(--color-text);
}

/* Scrollbar styling for modern browsers */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--color-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 0;
    border: 2px solid var(--color-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-light);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
    border-radius: var(--radius-sm);
}

/* Loading animation for dynamic content */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.loading-shimmer {
    background: linear-gradient(
        90deg,
        rgba(57, 255, 20, 0.1) 0%,
        rgba(57, 255, 20, 0.2) 50%,
        rgba(57, 255, 20, 0.1) 100%
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* ==========================================
   UNIQUE TECHNICAL ELEMENTS
   ========================================== */

/* Scanline effect (subtle) */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.1) 2px,
        rgba(0, 0, 0, 0.1) 4px
    );
    pointer-events: none;
    z-index: 999;
    opacity: 0.03;
}

/* Terminal cursor effect on section labels */
.section-label::after {
    animation: blink 1.5s step-end infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Code-style numbering for features/tech cards */
.tech-card::before {
    content: '> ';
    position: absolute;
    left: 12px;
    top: 12px;
    font-family: 'Courier New', monospace;
    color: var(--color-primary);
    font-size: 12px;
    font-weight: bold;
    opacity: 0.5;
}

/* Glitch effect on hover for accent text */
.text-accent:hover {
    animation: glitchText 0.3s;
}

@keyframes glitchText {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

/* Corner brackets for cards */
.tech-card::after,
.community-card::before {
    font-family: 'Courier New', monospace;
    font-size: 10px;
    font-weight: bold;
}

/* ==========================================
   ADVANCED ANIMATIONS & INTERACTIONS
   ========================================== */

/* Scroll Reveal Base States */
.fade-in,
.slide-up,
.slide-left,
.slide-right,
.scale-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible,
.slide-up.visible,
.slide-left.visible,
.slide-right.visible,
.scale-in.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

.slide-left { transform: translateX(-50px); }
.slide-right { transform: translateX(50px); }
.scale-in { transform: scale(0.8); }

/* Stagger Animation for Lists */
.stagger-container > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-container.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger-container.visible > *:nth-child(2) { transition-delay: 100ms; }
.stagger-container.visible > *:nth-child(3) { transition-delay: 200ms; }
.stagger-container.visible > *:nth-child(4) { transition-delay: 300ms; }
.stagger-container.visible > *:nth-child(5) { transition-delay: 400ms; }
.stagger-container.visible > *:nth-child(6) { transition-delay: 500ms; }

.stagger-container.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Title with Reveal Animation */
.hero-title {
    animation: heroTitleReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroTitleReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
        letter-spacing: 0.2em;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: -0.04em;
    }
}

/* Hero Content Stagger */
.hero-description {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-actions {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Label Glitch Entry */
.hero-label {
    animation: labelGlitch 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes labelGlitch {
    0% {
        opacity: 0;
        transform: translateX(-20px);
        filter: blur(4px);
    }
    50% {
        transform: translateX(2px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

/* Floating Logo Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* Stats Counter Animation */
.stat-number {
    animation: counterPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes counterPop {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(20px);
    }
    50% {
        transform: scale(1.1) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.stat-item:nth-child(1) .stat-number { animation-delay: 0.1s; }
.stat-item:nth-child(3) .stat-number { animation-delay: 0.2s; }
.stat-item:nth-child(5) .stat-number { animation-delay: 0.3s; }
.stat-item:nth-child(7) .stat-number { animation-delay: 0.4s; }

.stat-label {
    opacity: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

/* Enhanced Tech Card Hover */
.tech-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-card:hover {
    transform: translateX(12px) scale(1.02);
}

.tech-card:hover .tech-title {
    color: var(--color-primary);
    transform: translateX(4px);
}

.tech-card .tech-title,
.tech-card .tech-description {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-card:hover .tech-description {
    color: var(--color-text);
}

/* Principle Markers Pulse */
.principle-marker {
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(57, 255, 20, 0.8);
        transform: scale(1.2);
    }
}

/* Principle Items Slide In */
.principle-item {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.principle-item:nth-child(1) { animation-delay: 0.1s; }
.principle-item:nth-child(2) { animation-delay: 0.2s; }
.principle-item:nth-child(3) { animation-delay: 0.3s; }
.principle-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Belief Items Pop In */
.belief-item {
    opacity: 0;
    transform: scale(0.8);
    animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.belief-item:nth-child(1) { animation-delay: 0.05s; }
.belief-item:nth-child(2) { animation-delay: 0.1s; }
.belief-item:nth-child(3) { animation-delay: 0.15s; }
.belief-item:nth-child(4) { animation-delay: 0.2s; }
.belief-item:nth-child(5) { animation-delay: 0.25s; }
.belief-item:nth-child(6) { animation-delay: 0.3s; }
.belief-item:nth-child(7) { animation-delay: 0.35s; }
.belief-item:nth-child(8) { animation-delay: 0.4s; }

@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.belief-item:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 16px rgba(57, 255, 20, 0.3);
}

/* CTA Ripple Effect */
.community-cta {
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.community-cta:hover {
    transform: scale(1.02);
}

.community-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.community-cta:active::after {
    width: 300px;
    height: 300px;
}

/* Parallax Helper Class */
.parallax-layer {
    transition: transform 0.1s ease-out;
    will-change: transform;
}

/* Button Press Effect */
.btn {
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:active {
    transform: scale(0.95);
}

/* Loading Dots Animation */
@keyframes loadingDots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

/* Smooth Page Transitions */
.page-transition {
    animation: pageIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes pageIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   CURSOR CUSTOMIZADO (OPCIONAL)
   ========================================== */

/* Uncomment to enable custom cursor
body {
    cursor: none;
}

.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
    mix-blend-mode: difference;
}

.custom-cursor-dot {
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
}

a:hover ~ .custom-cursor,
button:hover ~ .custom-cursor {
    transform: scale(1.5);
    background: rgba(57, 255, 20, 0.1);
}
*/

/* ==========================================
   PERFORMANCE OPTIMIZATIONS
   ========================================== */

/* Hardware acceleration for animated elements */
.hero-logo,
.tech-card,
.community-card,
.btn,
.nav-link::after {
    will-change: transform;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================
   MICROINTERACTIONS & POLISH
   ========================================== */

/* Smooth focus states */
*:focus {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
}

/* Link underline animation */
a:not(.btn):not(.nav-link):not(.nav-logo) {
    position: relative;
}

a:not(.btn):not(.nav-link):not(.nav-logo)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-primary);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

a:not(.btn):not(.nav-link):not(.nav-logo):hover::after {
    width: 100%;
}

/* Code/monospace text glow */
code,
pre,
.stat-number,
.hero-label {
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

/* Image lazy load fade in */
img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.loaded,
img[src] {
    opacity: 1;
}

/* Skeleton loading state */
.skeleton {
    background: linear-gradient(
        90deg,
        rgba(57, 255, 20, 0.05) 25%,
        rgba(57, 255, 20, 0.1) 50%,
        rgba(57, 255, 20, 0.05) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Selection glow */
::selection {
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.8);
}

/* ==========================================
   UNIQUE LAYOUT ELEMENTS
   ========================================== */

/* Section Numbers - Large Background */
.section {
    position: relative;
    overflow: hidden;
}

.section::before {
    content: attr(data-section);
    position: absolute;
    top: 20%;
    right: -50px;
    font-size: 300px;
    font-weight: var(--font-weight-extrabold);
    color: rgba(57, 255, 20, 0.02);
    font-family: 'Courier New', monospace;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.section > .container {
    position: relative;
    z-index: 1;
}

/* Alternating Section Backgrounds */
.section:nth-child(odd) {
    background: var(--color-dark);
}

.section:nth-child(even) {
    background: var(--color-dark-light);
}

/* Tech Section - Full Width Side Panel */
.technology {
    position: relative;
}

.technology::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 30%;
    background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.03));
    pointer-events: none;
    z-index: 0;
}

/* About Section - Split Design */
.about {
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    background: linear-gradient(90deg, rgba(57, 255, 20, 0.02), transparent);
    pointer-events: none;
}

/* Manifesto - Dark Overlay */
.manifesto {
    background: #000000 !important;
    border-top: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
}

/* Grid Lines Overlay (Technical Look) */
.hero::after,
.technology::before,
.community::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 99px, rgba(57, 255, 20, 0.05) 99px, rgba(57, 255, 20, 0.05) 100px),
        repeating-linear-gradient(90deg, transparent, transparent 99px, rgba(57, 255, 20, 0.05) 99px, rgba(57, 255, 20, 0.05) 100px);
    pointer-events: none;
    opacity: 0.3;
    z-index: 0;
}

/* Decorative Corner Elements */
.tech-card::after {
    content: '┘';
    position: absolute;
    bottom: 12px;
    right: 12px;
    color: var(--color-primary);
    font-size: 20px;
    opacity: 0.3;
    font-family: 'Courier New', monospace;
}

.community-card::after {
    content: '└';
    position: absolute;
    bottom: 12px;
    left: 12px;
    color: var(--color-primary);
    font-size: 20px;
    opacity: 0.3;
    font-family: 'Courier New', monospace;
}

/* Stats - Vertical Orientation Option */
.stat-item {
    position: relative;
    padding: var(--space-6);
}

.stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--color-primary), transparent);
}

/* Tech Quote - Terminal Style */
.tech-quote {
    margin-top: var(--space-20);
    padding: var(--space-12);
    background: #000000;
    border: 2px solid var(--color-primary);
    border-left: 8px solid var(--color-primary);
    position: relative;
}

.tech-quote::before {
    content: '> SYSTEM_MESSAGE:';
    position: absolute;
    top: -12px;
    left: 20px;
    background: #000000;
    padding: 0 var(--space-4);
    color: var(--color-primary);
    font-family: 'Courier New', monospace;
    font-size: var(--font-size-xs);
    letter-spacing: 0.2em;
}

.tech-quote blockquote {
    font-size: var(--font-size-xl);
    color: #FFFFFF;
    font-family: 'Courier New', monospace;
    line-height: 1.6;
    margin: 0;
    font-weight: normal;
}

/* CTA - Asymmetric Design */
.community-cta {
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 95% 100%, 0 100%);
}

.community-cta::before {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 95% 100%, 0 100%);
}

/* ==========================================
   TECHNICAL DECORATIVE ELEMENTS
   ========================================== */

/* Line Numbers for Sections */
.section-header::after {
    content: 'LN:' counter(section-line);
    counter-increment: section-line;
    position: absolute;
    right: 0;
    top: 0;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: var(--color-primary);
    opacity: 0.4;
    letter-spacing: 0.1em;
}

body {
    counter-reset: section-line;
}

/* Timestamp Headers */
.section-label::after {
    content: ' [' attr(data-timestamp) ']';
    opacity: 0.5;
    font-size: 0.8em;
}

/* Version Numbers */
.hero-title::after {
    content: 'v2.0';
    position: absolute;
    bottom: -30px;
    left: 0;
    font-size: 12px;
    font-family: 'Courier New', monospace;
    color: var(--color-primary);
    opacity: 0.6;
    font-weight: normal;
}

/* Binary Background Pattern */
.stats::after {
    content: '01001000 01100101 01101100 01101100 01101111';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Courier New', monospace;
    font-size: 80px;
    color: rgba(57, 255, 20, 0.02);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 0.3em;
}

/* Cards with Index Numbers */
.tech-card {
    counter-increment: tech-item;
}

.tech-card::before {
    content: '[' counter(tech-item, decimal-leading-zero) ']';
    position: absolute;
    top: 12px;
    right: 12px;
    font-family: 'Courier New', monospace;
    color: var(--color-primary);
    font-size: 11px;
    opacity: 0.4;
}

.tech-grid {
    counter-reset: tech-item;
}

/* Community Cards with Hex IDs */
.community-card {
    counter-increment: comm-item;
}

.community-card::before {
    content: '#0x' counter(comm-item, upper-hexadecimal);
    position: absolute;
    top: 12px;
    right: 12px;
    font-family: 'Courier New', monospace;
    color: var(--color-primary);
    font-size: 10px;
    opacity: 0.5;
}

.community-grid {
    counter-reset: comm-item;
}

/* Glitch Overlay Effect */
@keyframes glitch-overlay {
    0% { clip-path: inset(40% 0 61% 0); }
    20% { clip-path: inset(92% 0 1% 0); }
    40% { clip-path: inset(43% 0 1% 0); }
    60% { clip-path: inset(25% 0 58% 0); }
    80% { clip-path: inset(54% 0 7% 0); }
    100% { clip-path: inset(58% 0 43% 0); }
}

.section-title::after {
    content: attr(data-text);
    position: absolute;
    left: 2px;
    top: 0;
    color: var(--color-primary);
    opacity: 0.1;
    animation: glitch-overlay 3s infinite;
}

/* Footer Tech Details */
.footer::before {
    content: 'BUILD: 2026.01.27 | STATUS: ONLINE | UPTIME: 99.9%';
    display: block;
    text-align: center;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: var(--color-primary);
    opacity: 0.4;
    padding: var(--space-4);
    border-bottom: 1px solid rgba(57, 255, 20, 0.1);
    letter-spacing: 0.15em;
}

/* Belief Items with Checkmarks */
.belief-item::before {
    content: '✓';
    margin-right: 8px;
    color: var(--color-primary);
    font-weight: bold;
}

/* Principle Items with Arrow */
.principle-item::before {
    content: '→';
    position: absolute;
    left: -20px;
    color: var(--color-primary);
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s, left 0.3s;
}

.principle-item:hover::before {
    opacity: 1;
    left: -24px;
}

/* ==========================================
   BRUTALIST ASYMMETRIC LAYOUTS
   ========================================== */

/* Hero - Overlapping Elements */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.hero-actions .btn:first-child {
    flex: 1;
    min-width: 200px;
}

.hero-actions .btn:last-child {
    flex: 1;
    min-width: 200px;
    margin-left: var(--space-8);
}

/* Stats - Dashboard Style */
.stats {
    position: relative;
}

.stats .container {
    position: relative;
    padding: var(--space-16) var(--space-8);
}

.stat-item {
    text-align: left;
    background: rgba(0, 0, 0, 0.3);
    padding: var(--space-6);
    border-left: 4px solid var(--color-primary);
}

.stat-divider {
    display: none;
}

/* Section Titles - Broken Grid */
.section-title {
    position: relative;
    display: inline-block;
    padding-right: 40%;
}

.section-description {
    text-align: left;
    margin: var(--space-8) 0 0 0;
    max-width: 100%;
    color: #CCCCCC;
}

/* Beliefs - Tag Cloud Style */
.beliefs-grid {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-12);
}

.belief-item {
    padding: var(--space-3) var(--space-6);
    background: rgba(57, 255, 20, 0.05);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 0;
    transition: all var(--transition-base);
    font-size: var(--font-size-sm);
}

/* About Content - Reading Column */
.about-content p {
    margin-bottom: var(--space-6);
    color: #DDDDDD;
    max-width: 65ch;
}

.about-content p.text-lead {
    color: #FFFFFF;
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-8);
    border-left: 4px solid var(--color-primary);
    padding-left: var(--space-6);
    max-width: 100%;
}

/* Manifesto - Two Column Terminal */
.manifesto-quote {
    grid-column: 1 / -1;
    margin: 0 0 var(--space-12) 0;
}

.manifesto-text {
    margin-bottom: 0;
}

.beliefs-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary);
    margin-bottom: var(--space-8);
    font-family: 'Courier New', monospace;
    letter-spacing: 0.1em;
}

/* Principles - Stacked List with Lines */
.principles-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    position: relative;
}

.principles-list::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--color-primary), transparent);
}

.principle-text {
    font-size: var(--font-size-base);
    color: #DDDDDD;
}

/* Tech Cards - Shifted Grid */
.tech-icon {
    position: relative;
}

.tech-icon::after {
    content: '';
    position: absolute;
    top: -4px;
    right: -4px;
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    opacity: 0.3;
}

/* Community Cards - Panel Style */
.community-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* CTA - Command Line Style */
.cta-title::before {
    content: '$ ';
    color: var(--color-primary);
    font-family: 'Courier New', monospace;
}

.cta-text {
    font-family: 'Courier New', monospace;
    letter-spacing: 0.05em;
}