/* ================================================
   FXCYCM - ULTRA LUXURY WEBSITE
   Billion-Dollar Design System
   ================================================ */

/* ---------- FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

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

/* ---------- COLOR SYSTEM ---------- */
:root {
    --black: #000000;
    --deep-black: #0a0a0a;
    --dark: #111111;
    --gold: #d4af37;
    --gold-light: #f4e4bc;
    --gold-dark: #b8941f;
    --white: #ffffff;
    --gray: #a8a8a8;
    --gray-dark: #1a1a1a;
    --cyan: #00f5ff;
    --purple: #a855f7;
    --blue: #3b82f6;
    
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4e4bc 50%, #d4af37 100%);
    --gradient-dark: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    --gradient-glow: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    
    /* Smooth transition curves */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* ---------- BODY ---------- */
body {
    background: var(--black);
    color: var(--white);
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ---------- TEXT SELECTION ---------- */
::selection {
    background: var(--gold);
    color: var(--black);
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* ================================================
   ULTRA-LUXURY BACKGROUND ANIMATION SYSTEM
   World-Class Visual Experience
   ================================================ */

/* Main Background Container - Always Visible */
.mega-background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 0%, rgba(10, 10, 10, 1) 0%, rgba(0, 0, 0, 1) 100%);
}

/* Layer 1: Animated Gradient Orbs (Optimized - reduced blur) */
.mega-background-animation::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(
        circle at center,
        rgba(212, 175, 55, 0.2) 0%,
        rgba(212, 175, 55, 0.1) 40%,
        transparent 70%
    );
    border-radius: 50%;
    animation: ultraOrbFloat1 30s ease-in-out infinite;
    filter: blur(40px);
    will-change: transform;
}

.mega-background-animation::after {
    content: '';
    position: absolute;
    bottom: -25%;
    right: -15%;
    width: 900px;
    height: 900px;
    background: radial-gradient(
        circle at center,
        rgba(0, 245, 255, 0.15) 0%,
        rgba(59, 130, 246, 0.1) 40%,
        transparent 70%
    );
    border-radius: 50%;
    animation: ultraOrbFloat2 35s ease-in-out infinite;
    filter: blur(40px);
    will-change: transform;
}

@keyframes ultraOrbFloat1 {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(80px, -60px, 0);
    }
}

@keyframes ultraOrbFloat2 {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(-100px, 70px, 0);
    }
}

/* Layer 2: Energy Grid System - Premium Tech Feel (Optimized) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
    will-change: transform;
}

/* Layer 3: Light Streak Particles (Simplified for performance) */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: 
        radial-gradient(ellipse 300px 1px at 20% 30%, rgba(212, 175, 55, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 350px 1px at 80% 60%, rgba(0, 245, 255, 0.2) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
}

/* Layer 4: Cinematic Spotlight Effect (Simplified) */
.mega-background-animation {
    background: 
        radial-gradient(ellipse 150% 100% at 50% 0%, rgba(212, 175, 55, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 0%, rgba(10, 10, 10, 1) 0%, rgba(0, 0, 0, 1) 100%);
}

/* Layer 5: Floating Energy Particles - GPU Optimized */
.particle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.8), transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: particleFloat 6s ease-in-out infinite;
    will-change: transform, opacity;
}

.particle.cyan {
    background: radial-gradient(circle, rgba(0, 245, 255, 0.7), transparent);
}

.particle.purple {
    background: radial-gradient(circle, rgba(168, 85, 247, 0.7), transparent);
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    50% {
        transform: translate3d(20px, -80px, 0) scale(1);
        opacity: 0.6;
    }
    90% {
        opacity: 0.8;
    }
}

/* Layer 6: Glow Pulses at Key Positions (Optimized) */
.hero::before,
.ea-section::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: sectionGlowPulse 10s ease-in-out infinite;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
    will-change: opacity;
}

@keyframes sectionGlowPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* Layer 7: REMOVED - Scan line effect removed per user request */

/* Layer 8: Radial Waves - Luxury Depth (Optimized) */
.radial-wave {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    animation: radialExpand 8s ease-out infinite;
    will-change: transform, opacity;
}

@keyframes radialExpand {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(15);
        opacity: 0;
    }
}

/* ---------- SMOOTH TRANSITIONS (Performance Optimized) ---------- */
/* Remove global transitions - they kill performance! */
/* Transitions are applied only to specific elements that need them */

/* ---------- LINK RESET ---------- */
a {
    color: var(--gold);
    text-decoration: none;
}

/* ================================================
   LOADING SCREEN
   ================================================ */

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-logo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 40px;
    animation: logoFloat 2s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.loader-bar {
    width: 250px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 10px;
    animation: loadProgress 1.8s ease-out forwards;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

@keyframes loadProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ================================================
   FUTURISTIC NAVIGATION
   Next-Gen Animation System
   ================================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 9999;
    background: transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.1);
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}

.logo-text {
    color: var(--white);
    letter-spacing: 3px;
    position: relative;
}

.logo-text span {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover .logo-text::after {
    width: 100%;
}

/* FUTURISTIC NAV LINKS */
.nav-links {
    display: flex;
    list-style: none;
    gap: 45px;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding: 8px 0;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-link:hover {
    color: var(--gold);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover::after {
    width: 200px;
    height: 200px;
}

.nav-link.active {
    color: var(--gold);
}

.nav-link.active::before {
    width: 100%;
}

/* FUTURISTIC NAV BUTTON */
.nav-btn {
    padding: 12px 32px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-btn:hover {
    color: var(--black);
    border-color: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.nav-btn:hover::before {
    left: 0;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ================================================
   HERO SECTION
   Ultra-Premium Landing
   ================================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 140px 50px 100px 50px;
}

.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.gold-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 0 100px rgba(212, 175, 55, 0.1);
}

.circle-1 {
    width: 700px;
    height: 700px;
    top: -250px;
    right: -150px;
    animation: circleFloat 12s ease-in-out infinite;
}

.circle-2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -150px;
    animation: circleFloat 15s ease-in-out infinite reverse;
}

@keyframes circleFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% {
        transform: translate(30px, -40px) rotate(120deg) scale(1.05);
    }
    66% {
        transform: translate(-30px, 40px) rotate(240deg) scale(0.95);
    }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 60px;
    }
}

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

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 30px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
    animation: fadeSlideUp 1s ease-out forwards;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.label-dot {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 82px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 35px;
    animation: fadeSlideUp 1s ease-out 0.2s forwards;
    opacity: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gold-text {
    color: var(--gold);
    display: block;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 3s ease-in-out infinite;
}

@keyframes goldShimmer {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

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

.hero-subtitle {
    font-size: 21px;
    font-weight: 400;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 50px;
    animation: fadeSlideUp 1s ease-out 0.4s forwards;
    opacity: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
    animation: fadeSlideUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 45px;
    background: var(--gradient-gold);
    color: var(--black);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.5);
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-arrow {
    font-size: 20px;
    transition: transform 0.4s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(8px);
}

.btn-secondary {
    padding: 20px 45px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.1);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-5px);
}

.btn-secondary:hover::before {
    left: 0;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray);
    animation: fadeSlideUp 1s ease-out 0.8s forwards;
    opacity: 0;
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border-radius: 50%;
    font-size: 14px;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

/* ================================================
   RESULTS SECTION
   Premium Card Design
   ================================================ */

.results-section {
    padding: 140px 50px;
    background: var(--deep-black);
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 90px auto;
}

.section-label {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 58px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 19px;
    color: var(--gray);
    line-height: 1.8;
}

.results-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
}

