:root {
  --gold: #FFB805;
  --dark: #1A1A1A;
  --dark2: #222222;
  --dark3: #2A2A2A;
  --gold-dim: rgba(255,184,5,0.15);
  --gold-mid: rgba(255,184,5,0.4);
  --text-muted: #888888;
  --text-light: #CCCCCC;
  --white: #FFFFFF;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Manrope', sans-serif; background: var(--dark); color: var(--white); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 60px;
  background: rgba(26,26,26,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,184,5,0.12);
}
.logo { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 3px; color: var(--gold); }
.logo span { color: var(--white); }
.logo img { height: 36px; width: auto; display: block; }
nav ul { list-style: none; display: flex; gap: 36px; }
nav ul a { text-decoration: none; color: var(--text-light); font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; transition: color 0.2s; }
nav ul a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--dark); font-weight: 800; font-size: 13px;
  letter-spacing: 1px; text-transform: uppercase; border: none; padding: 12px 28px;
  cursor: pointer; transition: all 0.2s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.nav-cta:hover { background: #ffc933; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 65% 50%, rgba(255,184,5,0.07) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 15% 80%, rgba(255,184,5,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,184,5,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,184,5,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 80% at 55% 50%, black 0%, transparent 80%);
  pointer-events: none;
}

/* LEFT col */
.hero-content { max-width: 580px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-dim); border: 1px solid var(--gold-mid);
  color: var(--gold); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 16px; margin-bottom: 28px;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%; animation: pulse 1.5s infinite; flex-shrink: 0;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.8)} }

h1 { font-family: 'Bebas Neue', sans-serif; font-size: 52px; line-height: 1.1; letter-spacing: 1px; margin-bottom: 24px; }
h1 .gold { color: var(--gold); }
h1 .outline { -webkit-text-stroke: 2px var(--gold); color: transparent; }

.hero-sub { font-size: 16px; color: var(--text-light); line-height: 1.7; max-width: 460px; margin-bottom: 36px; }

/* Store buttons in hero */
.hero-stores { display: flex; flex-wrap: wrap; gap: 12px; }
.store-btn {
  display: flex; align-items: center; gap: 12px;
  background: var(--dark2); border: 1.5px solid rgba(255,184,5,0.25);
  padding: 14px 24px; cursor: pointer; transition: all 0.25s;
  text-decoration: none; color: var(--white);
}
.store-btn:hover { border-color: var(--gold); background: rgba(255,184,5,0.06); transform: translateY(-2px); }
.store-btn.gold-store { background: var(--gold); border-color: var(--gold); }
.store-btn.gold-store .store-sub,
.store-btn.gold-store .store-name { color: var(--dark); }
.store-icon { font-size: 26px; line-height: 1; }
.store-info { text-align: left; }
.store-sub { font-size: 9px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1px; }
.store-name { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 1px; line-height: 1; }

/* RIGHT col – app screenshot */
.hero-right { display: flex; align-items: center; gap: 20px; }
.hero-app-image {
  width: 420px;
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}

