/* ================================================
   DexBet Crypto Betting Landing Page
   Design: Dark Mode, Web3, Glassmorphism
   ================================================ */

/* CSS Variables */
:root {
    /* Primary Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #121212;
    --bg-tertiary: #1a1a1a;
    --bg-elevated: #1e1e1e;
    
    /* Accent Colors */
    --accent-green: #00ff88;
    --accent-green-dim: #00cc6a;
    --accent-green-glow: rgba(0, 255, 136, 0.3);
    --accent-gold: #ffd700;
    --accent-gold-dim: #ccac00;
    --accent-gold-glow: rgba(255, 215, 0, 0.3);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-tertiary: rgba(255, 255, 255, 0.5);
    --text-muted: rgba(255, 255, 255, 0.3);
    
    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: rgba(0, 0, 0, 0.4);
    
    /* Status Colors */
    --live-red: #ff4757;
    --success: #00ff88;
    --warning: #ffa502;
    --error: #ff4757;
    
    /* Spacing */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
    --transition-slow: 0.4s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Effects */
.bg-gradient {
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 255, 136, 0.08), transparent),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(255, 215, 0, 0.05), transparent),
        linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    pointer-events: none;
    z-index: -3;
}

.bg-grid {
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: -2;
}

.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: -1;
    animation: float 20s ease-in-out infinite;
}

.glow-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(0, 255, 136, 0.12);
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.glow-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(255, 215, 0, 0.1);
    top: 40%;
    right: -150px;
    animation-delay: -7s;
}

.glow-orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(0, 255, 136, 0.08);
    bottom: 10%;
    left: 20%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, -40px) scale(1.05); }
    50% { transform: translate(-30px, 30px) scale(0.95); }
    75% { transform: translate(30px, 40px) scale(1.02); }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Glass Panel */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: 
        0 8px 32px var(--glass-shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ================================================
   HEADER
   ================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 2px;
    font-weight: 800;
    font-size: 1.75rem;
    letter-spacing: -0.02em;
    position: relative;
    text-decoration: none;
}

.logo:hover,
.logo:visited,
.logo:active,
.logo:focus {
    text-decoration: none;
}

.logo-365 {
    color: var(--accent-green);
    text-shadow: 0 0 30px var(--accent-green-glow);
}

.logo-bet {
    color: var(--text-primary);
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    margin-left: 4px;
    box-shadow: 0 0 15px var(--accent-gold-glow);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.9); }
}

/* New logo styles for image-based logo */
.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    color: var(--accent-green);
    font-weight: 800;
    font-size: 1.5rem;
    text-shadow: 0 0 30px var(--accent-green-glow);
    margin-left: 8px;
}

.logo-img-small {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-img-account {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    color: var(--accent-green);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    white-space: nowrap;
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid transparent;
}

.btn-ghost:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-outline:hover {
    border-color: var(--accent-green);
    background: rgba(0, 255, 136, 0.05);
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dim));
    color: #000;
    box-shadow: 0 4px 20px var(--accent-gold-glow);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-gold-glow);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--accent-green);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    margin-bottom: 24px;
    line-height: 1.1;
}

.title-line {
    display: block;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.2s; }

.title-line.gradient-title {
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #e0ffe0 25%,
        #00ff88 50%,
        #aaff00 75%,
        #ffd700 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 0 40px rgba(0, 255, 136, 0.4)) drop-shadow(0 0 80px rgba(255, 215, 0, 0.3));
    letter-spacing: 0.02em;
}

.title-line.accent {
    color: var(--accent-green);
    text-shadow: 0 0 60px var(--accent-green-glow);
}

.title-line.gold {
    color: var(--accent-gold);
    text-shadow: 0 0 60px var(--accent-gold-glow);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-crypto-badges {
    display: flex;
    gap: 16px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.crypto-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: all var(--transition-normal);
}

.crypto-badge:hover {
    border-color: var(--accent-green);
    color: var(--text-primary);
}

.crypto-badge svg {
    color: var(--accent-green);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Visual - Trophy */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.trophy-container {
    position: relative;
    width: 400px;
    height: 500px;
    animation: fadeIn 1s ease 0.5s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.trophy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.trophy-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, rgba(255, 200, 0, 0.08) 50%, transparent 70%);
    filter: blur(40px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.05); }
}