.result-card {
    position: relative;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 45px 40px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
}

.result-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 30px 70px rgba(212, 175, 55, 0.2);
}

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

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.result-card:hover .card-glow {
    opacity: 1;
    animation: glowPulse 2s ease-in-out infinite;
}

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

.result-card.featured {
    border-color: rgba(212, 175, 55, 0.5);
    transform: scale(1.05);
    background: linear-gradient(145deg, #252525, #1a1a1a);
}

.result-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.featured-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 30px;
    background: var(--gradient-gold);
    color: var(--black);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    z-index: 1;
}

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

.card-badge {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 15px;
    color: var(--gold);
    transition: all 0.4s ease;
}

.result-card:hover .card-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.card-growth {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.growth-from, .growth-to {
    text-align: center;
}

.growth-label {
    display: block;
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.growth-amount {
    font-family: 'Orbitron', monospace;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
}

.growth-amount.highlight {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.growth-arrow {
    color: var(--gold);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.result-card:hover .growth-arrow {
    opacity: 1;
    transform: translateX(10px);
}

.card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 30px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.card-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.15);
    transition: left 0.5s ease;
    z-index: -1;
}

.card-btn:hover {
    border-color: rgba(212, 175, 55, 0.5);
    color: var(--gold);
}

.card-btn:hover::before {
    left: 0;
}

.youtube-icon {
    display: flex;
    color: #ff0000;
}

.results-footer {
    margin-top: 90px;
    display: flex;
    justify-content: center;
}

.trust-message {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    max-width: 700px;
    padding: 35px 45px;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.1);
}

.trust-icon-large {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 15px;
    color: var(--gold);
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trust-text strong {
    font-size: 18px;
    color: var(--white);
}

.trust-text span {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

/* ================================================
   COPY TRADING SECTION
   ================================================ */

.copy-trading-section {
    padding: 140px 50px;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.ct-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.ct-gradient-orb {
    position: absolute;
    top: 50%;
    left: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent 70%);
    transform: translateY(-50%);
    animation: orbFloat 15s ease-in-out infinite;
    filter: blur(80px);
}

@keyframes orbFloat {
    0%, 100% {
        transform: translateY(-50%) scale(1);
    }
    50% {
        transform: translateY(-60%) scale(1.2);
    }
}

.ct-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: start;
}

.ct-info {
    padding-right: 40px;
}

.ct-info .section-title {
    text-align: left;
    margin-bottom: 40px;
}

.ct-explanation {
    margin-bottom: 50px;
}

.ct-explanation p {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 25px;
}

.ct-explanation p:last-child {
    margin-bottom: 0;
}

.ct-explanation strong {
    color: var(--white);
}

.ct-benefits {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 40px;
}

.benefits-title {
    font-family: 'Orbitron', monospace;
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.benefits-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.benefits-list li:first-child {
    padding-top: 0;
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 15px;
    color: var(--gold);
    transition: all 0.4s ease;
}

.benefits-list li:hover .benefit-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.benefit-text strong {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
}

.benefit-text span {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}

.telegram-cta-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 245, 255, 0.05) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    padding: 35px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.2);
}

.telegram-icon-large {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 136, 204, 0.2);
    border-radius: 20px;
    color: #0088cc;
    animation: telegramPulseOptimized 2s ease-in-out infinite;
    will-change: transform, box-shadow;
    transform: translateZ(0);
    backface-visibility: hidden;
}

@keyframes telegramPulseOptimized {
    0%, 100% {
        transform: translateZ(0) scale(1);
        box-shadow: 0 0 20px rgba(0, 136, 204, 0.3);
    }
    50% {
        transform: translateZ(0) scale(1.05);
        box-shadow: 0 0 40px rgba(0, 136, 204, 0.5);
    }
}

.telegram-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.telegram-text strong {
    font-size: 18px;
    color: var(--white);
}

.telegram-text span {
    font-size: 14px;
    color: var(--gray);
}

.telegram-btn {
    padding: 15px 30px;
    background: #0088cc;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                background-color 0.3s ease;
    will-change: transform, box-shadow;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.telegram-btn:hover {
    background: #006699;
    transform: translateZ(0) translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 136, 204, 0.4);
}

.ct-action {
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-badges {
    text-align: center;
}

.badges-label {
    display: block;
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
}

.badges-row {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.platform-badge {
    padding: 18px 30px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.4s ease;
}

.platform-badge:hover {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.08);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.badge-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

/* ================================================
   EA TRADING SECTION (NEW)
   Ultra-Premium Design
   ================================================ */

.ea-section {
    padding: 140px 50px;
    background: var(--deep-black);
    position: relative;
    overflow: hidden;
}

.ea-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.ea-orb-1 {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.08), transparent 70%);
    border-radius: 50%;
    animation: eaOrbFloat1 20s ease-in-out infinite;
    filter: blur(70px);
}

.ea-orb-2 {
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.06), transparent 70%);
    border-radius: 50%;
    animation: eaOrbFloat2 18s ease-in-out infinite;
    filter: blur(60px);
}

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

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

.ea-container {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
}

