/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #060a14;
    color: #e0e0e0;
    line-height: 1.7;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== HERO PREDICTIONS LINK ===== */
.hero-predictions-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
    transition: all 0.3s ease;
}
.hero-predictions-link:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.35);
    color: #fff;
    transform: translateY(-2px);
}
.hero-pred-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #22c55e;
    animation: heroDotPulse 2s ease-in-out infinite;
}
@keyframes heroDotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.hero-pred-count {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.25);
    color: #a78bfa;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
}
.hero-pred-count:empty { display: none; }
.hero-pred-arrow {
    color: rgba(255,255,255,0.4);
    transition: transform 0.3s;
}
.hero-predictions-link:hover .hero-pred-arrow {
    transform: translateX(3px);
    color: #a78bfa;
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
    background: linear-gradient(135deg, #F5C842 0%, #FFE066 50%, #F5C842 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== HEADER ===== */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 16px 0;
    transition: all 0.3s ease;
}
.header.scrolled {
    background: rgba(6,10,20,0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 10px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 24px; }
.logo-text { font-size: 20px; font-weight: 800; color: #fff; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
    font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.6);
    transition: color 0.3s;
}
.nav-links a:hover { color: #F5C842; }
.nav-cta {
    background: linear-gradient(135deg, #F5C842, #FFE066);
    color: #0a0e1a; font-weight: 700; font-size: 13px;
    padding: 10px 24px; border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,200,66,0.3); }
.mobile-menu { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.mobile-menu span { width: 24px; height: 2px; background: #fff; transition: 0.3s; display: block; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; padding: 80px 0;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-orb {
    position: absolute; border-radius: 50%;
    filter: blur(100px); opacity: 0.4;
}
.hero-orb-1 { width: 500px; height: 500px; background: #F5C842; top: -100px; right: -100px; opacity: 0.08; }
.hero-orb-2 { width: 400px; height: 400px; background: #00D4FF; bottom: -50px; left: -100px; opacity: 0.06; }
.hero-orb-3 { width: 300px; height: 300px; background: #8b2035; top: 50%; left: 50%; opacity: 0.05; }
.hero-content {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center; position: relative; z-index: 1;
}
.hero-badge {
    display: inline-block;
    background: rgba(245,200,66,0.1); border: 1px solid rgba(245,200,66,0.2);
    padding: 8px 20px; border-radius: 50px;
    font-size: 13px; font-weight: 600; color: #F5C842;
    margin-bottom: 24px;
}
.hero h1 { font-size: 56px; font-weight: 900; line-height: 1.1; color: #fff; margin-bottom: 20px; }
.hero-desc { font-size: 17px; color: rgba(255,255,255,0.5); margin-bottom: 36px; max-width: 480px; }
.hero-buttons { display: flex; gap: 16px; margin-bottom: 48px; }
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px; border-radius: 14px;
    font-weight: 700; font-size: 15px; transition: all 0.3s;
}
.btn-primary {
    background: linear-gradient(135deg, #F5C842, #FFE066); color: #0a0e1a;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(245,200,66,0.3); }
.btn-secondary {
    background: rgba(255,255,255,0.06); color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.hero-stats { display: flex; gap: 32px; align-items: center; }
.stat { text-align: center; }
.stat-num { display: block; font-size: 28px; font-weight: 900; color: #F5C842; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* Phone Mockup */
.hero-phone { display: flex; justify-content: center; }
.phone-mockup {
    width: 280px; background: #111827;
    border-radius: 36px; padding: 12px;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 60px rgba(245,200,66,0.08);
    overflow: hidden;
}
.phone-screenshot {
    width: 100%; height: auto; display: block;
    border-radius: 26px;
    object-fit: cover;
}

/* Hero Matches Strip */
.hm-strip {
    display: none;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 12px 0; margin-top: 72px;
    z-index: 10;
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.hm-strip-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px; overflow: hidden;
}
.hm-header {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px;
}
.hm-title { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 6px; }
.hm-show-all { font-size: 12px; color: #F5C842; font-weight: 600; text-decoration: none; }
.hm-show-all:hover { color: #fff; }
.hm-scroll {
    display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px;
    scrollbar-width: none; -ms-overflow-style: none;
}
.hm-scroll::-webkit-scrollbar { display: none; }
.hm-card {
    display: flex; align-items: center; gap: 10px; padding: 8px 14px;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px; transition: all 0.2s; position: relative; overflow: hidden;
    flex-shrink: 0; min-width: 260px; text-decoration: none; color: inherit;
}
.hm-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }
.hm-card.live { border-color: rgba(239,68,68,0.3); }
.hm-card.live::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
    background: #ef4444;
}
.hm-team { flex: 1; display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: #fff; white-space: nowrap; }
.hm-team.away { flex-direction: row-reverse; }
.hm-flag { width: 20px; height: 14px; border-radius: 2px; object-fit: cover; }
.hm-center { text-align: center; min-width: 60px; flex-shrink: 0; }
.hm-score { font-size: 14px; font-weight: 900; color: rgba(255,255,255,0.5); letter-spacing: 1px; }
.hm-score.live-score { color: #F5C842; }
.hm-status { font-size: 8px; font-weight: 700; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-top: 1px; }
.hm-status.live-status { color: #ef4444; animation: hm-pulse 1.5s infinite; }
.hm-time { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.4); }
@keyframes hm-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* ===== FEATURES ===== */
.features { padding: 100px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
    display: inline-block;
    background: rgba(245,200,66,0.1); border: 1px solid rgba(245,200,66,0.15);
    padding: 6px 18px; border-radius: 50px;
    font-size: 12px; font-weight: 600; color: #F5C842;
    margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px;
}
.section-header h2 { font-size: 42px; font-weight: 900; color: #fff; }
.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px; padding: 36px 28px;
    transition: all 0.4s ease;
}
.feature-card:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(245,200,66,0.15);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.feature-icon { font-size: 40px; margin-bottom: 20px; }
.feature-card h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; }

/* ===== SCREENSHOTS ===== */
.screenshots { padding: 100px 0; background: rgba(245,200,66,0.02); }
.screenshots-scroll {
    display: flex; gap: 24px; overflow-x: auto;
    padding: 20px 0; scroll-snap-type: x mandatory;
    -ms-overflow-style: none; scrollbar-width: none;
}
.screenshots-scroll::-webkit-scrollbar { display: none; }
.screenshot-card {
    flex: 0 0 260px; scroll-snap-align: center; text-align: center;
}
.screenshot-label {
    font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.4);
    margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px;
}
.screenshot-phone {
    background: #111827; border-radius: 28px; padding: 8px;
    border: 1px solid rgba(255,255,255,0.08);
}
.sp-content {
    background: #0a0e1a; border-radius: 22px; padding: 20px 14px;
    min-height: 380px; text-align: left; font-size: 12px;
}
.sp-content.login { text-align: center; padding-top: 30px; }
.sp-btn {
    padding: 10px; border-radius: 10px; margin-bottom: 8px;
    font-size: 12px; font-weight: 600; text-align: center;
}
.sp-btn.google { background: #fff; color: #333; }
.sp-btn.apple { background: #000; color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.sp-btn.gold { background: linear-gradient(135deg, #F5C842, #FFE066); color: #0a0e1a; }
.sp-input {
    padding: 10px; border-radius: 10px; margin-bottom: 8px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.3); font-size: 11px;
}
.sp-tab {
    padding: 5px 10px; border-radius: 14px; font-size: 10px; font-weight: 600;
    background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.4);
}
.sp-tab.active { background: rgba(245,200,66,0.15); color: #F5C842; }
.sp-match {
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px; padding: 10px; margin-bottom: 8px; font-size: 11px;
}
.sp-match.live { border-color: rgba(239,68,68,0.2); }
.sp-live { color: #ef4444; font-size: 9px; font-weight: 700; }
.sp-time { color: #F5C842; font-size: 9px; font-weight: 700; }
.sp-done { color: rgba(255,255,255,0.3); font-size: 9px; }
.sp-notif {
    background: rgba(245,200,66,0.06); border: 1px solid rgba(245,200,66,0.1);
    border-radius: 10px; padding: 10px; margin-bottom: 8px;
    font-size: 11px; color: rgba(255,255,255,0.6);
}
.sp-lang {
    display: flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px; padding: 12px; margin-bottom: 8px; font-size: 13px;
}
.sp-check { margin-left: auto; color: #F5C842; font-weight: 700; }

/* ===== PREDICTIONS CTA ===== */
.predictions { padding: 100px 0; }
.predictions-card {
    background: linear-gradient(135deg, rgba(245,200,66,0.04), rgba(0,212,255,0.02));
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 32px; padding: 60px 48px;
    position: relative; overflow: hidden;
}
.predictions-orb {
    position: absolute; border-radius: 50%;
    filter: blur(80px); pointer-events: none;
}
.predictions-orb-1 {
    width: 400px; height: 400px; background: #F5C842;
    top: -200px; right: -100px; opacity: 0.06;
}
.predictions-orb-2 {
    width: 300px; height: 300px; background: #00D4FF;
    bottom: -150px; left: -80px; opacity: 0.04;
}
.predictions-content {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
    align-items: center; position: relative; z-index: 1;
}
.predictions-text { }
.predictions-text h2 { font-size: 36px; font-weight: 900; color: #fff; margin-bottom: 16px; }
.predictions-desc { font-size: 15px; color: rgba(255,255,255,0.5); margin-bottom: 28px; line-height: 1.7; }
.predictions-list { list-style: none; margin-bottom: 32px; }
.predictions-list li {
    display: flex; align-items: flex-start; gap: 14px;
    margin-bottom: 20px;
}
.pred-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.predictions-list strong { display: block; color: #fff; font-size: 15px; margin-bottom: 2px; }
.predictions-list span { font-size: 13px; color: rgba(255,255,255,0.4); }
.predictions-cta { margin-bottom: 20px; display: flex; flex-wrap: wrap; gap: 12px; }
.btn-outline-gold {
    background: transparent;
    border: 1px solid rgba(245,200,66,0.3);
    color: #F5C842;
}
.btn-outline-gold:hover {
    background: rgba(245,200,66,0.08);
    border-color: rgba(245,200,66,0.5);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(245,200,66,0.12);
}
.predictions-live-stats {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
}
.predictions-live-stats #predCount {
    color: #F5C842;
    font-weight: 800;
    font-size: 15px;
}
.pred-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
    animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
    50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* Predictions Phone Visual */
.predictions-visual { display: flex; justify-content: center; }
.pred-phone {
    width: 260px; background: #111827;
    border-radius: 32px; padding: 10px;
    border: 2px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 40px rgba(245,200,66,0.06);
}
.pred-screen {
    background: #0a0e1a; border-radius: 24px; padding: 16px 14px;
    min-height: 360px;
}
.pred-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 14px;
}
.pred-bracket-title {
    font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.5);
    margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px;
}
.pred-team-row {
    display: flex; align-items: center; gap: 8px;
    padding: 6px 8px; margin-bottom: 4px;
    background: rgba(255,255,255,0.03); border-radius: 8px;
    font-size: 12px; font-weight: 500;
}
.pred-rank {
    width: 22px; height: 22px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 800;
    background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.4);
}
.pred-rank.gold { background: rgba(245,200,66,0.15); color: #F5C842; }
.pred-rank.silver { background: rgba(192,192,192,0.15); color: #C0C0C0; }
.pred-rank.bronze { background: rgba(205,127,50,0.15); color: #CD7F32; }
.pred-qualified { margin-left: auto; color: #22c55e; font-size: 10px; font-weight: 700; }
.pred-maybe { margin-left: auto; color: #F5C842; font-size: 10px; font-weight: 700; }
.pred-out { margin-left: auto; color: rgba(255,255,255,0.2); font-size: 10px; }
.pred-divider {
    height: 1px; background: rgba(255,255,255,0.06);
    margin: 12px 0;
}
.pred-final-match {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    padding: 10px 0; margin-bottom: 8px;
}
.pred-final-team { text-align: center; font-size: 12px; font-weight: 600; }
.pred-vs { color: rgba(255,255,255,0.3); font-size: 11px; font-weight: 700; }
.pred-winner {
    text-align: center; font-size: 12px;
    background: rgba(245,200,66,0.08); border: 1px solid rgba(245,200,66,0.15);
    border-radius: 10px; padding: 8px; margin-bottom: 10px;
}
.pred-share-btn {
    text-align: center; font-size: 11px; font-weight: 700;
    background: linear-gradient(135deg, #F5C842, #FFE066); color: #0a0e1a;
    padding: 8px; border-radius: 10px;
}

/* ===== DOWNLOAD ===== */
.download { padding: 100px 0; }
.download-card {
    background: linear-gradient(135deg, rgba(245,200,66,0.06), rgba(0,212,255,0.03));
    border: 1px solid rgba(245,200,66,0.1);
    border-radius: 32px; padding: 80px 40px; text-align: center;
    position: relative; overflow: hidden;
}
.download-orb {
    position: absolute; width: 400px; height: 400px;
    background: #F5C842; border-radius: 50%;
    top: -200px; right: -100px; opacity: 0.04; filter: blur(80px);
}
.download-card h2 { font-size: 42px; font-weight: 900; color: #fff; margin-bottom: 12px; }
.download-card p { font-size: 16px; color: rgba(255,255,255,0.5); margin-bottom: 40px; }
.download-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.store-btn {
    display: flex; align-items: center; gap: 14px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    padding: 16px 32px; border-radius: 16px;
    transition: all 0.3s;
}
.store-btn:hover {
    background: rgba(255,255,255,0.1); transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.store-btn small { font-size: 11px; color: rgba(255,255,255,0.5); }
.store-btn strong { font-size: 16px; color: #fff; }

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
    margin-bottom: 40px;
}
.footer-brand p { color: rgba(255,255,255,0.35); font-size: 14px; margin-top: 12px; }
.footer-links h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-links a {
    display: block; color: rgba(255,255,255,0.4); font-size: 13px;
    margin-bottom: 10px; transition: color 0.3s;
}
.footer-links a:hover { color: #F5C842; }
.footer-bottom {
    text-align: center; padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom p { color: rgba(255,255,255,0.25); font-size: 13px; }

/* ===== LEGAL PAGES ===== */
.legal-page { padding: 120px 0 80px; }
.legal-content {
    max-width: 800px; margin: 0 auto;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px; padding: 48px;
}
.legal-content h1 { color: #F5C842; font-size: 32px; margin-bottom: 8px; }
.legal-content .date { color: rgba(255,255,255,0.3); font-size: 13px; margin-bottom: 32px; }
.legal-content h2 { color: #F5C842; font-size: 20px; margin-top: 32px; margin-bottom: 12px; }
.legal-content p { color: rgba(255,255,255,0.6); margin-bottom: 14px; font-size: 15px; }
.legal-content ul { padding-left: 20px; }
.legal-content li { color: rgba(255,255,255,0.6); margin-bottom: 8px; font-size: 15px; list-style: disc; }
.legal-content a { color: #F5C842; }
.legal-content .badge-4plus {
    display: inline-block; background: rgba(245,200,66,0.12); color: #F5C842;
    padding: 8px 24px; border-radius: 12px; font-size: 24px; font-weight: 800;
    margin: 10px 0 20px; border: 1px solid rgba(245,200,66,0.2);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .mobile-menu { display: flex; }
    .nav-links.open {
        display: flex; flex-direction: column; position: absolute;
        top: 70px; left: 0; right: 0;
        background: rgba(6,10,20,0.95); backdrop-filter: blur(20px);
        padding: 24px; gap: 20px; border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero h1 { font-size: 36px; }
    .hero-desc { margin: 0 auto 30px; }
    .hero-buttons { justify-content: center; flex-wrap: wrap; }
    .hero-stats { justify-content: center; }
    .features-grid { grid-template-columns: 1fr; }
    .predictions-content { grid-template-columns: 1fr; }
    .predictions-card { padding: 36px 24px; }
    .predictions-visual { margin-top: 20px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .download-card { padding: 50px 24px; }
    .download-card h2 { font-size: 28px; }
    .section-header h2 { font-size: 28px; }
    .legal-content { padding: 28px; }
}
