/* =====================================================
   TDX3 - AI Auto Trade Platform
   Ultra Modern Cyberpunk Design 2026
   ===================================================== */

/* Import Premium Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    /* Cyberpunk Color Palette - Electric Neon */
    --color-bg: #0a0a0f;
    --color-bg-deep: #050508;
    --color-bg-elevated: #12121a;
    --color-bg-card: rgba(18, 18, 26, 0.7);
    --color-bg-glass: rgba(255, 255, 255, 0.03);
    
    /* Neon Colors */
    --color-neon-cyan: #00ffff;
    --color-neon-magenta: #ff00ff;
    --color-neon-yellow: #ffff00;
    --color-neon-green: #00ff88;
    --color-neon-orange: #ff6600;
    
    /* Primary Gradient */
    --gradient-primary: linear-gradient(135deg, #00ffff 0%, #ff00ff 50%, #ffff00 100%);
    --gradient-glow: linear-gradient(135deg, rgba(0, 255, 255, 0.4), rgba(255, 0, 255, 0.4));
    
    --color-text: #ffffff;
    --color-text-secondary: rgba(255, 255, 255, 0.6);
    --color-text-muted: rgba(255, 255, 255, 0.4);
    
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-glow: rgba(0, 255, 255, 0.3);
    
    /* Typography */
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 5rem;
    --space-4xl: 8rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-display);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* =====================================================
   EPIC BACKGROUND EFFECTS
   ===================================================== */
.bg-grid {
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 40%, transparent 100%);
    pointer-events: none;
    z-index: -3;
}

.bg-glow {
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(circle 800px at 20% 30%, rgba(0, 255, 255, 0.15), transparent),
        radial-gradient(circle 600px at 80% 70%, rgba(255, 0, 255, 0.12), transparent),
        radial-gradient(circle 400px at 50% 50%, rgba(255, 255, 0, 0.05), transparent);
    pointer-events: none;
    z-index: -2;
    animation: bg-pulse 8s ease-in-out infinite alternate;
}

@keyframes bg-pulse {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

.floating-orbs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    mix-blend-mode: screen;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.4) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation: orbit1 25s linear infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.35) 0%, transparent 70%);
    top: 50%;
    right: -15%;
    animation: orbit2 30s linear infinite;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 0, 0.2) 0%, transparent 70%);
    bottom: -10%;
    left: 30%;
    animation: orbit3 20s linear infinite;
}

@keyframes orbit1 {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(100px, 50px) rotate(90deg); }
    50% { transform: translate(50px, 100px) rotate(180deg); }
    75% { transform: translate(-50px, 50px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

@keyframes orbit2 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-100px, -50px) scale(1.2); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes orbit3 {
    0% { transform: translate(0, 0); }
    33% { transform: translate(80px, -40px); }
    66% { transform: translate(-40px, 60px); }
    100% { transform: translate(0, 0); }
}

/* Scanlines Effect */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    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: 9999;
    opacity: 0.3;
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-fast);
}

/* =====================================================
   BUTTONS - Neon Style
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 1rem 2rem;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-neon-cyan);
    color: var(--color-bg);
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.5),
        0 0 40px rgba(0, 255, 255, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.8),
        0 0 60px rgba(0, 255, 255, 0.5),
        0 0 90px rgba(0, 255, 255, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--color-neon-magenta);
    color: var(--color-neon-magenta);
    box-shadow: 
        0 0 20px rgba(255, 0, 255, 0.3),
        inset 0 0 20px rgba(255, 0, 255, 0.1);
}

.btn-ghost {
    background: transparent;
    color: var(--color-text-secondary);
}

.btn-ghost:hover {
    color: var(--color-neon-cyan);
    text-shadow: 0 0 20px var(--color-neon-cyan);
}

.btn-white {
    background: white;
    color: var(--color-bg);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 40px rgba(255, 255, 255, 0.5),
        0 0 80px rgba(255, 255, 255, 0.3);
}

.btn-ghost-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.btn .arrow {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.btn:hover .arrow {
    transform: translateX(5px);
}

.btn .play-icon {
    width: 12px;
    height: 12px;
}

/* =====================================================
   NAVIGATION - Cyberpunk Style
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-lg) 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-md) 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    position: relative;
    padding: var(--space-xs) var(--space-md);
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-glow {
    position: absolute;
    inset: -5px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
    border-radius: var(--radius-md);
    filter: blur(15px);
    opacity: 0.6;
    z-index: -1;
    animation: logo-glow-pulse 3s ease-in-out infinite;
}

@keyframes logo-glow-pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.logo-icon {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.6));
    animation: logo-pulse 3s ease-in-out infinite;
}

@keyframes logo-pulse {
    0%, 100% { 
        filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 25px rgba(0, 255, 255, 0.8)) drop-shadow(0 0 50px rgba(255, 0, 255, 0.4));
        transform: scale(1.05);
    }
}

.logo-text {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.logo-text .accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.logo-tagline {
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-neon-cyan);
    background: rgba(0, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 255, 255, 0.3);
    margin-left: var(--space-xs);
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, var(--color-neon-cyan), var(--color-neon-magenta), var(--color-neon-cyan));
    background-size: 200% 100%;
    border-radius: inherit;
    z-index: -1;
    animation: btn-glow-shift 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-glow:hover::before {
    opacity: 1;
}

@keyframes btn-glow-shift {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
    list-style: none;
}

.nav-links a {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-secondary);
    position: relative;
    padding: var(--space-sm) 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-base);
}

.nav-links a:hover {
    color: var(--color-text);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.nav-links a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-neon-cyan);
    transition: all var(--transition-base);
    box-shadow: 0 0 10px var(--color-neon-cyan);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(30px);
    padding: 100px var(--space-xl);
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.mobile-nav-links a {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-secondary);
    transition: all var(--transition-base);
}

.mobile-nav-links a:hover {
    color: var(--color-neon-cyan);
    text-shadow: 0 0 30px var(--color-neon-cyan);
    transform: translateX(20px);
}

/* =====================================================
   HERO SECTION - Epic Entry
   ===================================================== */