.ea-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.live-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(239, 68, 68, 0.6);
    }
}

.live-pulse {
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulseDot 1.5s ease-in-out infinite;
    box-shadow: 0 0 15px #ef4444;
}

@keyframes pulseDot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.ea-proof-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.ea-proof-card {
    position: relative;
    width: 100%;
    max-width: 900px;
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.2);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ea-proof-card:hover {
    transform: scale(1.02);
    box-shadow: 0 40px 100px rgba(212, 175, 55, 0.3);
}

.ea-proof-link {
    display: block;
    cursor: pointer;
    text-decoration: none;
}

.ea-proof-link .proof-image-wrapper {
    position: relative;
}

.ea-proof-link:hover .ea-proof-image {
    transform: scale(1.05);
}

.play-icon-ea {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 100px;
    height: 100px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 5;
}

.ea-proof-link:hover .play-icon-ea {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.play-icon-ea svg {
    margin-left: 4px;
}

.proof-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 12px 25px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold);
    border-radius: 50px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.proof-image-wrapper {
    position: relative;
    width: 100%;
}

.ea-proof-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.proof-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
    pointer-events: none;
}

.proof-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.stat-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

.stat-icon {
    font-size: 18px;
}

.ea-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.ea-feature {
    padding: 35px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s ease;
}

.ea-feature:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.ea-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    color: var(--gold);
    transition: all 0.4s ease;
}

.ea-feature:hover .ea-feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.ea-feature h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.ea-feature p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.ea-cta-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(0, 245, 255, 0.06) 100%);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25);
}

.ea-cta-content {
    display: flex;
    align-items: center;
    gap: 35px;
}

.ea-cta-icon {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 136, 204, 0.2);
    border-radius: 25px;
    color: #0088cc;
    animation: eaCtaPulseOptimized 2.5s ease-in-out infinite;
    will-change: transform, box-shadow;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.ea-cta-icon.live-chat-icon {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
    animation: liveChatPulse 2.5s ease-in-out infinite;
}

@keyframes eaCtaPulseOptimized {
    0%, 100% {
        transform: translateZ(0) scale(1);
        box-shadow: 0 0 30px rgba(0, 136, 204, 0.4);
    }
    50% {
        transform: translateZ(0) scale(1.08);
        box-shadow: 0 0 50px rgba(0, 136, 204, 0.6);
    }
}

@keyframes liveChatPulse {
    0%, 100% {
        transform: translateZ(0) scale(1);
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    }
    50% {
        transform: translateZ(0) scale(1.08);
        box-shadow: 0 0 50px rgba(212, 175, 55, 0.6);
    }
}

.ea-cta-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ea-cta-text strong {
    font-size: 24px;
    color: var(--white);
}

.ea-cta-text span {
    font-size: 16px;
    color: var(--gray);
}

.ea-telegram-btn,
.ea-livechat-btn {
    padding: 18px 40px;
    background: var(--gradient-gold);
    color: var(--black);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    will-change: transform, box-shadow;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.ea-telegram-btn:hover,
.ea-livechat-btn:hover {
    transform: translateZ(0) translateY(-5px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.5);
}

.ea-livechat-btn svg {
    transition: transform 0.3s ease;
}

.ea-livechat-btn:hover svg {
    transform: translateX(5px);
}


/* ================================================
   INDICATOR SECTION
   ================================================ */

.indicator-section {
    padding: 140px 50px;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.indicator-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.indicator-glow {
    position: absolute;
    top: 25%;
    right: -12%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent 70%);
    animation: indicatorGlowMove 18s ease-in-out infinite;
    filter: blur(70px);
}

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

.indicator-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: gridSlide 30s linear infinite;
}

@keyframes gridSlide {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

.indicator-container {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
    margin-top: 60px;
}

.indicator-container-centered {
    display: flex;
    justify-content: center;
}

.indicator-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.indicator-details-full {
    max-width: 700px;
    width: 100%;
}

.features-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 40px;
}

.features-heading {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.feature-item:first-child {
    padding-top: 0;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 15px;
    color: var(--gold);
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.feature-content strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.pricing-card {
    background: linear-gradient(145deg, #1f1f1f, #0f0f0f);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    padding: 45px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.price-current {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 35px;
}

.currency {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
}

.amount {
    font-family: 'Orbitron', monospace;
    font-size: 72px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.period {
    font-size: 18px;
    color: var(--gray);
    margin-left: 5px;
}

.included-list {
    list-style: none;
    text-align: left;
    margin-bottom: 35px;
}

.included-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    font-size: 15px;
    color: var(--gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.included-list li:last-child {
    border-bottom: none;
}

.purchase-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    padding: 22px 40px;
    background: var(--gradient-gold);
    color: var(--black);
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 15px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
    will-change: transform, box-shadow;
}

.purchase-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.purchase-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.6);
}

.purchase-btn:hover::before {
    width: 400px;
    height: 400px;
}

.purchase-btn svg {
    transition: transform 0.4s ease;
}

.purchase-btn:hover svg {
    transform: translateX(8px);
}

.security-info {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
}

.security-item svg {
    color: var(--gold);
}

/* ================================================
   FAQ SECTION
   ================================================ */

.faq-section {
    padding: 140px 50px 60px 50px;
    background: var(--deep-black);
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
    margin-top: 70px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-category-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.category-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 15px;
    color: var(--gold);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    background: rgba(212, 175, 55, 0.02);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    padding: 25px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span:first-child {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.5;
    transition: color 0.3s ease;
}

.faq-question:hover span:first-child {
    color: var(--gold);
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
}

.icon-line {
    position: absolute;
    width: 14px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

.icon-line:last-child {
    transform: rotate(90deg);
}

.faq-item.active .icon-line:last-child {
    transform: rotate(0deg);
    opacity: 0;
}

.faq-item.active .faq-question span:first-child {
    color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s ease 0.1s,
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    opacity: 1;
    transform: translateY(0);
}

.faq-answer p {
    padding: 0 20px 25px 20px;
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
}

.faq-answer strong {
    color: var(--white);
}

.faq-footer {
    max-width: 1000px;
    margin: 40px auto 0 auto;
}

.faq-footer-content {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px 50px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.03) 100%);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.15);
}

.footer-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    color: var(--gold);
}

.footer-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-text strong {
    font-size: 20px;
    color: var(--white);
}

.footer-text span {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}