.trophy-body {
    position: relative;
    z-index: 2;
    animation: trophyFloat 4s ease-in-out infinite;
}

@keyframes trophyFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.trophy-cup {
    width: 180px;
    height: 160px;
    background: #ffd700;
    border-radius: 20px 20px 90px 90px;
    position: relative;
    box-shadow: 
        0 10px 40px rgba(255, 200, 0, 0.25),
        0 0 60px rgba(255, 215, 0, 0.15);
}

.trophy-inner {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    height: 45px;
    background: #0a0a0a;
    border-radius: 12px 12px 35px 35px;
}

.trophy-star {
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 52px;
    color: #0a0a0a;
    opacity: 0.15;
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

.trophy-handles {
    position: absolute;
    top: 20px;
    left: -40px;
    right: -40px;
    height: 90px;
    pointer-events: none;
}

.handle {
    position: absolute;
    width: 50px;
    height: 60px;
    border: 12px solid #ffd700;
    border-radius: 50%;
    background: transparent;
}

.handle-left {
    left: 0;
    top: 10px;
}

.handle-right {
    right: 0;
    top: 10px;
}

.trophy-stem {
    width: 50px;
    height: 35px;
    background: #ffd700;
    margin: 0 auto;
    border-radius: 4px;
}

.trophy-base {
    width: 100px;
    height: 28px;
    background: #ffd700;
    margin: 0 auto;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(255, 180, 0, 0.2);
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    width: 56px;
    height: 56px;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconFloat 5s ease-in-out infinite;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.floating-icon svg {
    width: 30px;
    height: 30px;
}

.icon-btc {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: #f7931a;
    animation-delay: -1s;
    background: rgba(40, 35, 30, 0.9);
    border-color: rgba(247, 147, 26, 0.4);
}

.icon-btc svg {
    filter: drop-shadow(0 0 10px rgba(247, 147, 26, 0.6));
}

.icon-diamond {
    top: 55%;
    right: 0;
    transform: translateY(-50%);
    color: #00d4ff;
    animation-delay: -2.5s;
    background: rgba(30, 35, 40, 0.9);
    border-color: rgba(0, 212, 255, 0.3);
}

.icon-diamond svg {
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.6));
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

/* Particles */
.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffd700;
    border-radius: 50%;
    animation: particleFloat 12s ease-in-out infinite;
    opacity: 0.4;
}

.particle:nth-child(1) { left: 15%; top: 60%; animation-delay: 0s; }
.particle:nth-child(2) { left: 35%; top: 70%; animation-delay: -3s; }
.particle:nth-child(3) { left: 55%; top: 55%; animation-delay: -6s; }
.particle:nth-child(4) { left: 75%; top: 65%; animation-delay: -2s; }
.particle:nth-child(5) { left: 85%; top: 50%; animation-delay: -4s; }

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0); 
        opacity: 0.2;
    }
    50% { 
        transform: translateY(-25px); 
        opacity: 0.5;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-tertiary);
    font-size: 0.8rem;
    animation: fadeIn 1s ease 1s both;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.3; }
}

/* ================================================
   STATISTICS SECTION
   ================================================ */
.stats-section {
    padding: 120px 0;
    position: relative;
}

.stats-header,
.features-header,
.how-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 100px;
    color: var(--accent-green);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-subtitle,
.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.stat-card {
    padding: 32px;
    text-align: center;
    transition: all var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 136, 0.3);
}

.stat-card.featured {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.02));
    border-color: rgba(255, 215, 0, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 136, 0.1);
    border-radius: var(--radius-md);
    color: var(--accent-green);
}

.stat-icon svg {
    width: 32px;
    height: 32px;
}

.stat-icon.gold {
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-gold);
}

.stat-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.stat-value.gold {
    color: var(--accent-gold);
    text-shadow: 0 0 30px var(--accent-gold-glow);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.stat-change {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
}

.stat-change.positive {
    background: rgba(0, 255, 136, 0.1);
    color: var(--accent-green);
}

.stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--accent-green);
}

.stat-badge.green {
    background: rgba(0, 255, 136, 0.15);
}

/* Live Feed */
.live-feed {
    overflow: hidden;
}

.feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--glass-border);
}

.feed-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: var(--live-red);
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.feed-link {
    color: var(--accent-green);
    text-decoration: none;
    font-size: 0.85rem;
    transition: opacity var(--transition-fast);
}

.feed-link:hover {
    opacity: 0.8;
}

.feed-scroll {
    display: flex;
    gap: 0;
    animation: feedScroll 20s linear infinite;
}

@keyframes feedScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.feed-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 32px;
    border-right: 1px solid var(--glass-border);
    white-space: nowrap;
}

.feed-icon {
    font-size: 1.25rem;
}

.feed-user {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

.feed-action {
    color: var(--text-secondary);
}

.feed-amount {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    color: var(--accent-green);
}

.feed-time {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ================================================
   FEATURES SECTION
   ================================================ */
.features-section {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 136, 0.02) 50%, transparent 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 40px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 136, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    color: var(--accent-green);
    opacity: 0.9;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-green);
}

/* ================================================
   HOW IT WORKS SECTION
   ================================================ */
.how-section {
    padding: 120px 0;
}

.how-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
}

.how-step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 40px 30px;
}

.step-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0, 255, 136, 0.15);
    margin-bottom: 20px;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 50%;
    color: var(--accent-green);
}

.step-icon svg {
    width: 40px;
    height: 40px;
}

.step-icon.gold {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.2);
    color: var(--accent-gold);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-connector {
    width: 100px;
    height: 20px;
    margin-top: 100px;
    color: var(--text-muted);
}

/* ================================================
   SECURITY SECTION
   ================================================ */
.security-section {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 136, 0.03) 100%);
}

.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.security-text .section-label {
    text-align: left;
    display: inline-block;
}

.security-text .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.security-text .section-description {
    text-align: left;
    max-width: 100%;
    margin-bottom: 32px;
}

.security-badges {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.audit-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 24px;
    min-width: 120px;
}

.audit-badge img {
    height: 24px;
    width: auto;
}

.audit-badge span {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Security Visual */
.security-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-animation {
    position: relative;
    width: 300px;
    height: 360px;
}

.shield {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 240px;
    animation: shieldFloat 4s ease-in-out infinite;
}

@keyframes shieldFloat {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-15px); }
}

.shield svg {
    width: 100%;
    height: 100%;
}

.shield-rings {
    position: absolute;
    inset: 0;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 50%;
    animation: ringPulse 4s ease-out infinite;
}

.ring-1 {
    width: 250px;
    height: 250px;
    animation-delay: 0s;
}

.ring-2 {
    width: 300px;
    height: 300px;
    animation-delay: 1s;
}

.ring-3 {
    width: 350px;
    height: 350px;
    animation-delay: 2s;
}

@keyframes ringPulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
    padding: 80px 0;
}

.cta-card {
    padding: 80px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(0, 255, 136, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 32px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-bonus {
    font-size: 0.9rem;
    color: var(--accent-gold);
}

.cta-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-coin {
    position: absolute;
    width: 60px;
    height: 60px;
    color: var(--accent-gold);
    opacity: 0.3;
    animation: coinFloat 8s ease-in-out infinite;
}

.coin-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.coin-2 {
    bottom: 20%;
    right: 10%;
    animation-delay: -4s;
}

@keyframes coinFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(15deg); }
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    padding: 80px 0 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    border-top: 1px solid var(--glass-border);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 1.1rem;
    color: var(--accent-green);
    margin-bottom: 16px;
    font-weight: 500;
}

.footer-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 400px;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    transition: all var(--transition-normal);
}

.social-btn:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--accent-green);
    color: var(--accent-green);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--accent-green);
}

.footer-link-disabled {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 12px;
    cursor: default;
}

/* Payment Methods */
.footer-payments {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 40px;
}

.payments-label {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    white-space: nowrap;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.payment-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--accent-green);
    transition: all var(--transition-normal);
}

.payment-icon:hover {
    border-color: var(--accent-green);
    background: rgba(0, 255, 136, 0.05);
}

.payment-icon svg {
    width: 28px;
    height: 28px;
}

.payment-icon span {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-tertiary);
}

.payment-icon.fiat {
    color: var(--text-secondary);
}