.hero {
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    display: grid;
    grid-template-columns: 60% 40%;
    gap: var(--space-2xl);
    align-items: center;
    justify-content: center;
    padding: 80px var(--space-2xl) var(--space-xl);
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, rgba(0, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* =====================================================
   NEW HERO SECTION - REDESIGNED
   ===================================================== */

/* New Badge Design */
.hero-badge-new {
    position: relative;
    display: inline-flex;
    margin-bottom: var(--space-md);
    animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.badge-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, var(--color-neon-cyan), var(--color-neon-magenta), var(--color-neon-cyan));
    background-size: 200% 100%;
    border-radius: var(--radius-full);
    filter: blur(8px);
    opacity: 0.6;
    animation: badge-glow-shift 3s linear infinite;
    z-index: -1;
}

@keyframes badge-glow-shift {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.badge-content {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) var(--space-xl);
    background: rgba(10, 10, 15, 0.9);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
}

.badge-icon {
    font-size: 1rem;
    animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.2); filter: brightness(1.5); }
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: linear-gradient(90deg, var(--color-neon-cyan), var(--color-neon-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-divider {
    color: rgba(255, 255, 255, 0.2);
    font-weight: 300;
}

.badge-status {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-neon-green);
}

.status-dot-animated {
    width: 8px;
    height: 8px;
    background: var(--color-neon-green);
    border-radius: 50%;
    animation: status-blink 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px var(--color-neon-green);
}

@keyframes status-blink {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--color-neon-green); }
    50% { opacity: 0.5; box-shadow: 0 0 20px var(--color-neon-green), 0 0 40px var(--color-neon-green); }
}

/* New Title Design */
.hero-title-new {
    margin-bottom: var(--space-md);
}

.title-line-1 {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
    opacity: 0;
    animation: slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
}

.title-line-1 .word {
    display: inline-block;
    transition: transform 0.3s ease;
}

.title-line-1 .word:hover {
    transform: translateY(-5px);
    color: var(--color-neon-cyan);
}

.title-line-2 {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.4s;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-neon-cyan) 0%, var(--color-neon-magenta) 50%, var(--color-neon-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-flow 4s ease infinite;
    filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.4));
}

@keyframes gradient-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.ai-box {
    display: inline-block;
    padding: var(--space-xs) var(--space-lg);
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2) 0%, rgba(255, 0, 255, 0.2) 100%);
    border: 2px solid var(--color-neon-cyan);
    border-radius: var(--radius-lg);
    font-weight: 900;
    color: var(--color-text);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.3),
        inset 0 0 30px rgba(0, 255, 255, 0.1);
    animation: ai-glow 2s ease-in-out infinite alternate;
}

@keyframes ai-glow {
    0% { 
        box-shadow: 0 0 30px rgba(0, 255, 255, 0.3), inset 0 0 30px rgba(0, 255, 255, 0.1);
        border-color: var(--color-neon-cyan);
    }
    100% { 
        box-shadow: 0 0 50px rgba(255, 0, 255, 0.4), inset 0 0 40px rgba(255, 0, 255, 0.15);
        border-color: var(--color-neon-magenta);
    }
}

.title-tagline {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-lg);
    opacity: 0;
    animation: slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.6s;
}

.tagline-icon {
    color: var(--color-neon-cyan);
    animation: tagline-rotate 4s linear infinite;
}

@keyframes tagline-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* New Description Design */
.hero-description-new {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    max-width: 580px;
    margin-bottom: var(--space-lg);
    line-height: 1.8;
    opacity: 0;
    animation: slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.8s;
}

.desc-highlight {
    color: var(--color-neon-cyan);
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.desc-stat {
    display: inline-block;
    padding: 2px 8px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.1));
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: var(--radius-sm);
    color: var(--color-neon-green);
    font-weight: 700;
}

/* Legacy classes - keep for compatibility */
.hero-badge {
    display: none;
}

.hero-title {
    display: none;
}

.hero-description {
    display: none;
}

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

.hero-cta {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    opacity: 0;
    animation: fade-up 0.8s ease forwards 0.8s;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    opacity: 0;
    animation: fade-up 0.8s ease forwards 1s;
}

.stat {
    display: flex;
    flex-direction: column;
    position: relative;
}

.stat::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--gradient-primary);
}

.stat-value {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-top: var(--space-xs);
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, var(--color-border-glow), transparent);
}

/* Hero Visual */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    opacity: 0;
    animation: visual-reveal 1s ease forwards 0.5s;
}

@keyframes visual-reveal {
    to {
        opacity: 1;
        transform: translateX(0);
    }
    from {
        opacity: 0;
        transform: translateX(50px);
    }
}

.trading-card {
    width: 100%;
    max-width: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 0, 255, 0.05) 100%);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 0 40px rgba(0, 255, 255, 0.2),
        0 25px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.trading-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-neon-cyan), transparent);
}