.footer-btn {
    flex-shrink: 0;
    padding: 16px 35px;
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 12px;
    color: var(--gold);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.footer-btn:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* ================================================
   FOOTER
   ================================================ */

.footer {
    background: var(--black);
    padding: 60px 50px 50px 50px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    padding-right: 40px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 25px;
}

.footer-logo-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.footer-description {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
}

.footer-links-group h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links-group ul {
    list-style: none;
}

.footer-links-group li {
    margin-bottom: 18px;
}

.footer-links-group a {
    font-size: 15px;
    color: var(--gray);
    transition: all 0.3s ease;
}

.footer-links-group a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.footer-newsletter h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-newsletter p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    color: var(--white);
}

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

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.newsletter-form button {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    border: none;
    border-radius: 12px;
    color: var(--black);
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.footer-divider {
    height: 1px;
    background: rgba(212, 175, 55, 0.1);
    margin-bottom: 35px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.copyright {
    font-size: 15px;
    color: var(--gray);
    text-align: center;
}

.risk-disclaimer {
    font-size: 13px;
    color: var(--gray);
    opacity: 0.8;
    text-align: center;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
}

/* ================================================
   MOBILE MENU
   ================================================ */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 450px;
    height: 100vh;
    background: linear-gradient(180deg, #0f0f0f, #1a1a1a);
    z-index: 10000;
    padding: 120px 50px 50px 50px;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
}

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

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

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

.mobile-nav-links {
    list-style: none;
    margin-bottom: 50px;
}

.mobile-nav-links li {
    margin-bottom: 8px;
}

.mobile-nav-links a {
    display: block;
    padding: 18px 0;
    font-size: 19px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--gold);
    padding-left: 15px;
    border-color: rgba(212, 175, 55, 0.3);
}

.mobile-menu-btn.active span:first-child {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:last-child {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-cta-btn {
    display: block;
    padding: 20px 35px;
    background: var(--gradient-gold);
    color: var(--black);
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.mobile-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}


/* ================================================
   RESPONSIVE DESIGN
   Mobile & Tablet Breakpoints
   ================================================ */

@media (max-width: 1200px) {
    .ct-container {
        grid-template-columns: 1fr;
        gap: 70px;
    }
    
    .ct-info {
        padding-right: 0;
    }
    
    .ct-info .section-title {
        text-align: center;
    }
    
    .ct-info .section-label {
        display: block;
        text-align: center;
    }
    
    .ct-explanation p {
        text-align: center;
    }
    
    .ea-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 62px;
    }
    
    .results-container {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin: 0 auto;
    }
    
    .result-card.featured {
        transform: scale(1);
        order: -1;
    }
    
    .result-card.featured:hover {
        transform: translateY(-15px);
    }
    
    .section-title {
        font-size: 48px;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    
    .footer-brand {
        grid-column: span 2;
        padding-right: 0;
        text-align: center;
    }
    
    .footer-description {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-container {
        padding: 0 30px;
    }
    
    .logo {
        font-size: 26px;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .hero {
        padding: 120px 30px 80px 30px;
    }
    
    .hero-title {
        font-size: 44px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    
    .results-section {
        padding: 100px 30px;
    }
    
    .section-title {
        font-size: 38px;
    }
    
    .section-subtitle {
        font-size: 17px;
    }
    
    .result-card {
        padding: 35px 30px;
    }
    
    .growth-amount {
        font-size: 24px;
    }
    
    .trust-message {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 30px;
    }
    
    .copy-trading-section {
        padding: 100px 30px;
    }
    
    .ct-benefits {
        padding: 30px;
    }
    
    .benefits-title {
        font-size: 22px;
    }
    
    .benefit-icon {
        width: 44px;
        height: 44px;
    }
    
    .telegram-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .telegram-btn {
        width: 100%;
    }
    
    .badges-row {
        gap: 15px;
    }
    
    .platform-badge {
        width: 100%;
    }
    
    .ea-section {
        padding: 100px 30px;
    }
    
    .ea-features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .ea-feature {
        padding: 30px 25px;
    }
    
    .ea-cta-box {
        padding: 35px 30px;
    }
    
    .ea-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .ea-telegram-btn {
        width: 100%;
        justify-content: center;
    }
    
    .ea-proof-card {
        border-radius: 20px;
    }
    
    .proof-badge {
        top: 15px;
        left: 15px;
        padding: 10px 20px;
        font-size: 11px;
    }
    
    .proof-overlay {
        padding: 25px;
    }
    
    .proof-stats {
        gap: 10px;
    }
    
    .stat-pill {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .indicator-section {
        padding: 100px 30px;
    }
    
    .features-block {
        padding: 30px;
    }
    
    .pricing-card {
        padding: 35px 30px;
    }
    
    .amount {
        font-size: 58px;
    }
    
    .faq-section {
        padding: 100px 30px;
    }
    
    .faq-category-title {
        font-size: 20px;
    }
    
    .category-icon {
        width: 44px;
        height: 44px;
    }
    
    .faq-question {
        padding: 20px 15px;
    }
    
    .faq-question span:first-child {
        font-size: 16px;
    }
    
    .faq-footer-content {
        flex-direction: column;
        text-align: center;
        padding: 35px 30px;
        gap: 25px;
    }
    
    .footer-text {
        align-items: center;
    }
    
    .footer-btn {
        width: 100%;
        text-align: center;
    }
    
    .footer {
        padding: 80px 30px 40px 30px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-links-group {
        text-align: center;
    }
    
    .footer-links-group a:hover {
        padding-left: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .copyright {
        text-align: center;
    }
    
    .risk-disclaimer {
        text-align: center;
    }
    
    .mobile-menu {
        width: 90%;
        padding: 100px 30px 40px 30px;
    }
    
    .mobile-nav-links a {
        font-size: 17px;
        padding: 16px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .logo {
        font-size: 22px;
    }
    
    .logo-text {
        letter-spacing: 1px;
    }
    
    .amount {
        font-size: 48px;
    }
    
    .ea-cta-text strong {
        font-size: 20px;
    }
    
    .footer-logo-img {
        width: 70px;
        height: 70px;
    }
}

/* ================================================
   ULTRA-SMOOTH ANIMATIONS
   Performance Optimized
   ================================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Performance optimization */
.result-card,
.ea-feature,
.faq-item,
.platform-badge {
    will-change: transform;
}

/* GPU acceleration */
.btn-primary,
.btn-secondary,
.nav-btn,
.logo-img,
.card-icon {
    transform: translateZ(0);
    backface-visibility: hidden;
}


/* ================================================
   ENHANCED CARD HOVER EFFECTS
   Premium Mouse-Reactive Animations
   ================================================ */

/* Mouse-reactive glow on cards */
.result-card,
.ea-feature,
.pricing-card,
.platform-badge {
    position: relative;
    overflow: hidden;
}

.result-card::before,
.ea-feature::before,
.pricing-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent 60%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
    pointer-events: none;
    opacity: 0;
    z-index: 0;
}

.result-card:hover::before,
.ea-feature:hover::before,
.pricing-card:hover::before {
    width: 500px;
    height: 500px;
    opacity: 1;
}

/* Magnetic hover effect */
.btn-primary,
.nav-btn,
.telegram-btn,
.purchase-btn {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover,
.nav-btn:hover,
.telegram-btn:hover,
.purchase-btn:hover {
    transform: translateY(-5px) scale(1.02);
}

/* Enhanced section transitions */
section {
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
    z-index: 0;
}

section:hover::before {
    opacity: 1;
}

/* Glowing borders on focus */
.nav-link:focus,
.btn-primary:focus,
.btn-secondary:focus {
    outline: 2px solid rgba(212, 175, 55, 0.5);
    outline-offset: 4px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

/* Energy ripple on card click */
@keyframes energyRipple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

.result-card:active::after,
.ea-feature:active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4), transparent 60%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: energyRipple 0.8s ease-out;
    pointer-events: none;
}

/* Premium text shimmer on hover */
.section-title,
.hero-title {
    background-size: 200% 100%;
    transition: background-position 0.8s ease;
}

.section-title:hover,
.hero-title:hover {
    background-position: -100% 0;
}

/* 3D depth effect on cards */
.result-card,
.ea-feature {
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.result-card:hover,
.ea-feature:hover {
    transform: translateY(-15px) rotateX(2deg) scale(1.02);
}

/* Mobile optimizations - Disable intensive effects */
@media (max-width: 768px) {
    .particle,
    .scan-line,
    .radial-wave,
    .depth-layer {
        display: none;
    }
    
    .mega-background-animation::before,
    .mega-background-animation::after {
        filter: blur(50px);
    }
    
    body::before {
        animation: none;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .particle,
    .scan-line,
    .radial-wave {
        display: none;
    }
}

/* Performance boost - GPU acceleration */
.mega-background-animation,
.mega-background-animation::before,
.mega-background-animation::after,
body::before,
body::after,
.particle,
.scan-line,
.radial-wave,
.depth-layer {
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}


/* ================================================
   MESH GRADIENT OVERLAY
   Cinema-Grade Visual Depth
   ================================================ */

/* Animated mesh gradient - Creates organic, flowing color transitions */
.mesh-gradient-overlay {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(212, 175, 55, 0.2) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 245, 255, 0.15) 0%, transparent 45%),
        radial-gradient(ellipse at 40% 80%, rgba(168, 85, 247, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 20%, rgba(59, 130, 246, 0.12) 0%, transparent 40%),
        radial-gradient(ellipse at 10% 60%, rgba(212, 175, 55, 0.15) 0%, transparent 45%);
    filter: blur(80px);
    animation: meshGradientFlow 40s ease-in-out infinite;
}

@keyframes meshGradientFlow {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(3%, -2%) rotate(2deg) scale(1.05);
    }
    50% {
        transform: translate(-2%, 3%) rotate(-1deg) scale(0.98);
    }
    75% {
        transform: translate(2%, -1%) rotate(1deg) scale(1.03);
    }
}

/* Vignette effect for depth */
.vignette-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    mix-blend-mode: multiply;
}

/* Chromatic aberration effect on hover */
.hero-title,
.section-title {
    position: relative;
}

.hero-title::before,
.section-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.1), rgba(0, 255, 255, 0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hero-title:hover::before,
.section-title:hover::before {
    opacity: 1;
    animation: chromaticShift 2s ease-in-out infinite;
}

@keyframes chromaticShift {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(2px, -1px);
    }
    75% {
        transform: translate(-2px, 1px);
    }
}

/* Holographic effect on cards */
.result-card,
.ea-feature,
.pricing-card {
    background-image: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.02) 0%, 
            transparent 50%, 
            rgba(212, 175, 55, 0.03) 100%
        );
    background-size: 200% 200%;
    background-position: 0% 50%;
    transition: background-position 0.8s ease;
}

.result-card:hover,
.ea-feature:hover,
.pricing-card:hover {
    background-position: 100% 50%;
}

/* Light ray effect */
.light-ray {
    position: fixed;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100vh;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(212, 175, 55, 0.4) 20%, 
        rgba(212, 175, 55, 0.6) 50%, 
        rgba(212, 175, 55, 0.4) 80%, 
        transparent 100%
    );
    transform: translateX(-50%) rotate(15deg);
    z-index: 1;
    pointer-events: none;
    opacity: 0.3;
    filter: blur(2px);
    animation: lightRayPulse 4s ease-in-out infinite;
}

@keyframes lightRayPulse {
    0%, 100% {
        opacity: 0.2;
        transform: translateX(-50%) rotate(15deg) scaleY(1);
    }
    50% {
        opacity: 0.4;
        transform: translateX(-50%) rotate(15deg) scaleY(1.1);
    }
}

/* Aurora effect - Optimized */
.aurora {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, 
            transparent 0%, 
            rgba(212, 175, 55, 0.05) 25%, 
            rgba(0, 245, 255, 0.04) 50%, 
            rgba(168, 85, 247, 0.05) 75%, 
            transparent 100%
        );
    z-index: 1;
    pointer-events: none;
    filter: blur(60px);
    opacity: 0.4;
    animation: auroraFlow 40s ease-in-out infinite;
    will-change: transform;
}

@keyframes auroraFlow {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(5%, -3%, 0);
    }
}

/* Constellation effect - Star field - Optimized */
.constellation {
    position: fixed;
    width: 2px;
    height: 2px;
    background: rgba(212, 175, 55, 0.7);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    animation: twinkle 4s ease-in-out infinite;
}

.constellation:nth-child(2n) {
    animation-delay: 1.5s;
    background: rgba(0, 245, 255, 0.6);
}

.constellation:nth-child(3n) {
    animation-delay: 2.5s;
    background: rgba(168, 85, 247, 0.6);
}

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

/* Energy field lines */
.energy-field {
    position: fixed;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.2) 20%, 
        rgba(212, 175, 55, 0.4) 50%, 
        rgba(212, 175, 55, 0.2) 80%, 
        transparent 100%
    );
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    animation: energyFieldPulse 3s ease-in-out infinite;
}

