:root {
    --bg-color: #0F172A; /* Deep Navy from app */
    --surface-color: #1E293B;
    --primary-color: #BEF264; /* Neon Lime */
    --accent-color: #8B5CF6; /* Violet */
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    --neon-shadow: 0 0 20px rgba(190, 242, 100, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.stadium-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/stadium_minimal.png');
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    z-index: -2;
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(15, 23, 42, 0.5) 60%,
        var(--bg-color) 90%
    );
    z-index: -1;
}

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

/* Glassmorphism Utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(7.7px);
    -webkit-backdrop-filter: blur(7.7px);
    border: 1px solid var(--glass-border);
}

.premium-glass {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(15, 23, 42, 0.6) 50%,
        rgba(15, 23, 42, 0.8) 100%
    );
    backdrop-filter: blur(7.7px);
    -webkit-backdrop-filter: blur(7.7px);
    border: 1.2px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--card-shadow);
}

/* Typography */
h1, h2, h3 {
    font-weight: 800;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, #FFFFFF 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Header */
header {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 1rem 0;
    background: rgba(5, 8, 16, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo img {
    height: 32px;
}

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

/* Buttons */
.btn {
    padding: 0.875rem 1.75rem;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(to bottom, #D7FF64, #B7EA45);
    color: var(--bg-color);
    box-shadow: 0 4px 15px rgba(190, 242, 100, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 25px rgba(190, 242, 100, 0.4);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 6rem 0 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-card {
    width: 100%;
    max-width: 1000px;
    padding: 0;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    margin-bottom: 2rem;
}

.hero-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero_banner.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-content-overlay {
    position: relative;
    z-index: 1;
    padding: 5rem 2rem;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.1) 0%,
        rgba(0,0,0,0.4) 40%,
        rgba(0,0,0,0.9) 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1;
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 650px;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.trust-line {
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    opacity: 0.8;
}

/* How It Works */
.how-it-works {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.step-card {
    padding: 3rem;
    border-radius: 32px;
    transition: all 0.4s ease;
}

.step-number {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.step-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

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

/* Why ScoreStreak */
.why-section {
    padding: 8rem 0;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
}

.feature-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem;
    border-radius: 24px;
    height: 100%;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: block;
}

/* Live Feeling Section */
.live-section {
    padding: 8rem 0;
}

.live-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem;
    border-radius: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.live-badge {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.75rem;
    margin-bottom: 2rem;
    display: inline-block;
    border: 1px solid rgba(239, 68, 68, 0.2);
    letter-spacing: 1px;
}

.match-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 3rem 0;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.team img {
    height: 80px;
    width: 80px;
    object-fit: contain;
}

.vs {
    font-size: 2rem;
    font-weight: 800;
    opacity: 0.5;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

/* Social Proof */
.social-section {
    padding: 10rem 0;
    text-align: center;
}

.social-content {
    max-width: 800px;
    margin: 0 auto;
}

.social-content h2 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.social-content p {
    font-size: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.4;
    font-weight: 400;
}

/* Final CTA */
.final-cta {
    padding: 10rem 0;
    text-align: center;
}

.final-cta h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 2rem;
}

/* Footer */
footer {
    padding: 4rem 0;
    border-top: 1px solid var(--glass-border);
}

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

.footer-links {
    display: flex;
    gap: 2.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

/* Privacy Page Styles */
.privacy-container {
    padding: clamp(3rem, 10vw, 6rem) clamp(1.5rem, 5vw, 4rem);
    max-width: 900px;
    margin: clamp(2rem, 8vw, 4rem) auto;
    border-radius: clamp(24px, 4vw, 40px);
    text-align: left;
}


.privacy-container h1 {
    font-size: clamp(2.25rem, 7vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}


.privacy-container h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-top: clamp(2rem, 6vw, 3rem);
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}


.privacy-container h3 {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}


.privacy-container p, .privacy-container li {
    color: var(--text-secondary);
    font-size: clamp(0.95rem, 3vw, 1.1rem);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}


.privacy-container ul {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.privacy-container li {
    margin-bottom: 0.75rem;
}

.flag-emoji {
    font-size: 3.5rem;
    display: block;
    line-height: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .match-display {
        gap: 1.5rem;
    }
    .flag-emoji {
        font-size: 2.5rem;
    }
    .hero h1 {
        font-size: 3.5rem;
    }
    .cta-group {
        flex-direction: column;
        width: 100%;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
    .container {
        padding: 0 1rem;
    }
    .footer-content {

        flex-direction: column;
        gap: 2rem;
    }
    .countdown {
        gap: 1rem;
    }
    .countdown-value {
        font-size: 1.75rem;
    }
}