.trading-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.card-status {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.card-status.live {
    color: var(--color-neon-green);
    text-shadow: 0 0 20px var(--color-neon-green);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
    box-shadow: 0 0 15px currentColor;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.card-pair {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-text-secondary);
    letter-spacing: 0.05em;
}

.card-price {
    display: flex;
    align-items: baseline;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
}

.price-value {
    font-family: var(--font-mono);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.price-change {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 700;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
}

.price-change.positive {
    background: rgba(0, 255, 136, 0.2);
    color: var(--color-neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.price-change.negative {
    background: rgba(255, 0, 100, 0.2);
    color: #ff0064;
    box-shadow: 0 0 20px rgba(255, 0, 100, 0.3);
}

.card-chart {
    height: 80px;
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 255, 0.02) 100%);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.chart-line {
    width: 100%;
    height: 100%;
}

.chart-path {
    fill: none;
    stroke: url(#chartGradient);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 8px var(--color-neon-cyan));
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: draw-chart 2s ease forwards 1s;
}

@keyframes draw-chart {
    to { stroke-dashoffset: 0; }
}

.card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    position: relative;
    z-index: 1;
}

.action-btn {
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
}

.action-btn.buy {
    background: var(--color-neon-green);
    color: var(--color-bg);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.action-btn.buy:hover {
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.8);
    transform: scale(1.05);
}

.confidence {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.confidence-bar {
    width: 70px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.confidence-fill {
    height: 100%;
    width: var(--width);
    background: var(--gradient-primary);
    box-shadow: 0 0 10px var(--color-neon-cyan);
    transform-origin: left;
    transform: scaleX(0);
    animation: fill-confidence 1.5s ease forwards 1.5s;
}

@keyframes fill-confidence {
    to { transform: scaleX(1); }
}

.confidence-value {
    color: var(--color-neon-cyan);
    text-shadow: 0 0 10px var(--color-neon-cyan);
}

/* Floating Cards */
.floating-cards {
    display: none;
}

.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    font-family: var(--font-mono);
    font-size: 0.8125rem;
}

.float-card svg {
    width: 22px;
    height: 22px;
}

.float-card-content {
    display: flex;
    flex-direction: column;
}

.float-card .label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

.float-card .value {
    font-weight: 700;
    font-size: 0.9375rem;
}

.float-card.profit {
    top: 0;
    right: -30px;
    border-color: rgba(0, 255, 136, 0.3);
    animation: float-profit 6s ease-in-out infinite;
}

.float-card.profit svg {
    color: var(--color-neon-green);
    filter: drop-shadow(0 0 10px var(--color-neon-green));
}

.float-card.profit .value {
    color: var(--color-neon-green);
    text-shadow: 0 0 15px var(--color-neon-green);
}

@keyframes float-profit {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-15px, 15px) rotate(2deg); }
}

.float-card.ai {
    bottom: 20%;
    left: -60px;
    border-color: rgba(255, 0, 255, 0.3);
    animation: float-ai 5s ease-in-out infinite;
}

.ai-pulse {
    width: 10px;
    height: 10px;
    background: var(--color-neon-magenta);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--color-neon-magenta);
    animation: ai-pulse-beat 1s ease-in-out infinite;
}

@keyframes ai-pulse-beat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.ai-text {
    color: var(--color-neon-magenta);
    font-size: 0.75rem;
    font-weight: 700;
    text-shadow: 0 0 15px var(--color-neon-magenta);
}

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

.float-card.trade {
    bottom: -20px;
    right: 20%;
    border-color: rgba(255, 255, 0, 0.3);
    animation: float-trade 7s ease-in-out infinite;
}

.float-card.trade svg {
    color: var(--color-neon-yellow);
    filter: drop-shadow(0 0 10px var(--color-neon-yellow));
}

.float-card.trade .value {
    color: var(--color-neon-yellow);
    text-shadow: 0 0 15px var(--color-neon-yellow);
}

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

/* =====================================================
   SECTIONS COMMON STYLES
   ===================================================== */
section {
    padding: var(--space-4xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-header.left {
    text-align: left;
    margin-left: 0;
}

.section-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-lg);
    background: transparent;
    border: 1px solid rgba(0, 255, 255, 0.5);
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-neon-cyan);
    margin-bottom: var(--space-lg);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    color: var(--color-text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
}

/* =====================================================
   FEATURES SECTION
   ===================================================== */
.features {
    background: linear-gradient(180deg, transparent, rgba(0, 255, 255, 0.02) 50%, transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.feature-card {
    padding: var(--space-2xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.feature-card:hover {
    border-color: rgba(0, 255, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(0, 255, 255, 0.1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2) 0%, rgba(255, 0, 255, 0.1) 100%);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-xl);
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    background: var(--gradient-primary);
    border-radius: inherit;
    opacity: 0;
    filter: blur(15px);
    transition: opacity var(--transition-base);
    z-index: -1;
}

.feature-card:hover .feature-icon::after {
    opacity: 0.5;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-neon-cyan);
    filter: drop-shadow(0 0 10px var(--color-neon-cyan));
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    font-weight: 700;
}

.feature-card p {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* =====================================================
   PERFORMANCE SECTION
   ===================================================== */
.performance .container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: center;
}

.performance-metrics {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.metric {
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.metric:hover {
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.metric-label {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-secondary);
}

.metric-value {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.metric-bar.red .metric-fill {
    background: linear-gradient(90deg, #ff0064, #ff6600);
}

.metric-fill {
    height: 100%;
    width: var(--width);
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.performance-chart {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.performance-chart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
}

.chart-container {
    display: flex;
    flex-direction: column;
    height: 350px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
}

.chart-header h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

.chart-legend {
    display: flex;
    gap: var(--space-lg);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

.legend-item::before {
    content: '';
    width: 20px;
    height: 3px;
    border-radius: 2px;
}

.legend-item.tdx::before {
    background: var(--gradient-primary);
    box-shadow: 0 0 10px var(--color-neon-cyan);
}

.legend-item.btc::before {
    background: #f7931a;
}

.chart-canvas {
    flex: 1;
    position: relative;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 25%,
            rgba(255, 255, 255, 0.02) 25%,
            rgba(255, 255, 255, 0.02) 50%
        );
}

.chart-footer {
    display: flex;
    justify-content: space-between;
    padding-top: var(--space-lg);
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

/* =====================================================
   HOW IT WORKS SECTION
   ===================================================== */
.how-it-works {
    background: linear-gradient(180deg, transparent, rgba(255, 0, 255, 0.02) 50%, transparent);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.step {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--space-2xl);
    align-items: center;
    padding: var(--space-2xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.step:hover {
    border-color: rgba(255, 0, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateX(10px);
}

.step:hover::before {
    opacity: 1;
}

.step-number {
    font-family: var(--font-mono);
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.3) 0%, rgba(0, 255, 255, 0.3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.step-content p {
    color: var(--color-text-secondary);
    max-width: 450px;
    line-height: 1.7;
}

.step-visual {
    width: 180px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Step Visual Elements */
.api-connect {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.api-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 15px var(--color-neon-cyan));
    animation: key-float 3s ease-in-out infinite;
}

@keyframes key-float {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.api-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-neon-cyan), var(--color-neon-magenta));
    box-shadow: 0 0 15px var(--color-neon-cyan);
    animation: line-pulse 1.5s ease-in-out infinite;
}

@keyframes line-pulse {
    0%, 100% { opacity: 1; transform: scaleX(1); }
    50% { opacity: 0.5; transform: scaleX(0.8); }
}

.exchange-icons {
    display: flex;
    gap: var(--space-sm);
    font-size: 1.5rem;
    color: var(--color-text-muted);
}

.exchange-icons span {
    animation: icon-pulse 2s ease-in-out infinite;
}

.exchange-icons span:nth-child(2) { animation-delay: 0.3s; }
.exchange-icons span:nth-child(3) { animation-delay: 0.6s; }

@keyframes icon-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.strategy-panel {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    width: 100%;
}

.slider {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-mono);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

.slider-track {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    position: relative;
}

.slider-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 60%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    box-shadow: 0 0 15px var(--color-neon-cyan);
}

.slider-thumb {
    position: absolute;
    left: 60%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 20px var(--color-neon-cyan);
    animation: thumb-glow 2s ease-in-out infinite;
}

@keyframes thumb-glow {
    0%, 100% { box-shadow: 0 0 20px var(--color-neon-cyan); }
    50% { box-shadow: 0 0 30px var(--color-neon-cyan), 0 0 50px var(--color-neon-magenta); }
}

.pairs {
    display: flex;
    gap: var(--space-sm);
}

.pair {
    padding: var(--space-xs) var(--space-md);
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    color: var(--color-text-muted);
    transition: all var(--transition-fast);
}

.pair.active {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
    border-color: var(--color-neon-cyan);
    color: white;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.power-btn {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.power-ring {
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    border-top-color: var(--color-neon-cyan);
    border-right-color: var(--color-neon-magenta);
    border-radius: 50%;
    animation: power-spin 3s linear infinite;
}

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

.power-btn svg {
    width: 40px;
    height: 40px;
    color: var(--color-neon-green);
    filter: drop-shadow(0 0 20px var(--color-neon-green));
    animation: power-pulse 2s ease-in-out infinite;
}

@keyframes power-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* =====================================================
   SERVER SECTION
   ===================================================== */
.server-section {
    background: linear-gradient(180deg, transparent, rgba(0, 255, 255, 0.02) 50%, transparent);
}

.server-showcase {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.server-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
}

.server-box {
    width: 280px;
    height: 350px;
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 60px rgba(0, 255, 255, 0.2),
        0 30px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.server-lights {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-md);
    justify-content: flex-end;
}

.server-lights .light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: light-blink 2s ease-in-out infinite;
}

.server-lights .light.green {
    background: var(--color-neon-green);
    box-shadow: 0 0 10px var(--color-neon-green);
}

.server-lights .light.blue {
    background: var(--color-neon-cyan);
    box-shadow: 0 0 10px var(--color-neon-cyan);
    animation-delay: 0.5s;
}

@keyframes light-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.server-front {
    padding: var(--space-md);
}

.server-screen {
    background: #000;
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
    height: 180px;
    overflow: hidden;
}

.screen-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.screen-line {
    height: 8px;
    background: linear-gradient(90deg, var(--color-neon-cyan), transparent);
    border-radius: 4px;
    animation: line-load 2s ease-in-out infinite;
}

.screen-line.short {
    width: 60%;
}

@keyframes line-load {
    0% { opacity: 0.3; transform: scaleX(0.5); }
    50% { opacity: 1; transform: scaleX(1); }
    100% { opacity: 0.3; transform: scaleX(0.5); }
}

.screen-chart {
    height: 80px;
    margin-top: var(--space-sm);
    background: 
        linear-gradient(180deg, transparent 0%, rgba(0, 255, 255, 0.1) 100%),
        repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(0, 255, 255, 0.1) 20px, rgba(0, 255, 255, 0.1) 21px);
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
}

.screen-chart::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, transparent, rgba(0, 255, 255, 0.2));
    clip-path: polygon(0% 100%, 10% 60%, 20% 80%, 30% 40%, 40% 60%, 50% 30%, 60% 50%, 70% 20%, 80% 40%, 90% 10%, 100% 30%, 100% 100%);
    animation: chart-move 3s ease-in-out infinite;
}

@keyframes chart-move {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-5px); }
}

.server-vents {
    display: flex;
    gap: 4px;
    margin-top: var(--space-md);
    justify-content: center;
}

.server-vents span {
    width: 40px;
    height: 6px;
    background: linear-gradient(180deg, #333 0%, #1a1a1a 100%);
    border-radius: 3px;
}

.server-glow {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 255, 255, 0.3) 0%, transparent 70%);
    pointer-events: none;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.server-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: var(--radius-full);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.badge-icon {
    font-size: 1rem;
}

.server-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.server-price {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.price-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
}

.price-amount {
    display: flex;
    align-items: baseline;
}

.price-amount .currency {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-secondary);
}

.price-amount .amount {
    font-family: var(--font-mono);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.price-note {
    font-size: 0.875rem;
    color: var(--color-neon-green);
}

.server-specs {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.server-specs h4 {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-neon-cyan);
    margin-bottom: var(--space-lg);
}

.specs-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.specs-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.spec-icon {
    font-size: 1.25rem;
    width: 30px;
    text-align: center;
}

.spec-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.spec-label {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

.spec-value {
    font-size: 0.9375rem;
    color: var(--color-text);
}

.server-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
}

.feature-item .check {
    color: var(--color-neon-green);
    text-shadow: 0 0 10px var(--color-neon-green);
}

/* Server Section Responsive */
@media (max-width: 1024px) {
    .server-showcase {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .server-visual {
        order: 2;
    }
    
    .server-info {
        order: 1;
    }
}

@media (max-width: 768px) {
    .server-features {
        grid-template-columns: 1fr;
    }
    
    .price-amount .amount {
        font-size: 3.5rem;
    }
    
    .server-box {
        width: 240px;
        height: 300px;
    }
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.2), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 0, 255, 0.2), transparent 50%);
    animation: cta-pulse 5s ease-in-out infinite alternate;
}

@keyframes cta-pulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.cta-content {
    position: relative;
    text-align: center;
    padding: var(--space-3xl) 0;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    color: var(--color-text-secondary);
    font-size: 1.25rem;
    margin-bottom: var(--space-2xl);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--color-bg-deep);
    border-top: 1px solid var(--color-border);
    padding: var(--space-4xl) 0 var(--space-2xl);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand {
    max-width: 350px;
}

.footer-brand .logo {
    margin-bottom: var(--space-lg);
}

.footer-brand p {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text-secondary);
    transition: all var(--transition-base);
}

.social-links a:hover {
    border-color: var(--color-neon-cyan);
    color: var(--color-neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
}

.footer-col h4 {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-neon-cyan);
    margin-bottom: var(--space-xl);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: var(--space-sm);
}

.footer-col a {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
}

.footer-col a:hover {
    color: var(--color-text);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
    display: inline-block;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--color-border);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-text-muted);
    gap: var(--space-xl);
    flex-wrap: wrap;
}

/* Newsletter Section */
.footer-newsletter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
    border: 1px solid var(--color-border-glow);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    margin-bottom: var(--space-3xl);
    gap: var(--space-xl);
}