.energy-field:nth-of-type(1) { top: 20%; animation-delay: 0s; }
.energy-field:nth-of-type(2) { top: 50%; animation-delay: 1s; }
.energy-field:nth-of-type(3) { top: 80%; animation-delay: 2s; }

@keyframes energyFieldPulse {
    0%, 100% {
        opacity: 0;
        transform: scaleX(0.5);
    }
    50% {
        opacity: 0.6;
        transform: scaleX(1);
    }
}


/* ================================================
   BACKGROUND ANIMATION REFINEMENTS
   Enhanced Smoothness & Depth
   ================================================ */

/* Smoother easing for all background animations */
.mega-background-animation::before,
.mega-background-animation::after {
    animation-timing-function: cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

/* Add subtle pulsing to mesh gradient */
.mesh-gradient-overlay {
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced depth with micro-movements */
@keyframes microFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-3px) translateX(2px);
    }
    75% {
        transform: translateY(3px) translateX(-2px);
    }
}

/* Apply micro-float to constellation stars for extra life */
.constellation {
    animation: twinkle 3s ease-in-out infinite, microFloat 8s ease-in-out infinite;
}

/* Smoother particle transitions */
.particle {
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Enhanced glow transitions */
@keyframes enhancedGlowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
        filter: blur(100px) brightness(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.7;
        filter: blur(120px) brightness(1.2);
    }
}

