/* CSS Variables & Fonts */
:root {
    --bg-dark: #0b0f19;
    --bg-card: rgba(255, 255, 255, 0.05);
    --border-card: rgba(255, 255, 255, 0.08);
    --primary-neon: #bcf82f;
    --primary-hover: #a1d624;
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.highlight {
    color: var(--primary-neon);
}

/* Background Gradients */
.glow-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(188, 248, 47, 0.15) 0%, rgba(11, 15, 25, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.glow-bg.top-left {
    top: -200px;
    left: -200px;
}

.glow-bg.bottom-right {
    bottom: -200px;
    right: -200px;
}

/* Header & Nav */
.navbar {
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(11, 15, 25, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-card);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-neon);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--bg-dark);
    padding: 20px;
    flex-direction: column;
    gap: 20px;
    z-index: 99;
    border-bottom: 1px solid var(--border-card);
}

.mobile-nav.active {
    display: flex;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-heading);
    border: none;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary-neon);
    color: #000;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(188, 248, 47, 0.3);
}

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

.btn-outline:hover {
    border-color: var(--primary-neon);
    color: var(--primary-neon);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding-top: 100px;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(188, 248, 47, 0.1);
    color: var(--primary-neon);
    border: 1px solid rgba(188, 248, 47, 0.2);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-actions.center {
    justify-content: center;
}

/* Glass Mockup */
.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.glass-mockup {
    width: 320px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-card);
    border-radius: 30px;
    padding: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: rotate(2deg);
    transition: var(--transition);
}

.glass-mockup:hover {
    transform: rotate(0deg) translateY(-10px);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.mockup-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #eee, #999);
}

.mockup-text.title {
    font-weight: 600;
    font-size: 1.1rem;
}

.mockup-text.subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.match-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 12px;
}

.match-time {
    color: var(--primary-neon);
    font-weight: 600;
    font-size: 0.9rem;
}

.match-place {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 4px 0 12px;
}

.mockup-btn {
    width: 100%;
    padding: 8px;
}

.skeleton .sk-line {
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    margin-bottom: 8px;
}
.sk-line.w-50 { width: 50%; }
.sk-line.w-75 { width: 75%; }
.sk-line.w-100 { width: 100%; }
.sk-line.mt-2 { margin-top: 16px; height: 32px; border-radius: 8px;}

.floating-badge {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--primary-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-weight: 800;
    font-size: 0.8rem;
    box-shadow: 0 10px 20px rgba(188, 248, 47, 0.3);
    animation: float 4s ease-in-out infinite;
}

.player1 { top: -20px; left: -20px; }
.player2 { bottom: 40px; right: -20px; animation-delay: 2s; }

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

/* Sections */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(188, 248, 47, 0.3);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(188, 248, 47, 0.1);
    color: var(--primary-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.step-card h3 {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-muted);
}

/* Features */
.features-split {
    display: flex;
    align-items: center;
    gap: 80px;
}

.features-visual, .features-text {
    flex: 1;
}

.features-text h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 32px;
    line-height: 1.2;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-list li {
    padding-left: 32px;
    position: relative;
    color: var(--text-muted);
}

.feature-list li strong {
    color: white;
    display: block;
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--primary-neon);
    font-weight: bold;
}

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.stat-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-weight: 600;
}

.mt-3 { margin-top: 32px; }
.glow-text { text-shadow: 0 0 10px rgba(188, 248, 47, 0.5); font-size: 1.5rem; }

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

.progress-bar .fill {
    height: 100%;
    background: var(--primary-neon);
    border-radius: 4px;
}

/* CTA Section */
.glass-banner {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 32px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.glass-banner h2 {
    font-size: 3rem;
    font-family: var(--font-heading);
    margin-bottom: 16px;
}

.glass-banner p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-card);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible, .fade-in-left.visible, .fade-in-right.visible {
    opacity: 1;
    transform: translate(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive Media Queries */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 150px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        margin: 0 auto 40px;
    }
    
    .hero-actions {
        justify-content: center;
    }

    .features-split {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .glass-banner h2 {
        font-size: 2.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}