.newsletter-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.newsletter-content p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: var(--space-md);
    flex-shrink: 0;
}

.newsletter-form input {
    padding: var(--space-md) var(--space-lg);
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: 0.95rem;
    min-width: 280px;
    transition: all var(--transition-base);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.newsletter-form input::placeholder {
    color: var(--color-text-muted);
}

/* Footer Links - 4 columns */
.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2xl);
}

/* Footer Offices */
.footer-offices {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    padding: var(--space-2xl) 0;
    margin: var(--space-2xl) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.footer-office {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.office-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.2));
}

.office-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.office-info strong {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
}

.office-info span {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.office-info .office-license {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--color-neon-green);
    margin-top: 2px;
}

/* Trust Badges */
.footer-trust {
    padding: var(--space-xl) 0;
    margin-bottom: var(--space-xl);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.trust-badge:hover {
    border-color: var(--color-neon-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.badge-icon {
    font-size: 1.1rem;
}

.badge-text {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Footer Bottom Enhanced */
.footer-bottom-left,
.footer-bottom-right {
    flex-shrink: 0;
}

.footer-bottom-center {
    flex: 1;
    text-align: center;
}

.risk-warning {
    color: var(--color-neon-orange);
    font-size: 0.7rem;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.language-selector span {
    font-size: 1rem;
}

.language-selector select {
    background: transparent;
    border: none;
    color: var(--color-text-secondary);
    font-family: var(--font-display);
    font-size: 0.85rem;
    cursor: pointer;
    outline: none;
}

.language-selector select option {
    background: var(--color-bg-elevated);
    color: var(--color-text);
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

/* Desktop - fullscreen hero */
@media (min-width: 1025px) {
    .hero {
        padding: 80px var(--space-3xl) var(--space-xl);
    }
}

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px var(--space-md) var(--space-sm);
        gap: var(--space-sm);
        height: 100vh;
        max-height: 100vh;
        overflow: hidden;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
    }
    
    .hero-badge-new {
        margin-bottom: var(--space-sm);
    }
    
    .title-line-1 {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 0;
    }
    
    .title-line-2 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: var(--space-xs);
    }
    
    .title-tagline {
        margin-bottom: var(--space-sm);
        font-size: 0.7rem;
    }
    
    .hero-description-new {
        font-size: 0.9rem;
        margin-bottom: var(--space-sm);
        line-height: 1.5;
    }
    
    .hero-cta {
        justify-content: center;
        margin-bottom: var(--space-sm);
        gap: var(--space-sm);
    }
    
    .btn-large {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--space-md);
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
    
    .stat::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-visual {
        flex: 0;
    }
    
    .trading-card {
        padding: var(--space-md);
        max-width: 100%;
    }
    
    .price-value {
        font-size: 1.8rem;
    }
    
    .card-price {
        margin-bottom: var(--space-md);
    }
    
    .floating-cards {
        display: none;
    }
    
    .performance .container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .step {
        grid-template-columns: auto 1fr;
    }
    
    .step-visual {
        display: none;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        font-size: 15px;
    }
    
    .nav-links,
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .hero-stats {
        gap: var(--space-lg);
    }
    
    .stat-divider {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-newsletter {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-form input {
        min-width: auto;
        width: 100%;
    }
    
    .footer-offices {
        flex-direction: column;
        gap: var(--space-xl);
        align-items: center;
        text-align: center;
    }
    
    .footer-office {
        flex-direction: column;
    }
    
    .trust-badges {
        gap: var(--space-md);
    }
    
    .footer-bottom-left,
    .footer-bottom-center,
    .footer-bottom-right {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .trading-card {
        max-width: 100%;
        padding: var(--space-lg);
    }
    
    .step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-md);
    }
    
    .step-number {
        font-size: 3rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
        margin: 0 auto;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Selection */
::selection {
    background: var(--color-neon-cyan);
    color: var(--color-bg);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-neon-cyan), var(--color-neon-magenta));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-neon-cyan);
}

/* Glitch Effect for Special Text */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--color-neon-magenta);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--color-neon-cyan);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(100px, 9999px, 100px, 0); }
    5% { clip: rect(50px, 9999px, 150px, 0); }
    10% { clip: rect(20px, 9999px, 100px, 0); }
    15% { clip: rect(80px, 9999px, 120px, 0); }
    20% { clip: rect(60px, 9999px, 100px, 0); }
    25% { clip: rect(40px, 9999px, 90px, 0); }
    30% { clip: rect(30px, 9999px, 110px, 0); }
    35% { clip: rect(70px, 9999px, 130px, 0); }
    40% { clip: rect(10px, 9999px, 80px, 0); }
    45% { clip: rect(90px, 9999px, 140px, 0); }
    50% { clip: rect(25px, 9999px, 95px, 0); }
    55% { clip: rect(55px, 9999px, 115px, 0); }
    60% { clip: rect(75px, 9999px, 125px, 0); }
    65% { clip: rect(35px, 9999px, 105px, 0); }
    70% { clip: rect(45px, 9999px, 85px, 0); }
    75% { clip: rect(65px, 9999px, 135px, 0); }
    80% { clip: rect(15px, 9999px, 75px, 0); }
    85% { clip: rect(85px, 9999px, 145px, 0); }
    90% { clip: rect(5px, 9999px, 65px, 0); }
    95% { clip: rect(95px, 9999px, 155px, 0); }
    100% { clip: rect(50px, 9999px, 100px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(50px, 9999px, 150px, 0); }
    5% { clip: rect(100px, 9999px, 100px, 0); }
    10% { clip: rect(80px, 9999px, 120px, 0); }
    15% { clip: rect(20px, 9999px, 100px, 0); }
    20% { clip: rect(40px, 9999px, 90px, 0); }
    25% { clip: rect(60px, 9999px, 100px, 0); }
    30% { clip: rect(70px, 9999px, 130px, 0); }
    35% { clip: rect(30px, 9999px, 110px, 0); }
    40% { clip: rect(90px, 9999px, 140px, 0); }
    45% { clip: rect(10px, 9999px, 80px, 0); }
    50% { clip: rect(55px, 9999px, 115px, 0); }
    55% { clip: rect(25px, 9999px, 95px, 0); }
    60% { clip: rect(35px, 9999px, 105px, 0); }
    65% { clip: rect(75px, 9999px, 125px, 0); }
    70% { clip: rect(65px, 9999px, 135px, 0); }
    75% { clip: rect(45px, 9999px, 85px, 0); }
    80% { clip: rect(85px, 9999px, 145px, 0); }
    85% { clip: rect(15px, 9999px, 75px, 0); }
    90% { clip: rect(95px, 9999px, 155px, 0); }
    95% { clip: rect(5px, 9999px, 65px, 0); }
    100% { clip: rect(50px, 9999px, 150px, 0); }
}