.hero::before,
.ea-section::before {
    animation: enhancedGlowPulse 8s ease-in-out infinite;
}

/* Buttery smooth orb movement */
@keyframes ultraSmoothOrbFloat1 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.9;
        filter: blur(80px) brightness(1);
    }
    25% {
        transform: translate(120px, -80px) scale(1.15) rotate(90deg);
        opacity: 1;
        filter: blur(85px) brightness(1.1);
    }
    50% {
        transform: translate(80px, 60px) scale(0.95) rotate(180deg);
        opacity: 0.85;
        filter: blur(75px) brightness(0.95);
    }
    75% {
        transform: translate(-100px, -40px) scale(1.1) rotate(270deg);
        opacity: 1;
        filter: blur(80px) brightness(1.05);
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(360deg);
        opacity: 0.9;
        filter: blur(80px) brightness(1);
    }
}

@keyframes ultraSmoothOrbFloat2 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.85;
        filter: blur(90px) brightness(1);
    }
    33% {
        transform: translate(-150px, 100px) scale(1.2) rotate(120deg);
        opacity: 1;
        filter: blur(95px) brightness(1.1);
    }
    66% {
        transform: translate(100px, -80px) scale(0.9) rotate(240deg);
        opacity: 0.8;
        filter: blur(85px) brightness(0.95);
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(360deg);
        opacity: 0.85;
        filter: blur(90px) brightness(1);
    }
}

/* Apply ultra-smooth animations */
.mega-background-animation::before {
    animation: ultraSmoothOrbFloat1 25s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.mega-background-animation::after {
    animation: ultraSmoothOrbFloat2 30s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

/* Enhanced aurora with depth layers */
.aurora {
    animation: auroraFlow 30s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    mix-blend-mode: screen;
}

/* Smoother energy grid flow */
body::before {
    animation: energyGridFlow 40s linear infinite;
    will-change: background-position;
}

/* Add subtle chromatic effect to light rays */
.light-ray {
    animation: lightRayPulse 4s ease-in-out infinite;
    mix-blend-mode: lighten;
}

/* Enhanced radial wave smoothness */
@keyframes smoothRadialExpand {
    0% {
        width: 100px;
        height: 100px;
        opacity: 0.6;
        border-width: 2px;
    }
    50% {
        opacity: 0.3;
        border-width: 1px;
    }
    100% {
        width: 2000px;
        height: 2000px;
        opacity: 0;
        border-width: 0px;
    }
}

.radial-wave {
    animation: smoothRadialExpand 6s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

/* Depth enhancement - layered shadows */
.result-card,
.ea-feature,
.pricing-card {
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.1),
        0 4px 8px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.1),
        0 16px 32px rgba(212, 175, 55, 0.05);
}

.result-card:hover,
.ea-feature:hover,
.pricing-card:hover {
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.15),
        0 16px 32px rgba(0, 0, 0, 0.15),
        0 32px 64px rgba(212, 175, 55, 0.2);
}

/* Buttery smooth transitions everywhere */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced focus states with smooth pulse */
@keyframes focusPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(212, 175, 55, 0);
    }
}