.payment-icon.fiat svg {
    width: 40px;
    height: 28px;
}

.payment-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

/* License Block */
.footer-license {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 32px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), transparent);
    border: 1px solid rgba(0, 255, 136, 0.15);
}

.license-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    color: var(--accent-green);
}

.license-icon svg {
    width: 100%;
    height: 100%;
}

.license-content {
    flex: 1;
}

.license-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.license-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.license-content a {
    color: var(--accent-green);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
}

.license-content a:hover {
    text-decoration: underline;
}

.license-badges {
    display: flex;
    gap: 12px;
}

.license-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: var(--radius-md);
    color: var(--accent-green);
}

.license-badge svg {
    width: 24px;
    height: 24px;
}

.license-badge span {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

.separator {
    opacity: 0.3;
}

.footer-age {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

.age-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 71, 87, 0.15);
    border: 1px solid rgba(255, 71, 87, 0.3);
    color: var(--live-red);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50%;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-crypto-badges {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .trophy-container {
        width: 300px;
        height: 380px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .security-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .security-text {
        text-align: center;
    }
    
    .security-text .section-label,
    .security-text .section-title,
    .security-text .section-description {
        text-align: center;
    }
    
    .security-badges {
        justify-content: center;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .nav {
        display: none;
    }
    
    .how-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step-connector {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-license {
        flex-direction: column;
        text-align: center;
    }
    
    .license-badges {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .title-line {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .hero-crypto-badges {
        flex-wrap: wrap;
    }
    
    .security-badges {
        flex-wrap: wrap;
    }
    
    .footer-payments {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cta-card {
        padding: 40px 24px;
    }
}

/* ================================================
   MODAL WINDOWS
   ================================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: relative;
    width: 100%;
    max-width: 440px;
    background: #1a1a1a;
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(0, 255, 136, 0.05);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-tertiary);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.modal-close:hover {
    background: rgba(255, 71, 87, 0.1);
    border-color: rgba(255, 71, 87, 0.3);
    color: #ff4757;
}

.modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.modal-logo {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 0.95rem;
    color: var(--text-tertiary);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Input Groups */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: var(--text-tertiary);
    pointer-events: none;
    transition: color var(--transition-fast);
}

.input-field {
    width: 100%;
    padding: 14px 16px 14px 48px;
    background: #252525;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: all var(--transition-normal);
}

.input-field::placeholder {
    color: var(--text-muted);
}

.input-field:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.input-field:focus {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.input-field:focus + .input-icon,
.input-wrapper:focus-within .input-icon {
    color: var(--accent-green);
}

/* Password Toggle */
.password-toggle {
    position: absolute;
    right: 12px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-tertiary);
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.password-toggle:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.input-wrapper:has(.password-toggle) .input-field {
    padding-right: 52px;
}

/* Forgot Link */
.forgot-link {
    align-self: flex-end;
    font-size: 0.85rem;
    color: var(--text-tertiary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.forgot-link:hover {
    color: var(--accent-green);
}

/* Checkbox */
.checkbox-group {
    margin-top: 4px;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-input {
    display: none;
}

.checkbox-custom {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: #252525;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.checkbox-custom::after {
    content: '';
    width: 12px;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3'%3E%3Cpolyline points='20,6 9,17 4,12'/%3E%3C/svg%3E") center/contain no-repeat;
    opacity: 0;
    transform: scale(0.5);
    transition: all var(--transition-fast);
}

.checkbox-input:checked + .checkbox-custom {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

.checkbox-input:checked + .checkbox-custom::after {
    opacity: 1;
    transform: scale(1);
}

.checkbox-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkbox-label a {
    color: var(--accent-green);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Button Full Width */
.btn-full {
    width: 100%;
    margin-top: 8px;
}

/* Modal Footer */
.modal-footer {
    text-align: center;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
    color: var(--text-tertiary);
}

.modal-footer a {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 500;
    margin-left: 4px;
    transition: color var(--transition-fast);
}

.modal-footer a:hover {
    color: var(--text-primary);
}

/* Modal Responsive */
@media (max-width: 500px) {
    .modal {
        margin: 20px;
        padding: 28px;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Selection */
::selection {
    background: rgba(0, 255, 136, 0.3);
    color: white;
}