/* =====================================================
   Contact Section - Global Offices
   ===================================================== */

.contact-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--color-bg-deep) 0%, var(--color-bg) 50%, var(--color-bg-deep) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 20%, rgba(0, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 80% 50% at 80% 80%, rgba(255, 0, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
    position: relative;
    z-index: 1;
}

.office-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.office-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.office-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-border-glow);
    box-shadow: 
        0 20px 60px rgba(0, 255, 255, 0.15),
        0 0 40px rgba(0, 255, 255, 0.1);
}

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

.office-flag {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
    filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.3));
}

.office-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-xl);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.detail-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.detail-icon {
    font-size: 1.25rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-glass);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.detail-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-neon-cyan);
}

.detail-value {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.office-license {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
}

.office-license span:first-child {
    color: var(--color-neon-green);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.office-license span:first-child::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: rgba(0, 255, 136, 0.2);
    border-radius: 50%;
    font-size: 0.6rem;
}

.license-number {
    color: var(--color-text-muted);
}

/* Contact CTA */
.contact-cta {
    margin-top: var(--space-3xl);
    position: relative;
    z-index: 1;
}

.contact-info-box {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
    border: 1px solid var(--color-border-glow);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
}

.contact-info-box h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.contact-info-box p {
    color: var(--color-text-secondary);
    max-width: 500px;
    margin: 0 auto var(--space-xl);
    line-height: 1.7;
}

.support-channels {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.support-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.support-item:hover {
    border-color: var(--color-neon-cyan);
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.support-icon {
    font-size: 1.25rem;
}

/* Contact Section Responsive */
@media (max-width: 768px) {
    .offices-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .office-card {
        padding: var(--space-xl);
    }
    
    .office-flag {
        font-size: 2.5rem;
    }
    
    .office-card h3 {
        font-size: 1.5rem;
    }
    
    .office-license {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
    
    .contact-info-box {
        padding: var(--space-xl);
    }
    
    .support-channels {
        flex-direction: column;
        align-items: stretch;
    }
    
    .support-item {
        justify-content: center;
    }
}

/* ========================================
   SUBPAGES STYLES
======================================== */

/* Page Header */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(180deg, rgba(0, 255, 255, 0.05) 0%, transparent 100%);
    text-align: center;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, #fff, var(--color-neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-description {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Page Content */
.page-content {
    padding: var(--space-3xl) 0;
}

/* Features Detail Grid */
.features-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.feature-detail-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: var(--space-xl);
    transition: all 0.3s ease;
}

.feature-detail-card:hover {
    background: rgba(0, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.2);
    transform: translateY(-5px);
}

.feature-detail-card .feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.feature-detail-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--color-text-primary);
}

.feature-detail-card p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Server Specs Detail */
.server-specs-detail {
    max-width: 800px;
    margin: 0 auto;
}

.server-specs-detail h2 {
    font-size: 2rem;
    margin-bottom: var(--space-xl);
    text-align: center;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.spec-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: var(--space-lg);
    text-align: center;
}

.spec-item .spec-label {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-tertiary);
    margin-bottom: var(--space-xs);
}