.nav-link:focus,
.btn-primary:focus,
.btn-secondary:focus,
.form-submit:focus {
    animation: focusPulse 2s ease-in-out infinite;
}

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

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Performance optimization - Composite layers */
.mega-background-animation,
.mesh-gradient-overlay,
.aurora,
.particle,
.constellation,
.light-ray,
.radial-wave,
.depth-layer {
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Smooth fade-in for sections on load */
section {
    animation: sectionFadeIn 1s ease-out forwards;
}

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

/* Enhanced button hover with smooth lift */
.btn-primary,
.btn-secondary,
.nav-btn,
.telegram-btn,
.purchase-btn,
.form-submit {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                box-shadow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                background 0.3s ease;
}

/* Micro-interactions on card hover */
.result-card .card-icon,
.ea-feature .ea-feature-icon {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.result-card:hover .card-icon,
.ea-feature:hover .ea-feature-icon {
    transform: rotate(360deg) scale(1.1);
}

/* Smooth gradient transitions */
.gold-text {
    background-size: 200% 100%;
    animation: goldShimmer 3s ease-in-out infinite;
    background-position: 0% 50%;
}

@keyframes goldShimmer {
    0%, 100% {
        background-position: 0% 50%;
        filter: brightness(1);
    }
    50% {
        background-position: 100% 50%;
        filter: brightness(1.3);
    }
}

/* Enhanced depth on scroll */
.hero-content,
.section-header {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Subtle parallax enhancement */
@media (min-width: 769px) {
    .mega-background-animation::before {
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .mega-background-animation::after {
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
}


/* ================================================
   FLOATING BACK TO TOP BUTTON
   Premium Design
   ================================================ */

.floating-top-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), #e6c14a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9998;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px) scale(0.8);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.floating-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.floating-top-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gold);
    animation: floatingPulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes floatingPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.floating-top-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.6);
}

.floating-top-btn svg {
    color: var(--black);
    transition: transform 0.3s ease;
}

.floating-top-btn:hover svg {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .floating-top-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

/* ================================================
   GOD MODE BACKGROUND ANIMATIONS
   Next-Level Visual Experience
   ================================================ */

/* LAYER 1: Mega Orbs - Now with 3D rotation effect */
@keyframes godModeOrb1 {
    0% {
        transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotate3d(1, 1, 0, 0deg);
        opacity: 0.9;
        filter: blur(80px) brightness(1) hue-rotate(0deg);
    }
    25% {
        transform: translate3d(150px, -100px, 50px) scale3d(1.2, 1.2, 1.2) rotate3d(1, 1, 0, 90deg);
        opacity: 1;
        filter: blur(90px) brightness(1.2) hue-rotate(15deg);
    }
    50% {
        transform: translate3d(100px, 80px, -50px) scale3d(0.9, 0.9, 0.9) rotate3d(1, 1, 0, 180deg);
        opacity: 0.85;
        filter: blur(75px) brightness(0.9) hue-rotate(30deg);
    }
    75% {
        transform: translate3d(-120px, -60px, 50px) scale3d(1.15, 1.15, 1.15) rotate3d(1, 1, 0, 270deg);
        opacity: 1;
        filter: blur(85px) brightness(1.1) hue-rotate(45deg);
    }
    100% {
        transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotate3d(1, 1, 0, 360deg);
        opacity: 0.9;
        filter: blur(80px) brightness(1) hue-rotate(60deg);
    }
}

@keyframes godModeOrb2 {
    0% {
        transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotate3d(0, 1, 1, 0deg);
        opacity: 0.85;
        filter: blur(90px) brightness(1) hue-rotate(0deg);
    }
    33% {
        transform: translate3d(-180px, 120px, 80px) scale3d(1.25, 1.25, 1.25) rotate3d(0, 1, 1, 120deg);
        opacity: 1;
        filter: blur(100px) brightness(1.2) hue-rotate(20deg);
    }
    66% {
        transform: translate3d(120px, -100px, -80px) scale3d(0.85, 0.85, 0.85) rotate3d(0, 1, 1, 240deg);
        opacity: 0.8;
        filter: blur(80px) brightness(0.95) hue-rotate(40deg);
    }
    100% {
        transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotate3d(0, 1, 1, 360deg);
        opacity: 0.85;
        filter: blur(90px) brightness(1) hue-rotate(60deg);
    }
}

.mega-background-animation::before {
    animation: godModeOrb1 28s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    background: radial-gradient(
        circle at center,
        rgba(212, 175, 55, 0.3) 0%,
        rgba(212, 175, 55, 0.2) 20%,
        rgba(168, 85, 247, 0.15) 40%,
        rgba(0, 245, 255, 0.12) 60%,
        rgba(59, 130, 246, 0.08) 80%,
        transparent 100%
    );
}

.mega-background-animation::after {
    animation: godModeOrb2 35s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    background: radial-gradient(
        circle at center,
        rgba(0, 245, 255, 0.25) 0%,
        rgba(59, 130, 246, 0.2) 25%,
        rgba(168, 85, 247, 0.15) 50%,
        rgba(212, 175, 55, 0.12) 75%,
        transparent 100%
    );
}

/* LAYER 2: Plasma Energy Field - Organic movement */
@keyframes plasmaFlow {
    0%, 100% {
        background-position: 0% 0%, 50% 50%, 100% 0%;
        opacity: 0.6;
    }
    25% {
        background-position: 25% 75%, 75% 25%, 50% 100%;
        opacity: 0.8;
    }
    50% {
        background-position: 100% 100%, 0% 100%, 0% 50%;
        opacity: 0.7;
    }
    75% {
        background-position: 75% 25%, 25% 75%, 100% 50%;
        opacity: 0.9;
    }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: 
        radial-gradient(ellipse 400px 300px at 30% 40%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 350px 400px at 70% 60%, rgba(0, 245, 255, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 300px 350px at 50% 80%, rgba(168, 85, 247, 0.14) 0%, transparent 50%);
    background-size: 200% 200%, 180% 180%, 220% 220%;
    z-index: 1;
    pointer-events: none;
    animation: plasmaFlow 25s ease-in-out infinite;
    mix-blend-mode: screen;
}

/* LAYER 3: Neural Network Lines - REMOVED FOR PERFORMANCE */
.neural-network,
.neural-line {
    display: none;
}

/* LAYER 4: Quantum Dots - Optimized */
@keyframes quantumFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0);
        opacity: 0.3;
    }
    50% {
        transform: translate3d(30px, -40px, 0);
        opacity: 0.8;
    }
}

.quantum-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.8);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
    z-index: 1;
    pointer-events: none;
    animation: quantumFloat 10s ease-in-out infinite;
    will-change: transform, opacity;
}

