:root {
    --bg-dark: #05050A;
    --bg-card: rgba(15, 15, 25, 0.7);
    --primary: #00A3FF;
    --primary-glow: rgba(0, 163, 255, 0.3);
    --secondary: #8A2BE2;
    --text-main: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1 { font-size: 4rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; }
h2 { font-size: 3rem; font-weight: 700; margin-bottom: 3rem; text-align: center; }
h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 1rem; }

/* Navbar */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(5, 5, 10, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo img { width: 40px; height: 40px; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover { color: var(--text-main); }

.cta-nav {
    background: var(--primary);
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px var(--primary-glow);
}

/* Hero */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 5rem;
    background: linear-gradient(to right, rgba(5, 5, 10, 0.95) 0%, rgba(5, 5, 10, 0.7) 50%, rgba(5, 5, 10, 0.4) 100%), url('hero_mockup.jpg') right center/cover no-repeat;
}

#hero .container {
    margin: 0;
    padding-left: 5%;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 550px;
}

.hero-content {
    text-align: left;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
    text-align: left;
}

.hero-btns { display: flex; gap: 1rem; }

.btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-secondary {
    background: var(--bg-card);
    color: white;
    border: 1px solid var(--glass-border);
}

.btn:hover { transform: translateY(-3px); opacity: 0.9; }

.hero-image { display: none; }

#main-mockup {
    display: none;
}

.hero-glow {
    position: absolute;
    top: 30%;
    left: 20%;
    width: 400px;
    height: 400px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(180px);
    opacity: 0.15;
    z-index: -1;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.glass {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: var(--transition);
}

.glass:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    background: rgba(20, 20, 35, 0.8);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-card.active {
    box-shadow: 0 0 30px var(--primary-glow);
    border-color: var(--primary);
}

/* Sports Section */
.sports-accent {
    background: linear-gradient(rgba(5,5,10,0.9), rgba(5,5,10,0.9)), url('sports_bg.jpg') center/cover;
}

.sports-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.align-left { text-align: left; }

.sports-list {
    list-style: none;
    margin-top: 2rem;
}

.sports-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.sports-list i { color: var(--primary); }

.match-card {
    padding: 2rem;
    text-align: center;
}

.tournament { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.teams { font-size: 2rem; font-weight: 800; display: flex; justify-content: center; gap: 2rem; align-items: center; }
.vs { font-size: 1rem; color: var(--primary); }

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.pricing-card {
    text-align: center;
    position: relative;
}

.price { font-size: 3rem; font-weight: 800; margin: 1.5rem 0; }
.price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }

.plan-features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.plan-features li {
    margin-bottom: 0.8rem;
    color: var(--text-muted);
}

.plan-features li::before {
    content: "✓";
    color: var(--primary);
    margin-right: 1rem;
}

.pricing-card.active {
    transform: scale(1.05);
    background: rgba(20, 25, 45, 0.9);
    border-color: var(--primary);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Download */
.download-container {
    text-align: center;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(0, 163, 255, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.app-buttons img { height: 50px; transition: var(--transition); }
.app-buttons img:hover { transform: scale(1.05); }

/* Footer */
#footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo { font-size: 1.8rem; font-weight: 800; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { text-decoration: none; color: var(--text-muted); }
.socials { display: flex; gap: 1.5rem; font-size: 1.5rem; }
.socials a { color: var(--text-main); }
.copyright { text-align: center; color: var(--text-muted); font-size: 0.9rem; }

/* Responsive */
@media (max-width: 968px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }
    .hero-container, .sports-container { text-align: center; }
    .hero-container { align-items: center; max-width: 100%; }
    .hero-content { display: flex; flex-direction: column; align-items: center; }
    #hero { background: linear-gradient(rgba(5, 5, 10, 0.85), rgba(5, 5, 10, 0.9)), url('hero_mockup.jpg') center/cover no-repeat; }
    .nav-links { display: none; }
    .section { padding: 4rem 0; }
    .hero-btns { flex-direction: column; width: 100%; }
    .pricing-card.active { transform: none; }
    .footer-content { flex-direction: column; gap: 2rem; }
}