.spec-item .spec-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-neon-cyan);
}

.server-cta {
    text-align: center;
}

.price-display {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
}

.price-display .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-neon-cyan);
}

/* API Docs Styles */
.api-docs {
    max-width: 900px;
    margin: 0 auto;
}

.api-section {
    margin-bottom: var(--space-2xl);
}

.api-section h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--color-text-primary);
}

.api-section p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.code-block {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: var(--space-lg);
    margin-top: var(--space-md);
    overflow-x: auto;
}

.code-block code {
    font-family: 'Inter', monospace;
    font-size: 0.875rem;
    color: var(--color-neon-cyan);
    white-space: pre;
}

.api-endpoints {
    margin-top: var(--space-2xl);
}

.api-endpoints h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

.endpoint {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: var(--space-sm);
}

.endpoint .method {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.endpoint .method.get {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
}

.endpoint .method.post {
    background: rgba(0, 136, 255, 0.2);
    color: #0088ff;
}

.endpoint .method.delete {
    background: rgba(255, 68, 68, 0.2);
    color: #ff4444;
}

.endpoint .path {
    font-family: 'Inter', monospace;
    color: var(--color-text-primary);
}

.endpoint .desc {
    color: var(--color-text-tertiary);
    margin-left: auto;
}

/* Changelog Styles */
.changelog-list {
    max-width: 800px;
    margin: 0 auto;
}

.changelog-item {
    border-left: 2px solid var(--color-neon-cyan);
    padding-left: var(--space-xl);
    margin-bottom: var(--space-2xl);
    position: relative;
}

.changelog-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    width: 10px;
    height: 10px;
    background: var(--color-neon-cyan);
    border-radius: 50%;
}