.quantum-dot.cyan {
    background: rgba(0, 245, 255, 0.7);
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.quantum-dot.purple {
    background: rgba(168, 85, 247, 0.7);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

/* LAYER 5: Warp Speed Stars - REMOVED FOR PERFORMANCE */
.warp-star {
    display: none;
}

/* LAYER 6: Holographic Shimmer - REMOVED FOR PERFORMANCE */
.holo-shimmer {
    display: none;
}

/* LAYER 7: Depth Fog - SIMPLIFIED FOR PERFORMANCE */
.depth-fog {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(ellipse at center, 
        transparent 0%, 
        rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* LAYER 8: Cosmic Dust - REMOVED FOR PERFORMANCE */
.cosmic-dust {
    display: none;
}

/* Simplified mesh gradient */
.mesh-gradient-overlay {
    animation: godModeMeshFlow 60s ease-in-out infinite;
    opacity: 0.4;
    will-change: transform;
}

@keyframes godModeMeshFlow {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(3%, -2%, 0);
    }
}

/* Performance optimizations */
.mega-background-animation,
.mega-background-animation::before,
.mega-background-animation::after,
.mesh-gradient-overlay,
.aurora {
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}
    backface-visibility: hidden;
    perspective: 1000px;
}


/* ================================================
   ULTRA-SMOOTH BUTTER MODE
   Smoothest Transitions Ever Created
   ================================================ */

/* Master smooth timing function */
:root {
    --butter-ease: cubic-bezier(0.34, 1.56, 0.64, 1);
    --silk-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --flow-ease: cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Apply silk-smooth transitions to everything */
*,
*::before,
*::after {
    transition-duration: 0.6s;
    transition-timing-function: var(--silk-ease);
}

/* Buttons get bounce effect */
button,
.btn-primary,
.btn-secondary,
.nav-btn,
.telegram-btn,
.purchase-btn,
.form-submit {
    transition: all 0.5s var(--butter-ease);
}

/* Cards get silk movement */
.result-card,
.ea-feature,
.pricing-card,
.info-card {
    transition: all 0.6s var(--silk-ease);
}

/* Links get flow ease */
a,
.nav-link {
    transition: all 0.4s var(--flow-ease);
}

/* Sections fade with grace */
section {
    transition: opacity 1s var(--silk-ease), transform 1s var(--silk-ease);
}

/* Form inputs respond smoothly */
input,
select,
textarea {
    transition: all 0.4s var(--silk-ease);
}

/* Hover states are liquid smooth */
.result-card:hover,
.ea-feature:hover {
    transition: all 0.8s var(--butter-ease);
}

/* Icons rotate with bounce */
.card-icon,
.ea-feature-icon,
.benefit-icon {
    transition: transform 0.8s var(--butter-ease);
}

/* Background elements flow like water */
.mega-background-animation::before,
.mega-background-animation::after {
    transition: transform 0.8s var(--silk-ease);
}

/* Smooth scroll is buttery */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* Add momentum to parallax */
@media (prefers-reduced-motion: no-preference) {
    * {
        scroll-behavior: smooth;
    }
    
    .depth-layer,
    .gold-circle {
        transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
}

/* Micro-animations for life */
@keyframes breathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.logo-img {
    animation: breathe 4s ease-in-out infinite;
}

/* Text shimmer is smooth */
.gold-text {
    transition: filter 0.6s ease;
}

.gold-text:hover {
    filter: brightness(1.3) drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
}

/* Enhanced focus with smooth pulse */
*:focus-visible {
    outline: 2px solid rgba(212, 175, 55, 0.6);
    outline-offset: 4px;
    animation: smoothFocusPulse 2s ease-in-out infinite;
}

@keyframes smoothFocusPulse {
    0%, 100% {
        outline-color: rgba(212, 175, 55, 0.6);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    50% {
        outline-color: rgba(212, 175, 55, 1);
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
}

/* Smooth loading states */
@keyframes smoothFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Apply to all sections on load */
section {
    animation: smoothFadeIn 1.2s var(--silk-ease) both;
}

section:nth-child(2) { animation-delay: 0.1s; }
section:nth-child(3) { animation-delay: 0.2s; }
section:nth-child(4) { animation-delay: 0.3s; }
section:nth-child(5) { animation-delay: 0.4s; }
section:nth-child(6) { animation-delay: 0.5s; }
section:nth-child(7) { animation-delay: 0.6s; }

/* Buttery navbar transitions */
.navbar {
    transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.nav-link::before {
    transition: width 0.5s var(--butter-ease);
}

/* Liquid hover effects */
.result-card::before {
    transition: width 0.8s var(--butter-ease), height 0.8s var(--butter-ease), opacity 0.8s ease;
}

/* Smooth modal/menu animations */
.mobile-menu {
    transition: right 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-menu-overlay {
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Performance optimizations for smoothness */
.result-card,
.ea-feature,
.btn-primary,
.floating-top-btn,
.quantum-dot {
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Cursor Glow Effect */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
    will-change: transform;
}

/* Constellation Stars */
.constellation {
    position: fixed;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

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

/* Remove social-block styles (component removed) */
.social-block {
    display: none;
}

/* Final performance touches */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ================================================
   EA SCREENSHOT STYLES - CLICKABLE IMAGE
   ================================================ */

.ea-screenshot-container {
    display: flex;
    justify-content: center;
    margin: 40px 0 60px 0;
}

.ea-screenshot-link {
    display: block;
    text-decoration: none;
    max-width: 900px;
    width: 100%;
    cursor: pointer;
}

.ea-screenshot-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.2);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ea-screenshot-card:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 40px 100px rgba(212, 175, 55, 0.35);
    border-color: rgba(212, 175, 55, 0.6);
}

.screenshot-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 12px 25px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold);
    border-radius: 50px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5);
    }
}

.ea-screenshot-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.ea-screenshot-card:hover .ea-screenshot-image {
    transform: scale(1.05);
}

.screenshot-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ea-screenshot-card:hover .screenshot-overlay {
    opacity: 1;
}

.play-icon {
    width: 100px;
    height: 100px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ea-screenshot-card:hover .play-icon {
    transform: scale(1);
}

.play-icon svg {
    margin-left: 4px;
}

/* ================================================
   INDICATOR IMAGE SHOWCASE
   ================================================ */

.indicator-showcase {
    display: flex;
    justify-content: center;
    margin: 50px 0 60px 0;
}

.indicator-image-container {
    position: relative;
    max-width: 1000px;
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
    transition: all 0.5s ease;
}

.indicator-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.4);
}

.indicator-image {
    width: 100%;
    height: auto;
    display: block;
}

.indicator-image-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.indicator-image-container:hover .indicator-image-glow {
    opacity: 1;
}

/* ================================================
   RESPONSIVE - EA & INDICATOR IMAGES
   ================================================ */

@media (max-width: 768px) {
    .ea-screenshot-container,
    .indicator-showcase {
        margin: 30px 0 40px 0;
    }
    
    .ea-screenshot-card,
    .indicator-image-container {
        border-radius: 20px;
    }
    
    .screenshot-badge {
        top: 15px;
        left: 15px;
        padding: 10px 20px;
        font-size: 11px;
    }
    
    .play-icon {
        width: 70px;
        height: 70px;
    }
    
    .play-icon svg {
        width: 40px;
        height: 40px;
    }
}