/* ── TICKER ── */
.ticker { background: var(--gold); padding: 13px 0; overflow: hidden; }
.ticker-inner { display: flex; gap: 60px; animation: tickerMove 22s linear infinite; white-space: nowrap; }
@keyframes tickerMove { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-item { font-family: 'Bebas Neue', sans-serif; font-size: 15px; letter-spacing: 2px; color: var(--dark); display: flex; align-items: center; gap: 14px; }
.ticker-sep { color: rgba(26,26,26,0.35); }

/* ── SECTIONS ── */
.section { padding: 90px 60px; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: 60px; letter-spacing: 2px; line-height: 1; margin-bottom: 50px; }

/* features grid */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,184,5,0.1); border: 1px solid rgba(255,184,5,0.1); }
.feature-card { background: var(--dark); padding: 40px 36px; transition: background 0.25s; position: relative; overflow: hidden; }
.feature-card:hover { background: var(--dark2); }
.feature-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.feature-card:hover::after { transform: scaleX(1); }
.feature-icon { width: 48px; height: 48px; background: var(--gold-dim); border: 1px solid var(--gold-mid); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; }
.feature-title { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 1px; margin-bottom: 10px; }
.feature-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ── LIVE ── */
.live-section { padding: 90px 60px; background: var(--dark2); border-top: 1px solid rgba(255,184,5,0.08); border-bottom: 1px solid rgba(255,184,5,0.08); }
.live-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.live-card { background: var(--dark); border: 1px solid rgba(255,184,5,0.12); padding: 26px 28px; transition: border-color 0.25s; }
.live-card:hover { border-color: rgba(255,184,5,0.4); }
.live-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,50,50,0.15); border: 1px solid rgba(255,50,50,0.3); color: #ff6464; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 4px 10px; margin-bottom: 14px; }
.live-badge::before { content: ''; width: 5px; height: 5px; background: #ff4444; border-radius: 50%; animation: pulse 1s infinite; }
.match-name { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 1px; margin-bottom: 4px; }
.match-sport { font-size: 12px; color: var(--text-muted); margin-bottom: 18px; }
.odds-row { display: flex; gap: 10px; }
.odd-pill { flex: 1; padding: 11px 8px; background: var(--dark3); border: 1px solid rgba(255,184,5,0.1); text-align: center; cursor: pointer; transition: all 0.2s; }
.odd-pill:hover { background: var(--gold-dim); border-color: var(--gold-mid); }
.odd-pill.sel { background: var(--gold); border-color: var(--gold); }
.odd-label { font-size: 9px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.odd-val { font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: var(--gold); margin-top: 2px; }
.odd-pill.sel .odd-label, .odd-pill.sel .odd-val { color: var(--dark); }

/* ── TRUST ── */
.trust-bar { padding: 60px; border-top: 1px solid rgba(255,184,5,0.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 28px; }
.trust-item { text-align: center; }
.trust-num { font-family: 'Bebas Neue', sans-serif; font-size: 42px; letter-spacing: 1px; color: var(--gold); line-height: 1; }
.trust-label { font-size: 11px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ── ARTICLE CONTENT ── */
.article-section {
  padding: 80px 60px;
  border-top: 1px solid rgba(255,184,5,0.08);
}
.article-section:nth-child(even) { background: var(--dark2); }
.article-inner {
  max-width: 860px;
  margin: 0 auto;
}
.article-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  letter-spacing: 2px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.article-section h2 .gold { color: var(--gold); }
.article-section h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin: 36px 0 14px;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
}
.article-section p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.article-section ul {
  list-style: none;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.article-section ul li {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}
.article-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.article-section ul li strong { color: var(--white); }

/* numbered step lists */
.article-section ol {
  list-style: none;
  counter-reset: step-counter;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.article-section ol li {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  padding-left: 36px;
  position: relative;
  counter-increment: step-counter;
  min-height: 24px;
}
.article-section ol li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-mid);
  color: var(--gold);
  border-radius: 50%;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.article-section ol li strong { color: var(--white); }

/* article with side image */
.article-with-image { display: flex; flex-direction: column; gap: 28px; margin: 36px 0 0; }
.article-with-image .article-text h3:first-child { margin-top: 0; }
.article-img { width: 100%; max-width: 840px; border-radius: 16px; }
@media (max-width: 900px) {
  .article-img {
    max-width: none;
    width: calc(100% + 40px);
    margin: 0 -20px;
    border-radius: 0;
  }
}

/* article tables */
.article-table-wrap { overflow-x: auto; margin: 16px 0 24px; }
.article-section table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.article-section thead th {
  background: rgba(255,184,5,0.12);
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255,184,5,0.3);
}
.article-section tbody td {
  padding: 12px 16px;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  vertical-align: top;
}
.article-section tbody tr:last-child td { border-bottom: none; }
.article-section tbody tr:hover td { background: rgba(255,184,5,0.04); }

/* faq */
.faq-item { margin-bottom: 24px; }
.faq-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 8px;
  padding-left: 0;
  border-left: none;
}
.faq-item p { margin-bottom: 0; }

@media (max-width: 900px) {
  .article-section { padding: 60px 20px; }
  .article-section h2 { font-size: 36px; }
  .article-section h3 { font-size: 16px; margin: 28px 0 12px; }
}
@media (max-width: 480px) {
  .article-section h2 { font-size: 30px; }
}

/* ── INNER PAGE HEADER ── */
.page-hero {
  padding: 150px 60px 64px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.page-hero .section-label { display: flex; justify-content: center; }
.page-hero h1 { font-size: 56px; margin-bottom: 16px; }
.page-hero p { color: var(--text-light); font-size: 15px; line-height: 1.7; }
@media (max-width: 900px) {
  .page-hero { padding: 120px 20px 48px; }
  .page-hero h1 { font-size: 36px; }
}

/* ── DOWNLOAD SECTION ── */
.download-section { padding: 110px 60px; text-align: center; position: relative; overflow: hidden; }
.download-section::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 1px; height: 100%; background: linear-gradient(to bottom, transparent, rgba(255,184,5,0.3), transparent); }
.download-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 400px; background: radial-gradient(ellipse, rgba(255,184,5,0.06) 0%, transparent 70%); pointer-events: none; }
.download-section h2 { font-family: 'Bebas Neue', sans-serif; font-size: 76px; letter-spacing: 3px; line-height: 0.95; margin-bottom: 20px; position: relative; }
.download-section p { font-size: 16px; color: var(--text-muted); max-width: 460px; margin: 0 auto 48px; line-height: 1.7; position: relative; }
.dl-store-buttons { display: flex; gap: 18px; justify-content: center; align-items: center; flex-wrap: wrap; position: relative; }
.dl-store-btn { display: flex; align-items: center; gap: 14px; background: var(--dark2); border: 1.5px solid rgba(255,184,5,0.25); padding: 18px 30px; cursor: pointer; transition: all 0.25s; text-decoration: none; color: var(--white); }
.dl-store-btn:hover { border-color: var(--gold); background: rgba(255,184,5,0.06); transform: translateY(-3px); }
.dl-store-btn.primary-store { background: var(--gold); border-color: var(--gold); }
.dl-store-btn.primary-store .store-sub, .dl-store-btn.primary-store .store-name { color: var(--dark); }
.dl-store-btn .store-icon { font-size: 30px; }
.dl-store-btn .store-sub { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.dl-store-btn .store-name { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 1px; }

/* ── FAQ ── */
.faq-section {
  padding: 90px 60px;
  background: var(--dark2);
  border-top: 1px solid rgba(255,184,5,0.08);
}
.faq-inner {
  max-width: 860px;
  margin: 0 auto;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid rgba(255,184,5,0.12);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid rgba(255,184,5,0.12); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  transition: color 0.2s;
  user-select: none;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-answer p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}
@media (max-width: 900px) {
  .faq-section { padding: 60px 20px; }
  .faq-question { font-size: 14px; padding: 18px 0; }
}

/* ── FOOTER ── */
footer { background: #111; padding: 36px 60px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,184,5,0.1); flex-wrap: wrap; gap: 16px; }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 3px; color: var(--gold); }
.footer-logo img { height: 30px; width: auto; display: block; }
.footer-copy { font-size: 12px; color: var(--text-muted); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp 0.7s forwards; }
.fade-up.d1 { animation-delay: 0.1s; }
.fade-up.d2 { animation-delay: 0.25s; }
.fade-up.d3 { animation-delay: 0.4s; }
.fade-up.d4 { animation-delay: 0.55s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ═══════════════════════════════
   MOBILE  ≤ 900px
═══════════════════════════════ */
@media (max-width: 900px) {
  /* NAV */
  nav { padding: 14px 20px; }
  nav ul { display: none; }
  .nav-cta { padding: 10px 18px; font-size: 12px; }

  /* HERO – stack vertically */
  .hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  h1 { font-size: 38px; }
  .hero-sub { font-size: 14px; }
  .hero-badge { font-size: 10px; }
  .hero-stores { gap: 10px; }
  .store-btn { padding: 12px 18px; gap: 10px; }
  .store-icon { font-size: 22px; }
  .store-name { font-size: 16px; }

  /* app image */
  .hero-right { justify-content: center; }
  .hero-app-image { width: 220px; }

  /* SECTIONS */
  .section { padding: 60px 20px; }
  .section-title { font-size: 46px; margin-bottom: 36px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 28px 24px; }

  /* LIVE */
  .live-section { padding: 60px 20px; }
  .live-grid { grid-template-columns: 1fr; gap: 14px; }
  .live-card { padding: 20px 20px; }

  /* TRUST */
  .trust-bar { padding: 40px 20px; justify-content: center; gap: 24px; }
  .trust-item { min-width: 120px; }

  /* DOWNLOAD */
  .download-section { padding: 70px 20px; }
  .download-section h2 { font-size: 54px; }
  .dl-store-buttons { flex-direction: column; align-items: stretch; max-width: 320px; margin: 0 auto; }
  .dl-store-btn { justify-content: center; }

  /* FOOTER */
  footer { padding: 28px 20px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-links { gap: 16px; }
}

/* ═══════════════════════════════
   SMALL MOBILE  ≤ 480px
═══════════════════════════════ */
@media (max-width: 480px) {
  h1 { font-size: 32px; }
  .hero-app-image { width: 280px; }
  .section-title { font-size: 40px; }
  .trust-item { min-width: 100px; }
  .trust-num { font-size: 34px; }
  .store-btn { padding: 10px 14px; }
  .hero-stores { flex-direction: column; }
}