.changelog-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.changelog-header .version {
    background: rgba(0, 255, 255, 0.1);
    color: var(--color-neon-cyan);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.changelog-header .date {
    color: var(--color-text-tertiary);
}

.changelog-content h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    color: var(--color-text-primary);
}

.changelog-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-md);
}

.changelog-content li {
    color: var(--color-text-secondary);
    padding-left: var(--space-lg);
    position: relative;
    margin-bottom: var(--space-xs);
}

.changelog-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-neon-cyan);
}

/* Status Page Styles */
.status-overview {
    margin-bottom: var(--space-2xl);
}

.status-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 600;
}

.status-banner.operational {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.status-list {
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: var(--space-sm);
}

.service-name {
    color: var(--color-text-primary);
}

.service-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.service-status.operational {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
}

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

.uptime-stats h2 {
    margin-bottom: var(--space-lg);
}

.uptime-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
}

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

.uptime-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-neon-cyan);
}

.uptime-label {
    color: var(--color-text-tertiary);
}

/* About Page Styles */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: var(--space-2xl);
}

.about-section h2 {
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
    color: var(--color-text-primary);
}

.about-section p {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.value-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: var(--space-lg);
}

.value-item h3 {
    color: var(--color-neon-cyan);
    margin-bottom: var(--space-sm);
}

.value-item p {
    font-size: 0.9rem;
}

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.blog-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.2);
}

.blog-image {
    height: 150px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.blog-content {
    padding: var(--space-lg);
}

.blog-date {
    font-size: 0.875rem;
    color: var(--color-text-tertiary);
}

.blog-card h3 {
    font-size: 1.125rem;
    margin: var(--space-sm) 0;
    color: var(--color-text-primary);
}

.blog-card p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

.read-more {
    color: var(--color-neon-cyan);
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

/* Careers Styles */
.careers-intro {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.careers-intro h2 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.careers-intro p {
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

.benefit-item {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.1);
    padding: var(--space-sm) var(--space-lg);
    border-radius: 20px;
    color: var(--color-neon-cyan);
}

.job-listings h2 {
    font-size: 1.75rem;
    margin-bottom: var(--space-xl);
    text-align: center;
}

.job-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.job-header h3 {
    font-size: 1.25rem;
    color: var(--color-text-primary);
}

.job-location {
    color: var(--color-neon-cyan);
    font-size: 0.9rem;
}

.job-card p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
}

/* Contact Form Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info h2,
.contact-form h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

.contact-info .office-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.contact-info .office-card h3 {
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
}

.contact-info .office-card p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xs);
}

.support-info {
    margin-top: var(--space-xl);
}

.support-info h3 {
    color: var(--color-neon-cyan);
    margin-bottom: var(--space-sm);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group label {
    font-weight: 500;
    color: var(--color-text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: var(--space-md);
    color: var(--color-text-primary);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-neon-cyan);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Help Center Styles */
.help-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.help-category {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: var(--space-xl);
}

.help-category h2 {
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
    color: var(--color-text-primary);
}

.faq-list {
    list-style: none;
    padding: 0;
}

.faq-list li {
    margin-bottom: var(--space-md);
}

.faq-list a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.faq-list a:hover {
    color: var(--color-neon-cyan);
}

.contact-support {
    text-align: center;
    padding: var(--space-2xl);
    background: rgba(0, 255, 255, 0.05);
    border-radius: 16px;
}

.contact-support h2 {
    margin-bottom: var(--space-sm);
}

.contact-support p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
}

/* Trading Guide Styles */
.guide-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.guide-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: var(--space-xl);
}

.guide-level {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.guide-level.beginner {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
}

.guide-level.intermediate {
    background: rgba(255, 200, 0, 0.1);
    color: #ffc800;
}

.guide-level.advanced {
    background: rgba(255, 68, 68, 0.1);
    color: #ff4444;
}

.guide-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--color-text-primary);
}

.guide-card p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
}

/* Video Tutorials Styles */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.video-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.2);
}

.video-thumbnail {
    height: 160px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.video-card h3 {
    padding: var(--space-md) var(--space-lg) var(--space-xs);
    font-size: 1rem;
    color: var(--color-text-primary);
}

.video-card p {
    padding: 0 var(--space-lg) var(--space-md);
    color: var(--color-text-tertiary);
    font-size: 0.875rem;
}

/* Community Styles */
.community-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.channel-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: var(--space-xl);
    text-align: center;
}

.channel-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.channel-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--color-text-primary);
}

.channel-card p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
}

.community-stats {
    text-align: center;
    padding: var(--space-2xl);
    background: rgba(0, 255, 255, 0.02);
    border-radius: 16px;
}

.community-stats h2 {
    margin-bottom: var(--space-xl);
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-neon-cyan);
}

.stat-label {
    color: var(--color-text-tertiary);
}

/* Webinars Styles */
.webinar-section {
    margin-bottom: var(--space-3xl);
}

.webinar-section h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

.webinar-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.webinar-card {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: var(--space-xl);
}

.webinar-card.upcoming {
    border-color: rgba(0, 255, 255, 0.2);
}

.webinar-date {
    text-align: center;
    min-width: 60px;
}

.webinar-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-neon-cyan);
}

.webinar-date .month {
    font-size: 0.875rem;
    color: var(--color-text-tertiary);
    text-transform: uppercase;
}

.webinar-info {
    flex: 1;
}

.webinar-info h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    color: var(--color-text-primary);
}

.webinar-info p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xs);
}

.webinar-time {
    color: var(--color-text-tertiary);
    font-size: 0.875rem;
}

/* Legal Pages Styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: var(--space-2xl);
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--color-text-primary);
}

.legal-section h3 {
    font-size: 1.125rem;
    margin: var(--space-lg) 0 var(--space-sm);
    color: var(--color-text-primary);
}

.legal-section p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.legal-section ul {
    list-style: none;
    padding: 0;
}

.legal-section li {
    color: var(--color-text-secondary);
    padding-left: var(--space-lg);
    position: relative;
    margin-bottom: var(--space-sm);
}

.legal-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-neon-cyan);
}

.risk-warning-box {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 12px;
    padding: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.risk-warning-box h2 {
    color: #ff4444;
    margin-bottom: var(--space-md);
}

.risk-warning-box p {
    color: var(--color-text-primary);
}

/* Press Kit Styles */
.press-content {
    max-width: 800px;
    margin: 0 auto;
}

.press-section {
    margin-bottom: var(--space-2xl);
}

.press-section h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.facts-list {
    list-style: none;
    padding: 0;
}

.facts-list li {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
}

.facts-list strong {
    color: var(--color-text-primary);
}

.brand-assets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.asset-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: var(--space-xl);
    text-align: center;
}

.asset-preview {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: var(--space-md);
    color: var(--color-neon-cyan);
}

.asset-preview.light {
    background: #fff;
    color: #0a0a0a;
    padding: var(--space-md);
    border-radius: 8px;
}

.asset-card p {
    color: var(--color-text-tertiary);
    font-size: 0.875rem;
}
