@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Open+Sans:wght@300;400;500;600&display=swap');

:root {
  --primary: #f5a623;
  --primary-dark: #d4891a;
  --primary-light: #ffc04d;
  --bg-dark: #0d0f14;
  --bg-card: #161a23;
  --bg-card2: #1e2330;
  --border: #2a3044;
  --text: #e8eaf0;
  --text-muted: #7a8299;
  --text-light: #b0b8cc;
  --green: #22c55e;
  --red: #ef4444;
  --blue: #3b82f6;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  min-height: 100vh;
}

h1,h2,h3,h4,h5 {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-light); }

img { max-width: 100%; height: auto; }

/* ─── HEADER ─── */
header {
  background: #0a0c10;
  border-bottom: 2px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(245,166,35,0.15);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

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

/* NAV */
nav { display: flex; align-items: center; gap: 4px; }

nav a {
  color: var(--text-light);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}

nav a:hover, nav a.active {
  color: var(--primary);
  background: rgba(245,166,35,0.1);
}

.btn-register {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff !important;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  padding: 9px 20px !important;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-register:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary)) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(245,166,35,0.4);
}

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, #0d0f14 0%, #141824 50%, #0d0f14 100%);
  padding: 70px 20px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(245,166,35,0.07) 0%, transparent 60%);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.hero h1 span { color: var(--primary); }

.hero p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: 8px;
  transition: all .3s;
  text-decoration: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245,166,35,0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--border);
  color: var(--text-light);
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 28px;
  border-radius: 8px;
  transition: all .3s;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* HERO STATS */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: all .3s;
}

.stat-card:hover {
  border-color: rgba(245,166,35,0.4);
  transform: translateY(-3px);
}

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ─── RATING BAR ─── */
.rating-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px;
}

.rating-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.rating-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.rating-item strong { color: var(--text); }

.stars { color: var(--primary); letter-spacing: 2px; }

/* ─── SECTION ─── */
section { padding: 60px 20px; }

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

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

.section-tag {
  display: inline-block;
  background: rgba(245,166,35,0.12);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ─── FEATURES GRID ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all .3s;
}

.feature-card:hover {
  border-color: rgba(245,166,35,0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(245,166,35,0.2), rgba(245,166,35,0.05));
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── REVIEW SECTION ─── */
.review-section { background: var(--bg-card); }

.review-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.review-content h2 {
  font-size: 34px;
  color: #fff;
  margin-bottom: 16px;
}

.review-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 15px;
}

.review-content h3 {
  font-size: 22px;
  color: var(--primary);
  margin: 28px 0 12px;
}

.pros-list {
  list-style: none;
  margin: 0 0 24px;
}

.pros-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-light);
}

.pros-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  margin-top: 2px;
  flex-shrink: 0;
}

/* SIDEBAR */
.sidebar-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: sticky;
  top: 90px;
}

.sidebar-card h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}

.rating-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.rating-row:last-of-type { border-bottom: none; }
.rating-row span:first-child { color: var(--text-muted); }
.rating-row span:last-child { color: var(--primary); font-weight: 600; }

.score-big {
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.score-number {
  font-family: 'Oswald', sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.score-max { font-size: 18px; color: var(--text-muted); }
.score-label { font-size: 13px; color: var(--text-muted); margin-top: 6px; }

/* ─── BONUS SECTION ─── */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all .3s;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.bonus-card:hover {
  border-color: rgba(245,166,35,0.3);
  transform: translateY(-3px);
}

.bonus-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.bonus-card h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 12px;
}

.bonus-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ─── PAYMENTS ─── */
.payments-section { background: var(--bg-card); }

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.payment-pill {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}

.payment-pill:hover {
  border-color: rgba(245,166,35,0.3);
  color: var(--primary);
}

.payment-pill .icon { font-size: 18px; }

/* ─── SPORTS ─── */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sport-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  transition: all .3s;
  cursor: pointer;
}

.sport-card:hover {
  border-color: rgba(245,166,35,0.4);
  background: var(--bg-card2);
  transform: translateY(-3px);
}

.sport-card .emoji { font-size: 36px; margin-bottom: 10px; }

.sport-card h4 {
  font-size: 15px;
  color: #fff;
  margin-bottom: 4px;
}

.sport-card span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ─── FAQ ─── */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  padding: 18px 22px;
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: color .2s;
}

.faq-question:hover { color: var(--primary); }

.faq-arrow {
  font-size: 20px;
  color: var(--primary);
  transition: transform .3s;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.faq-item.open .faq-answer { display: block; }

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(135deg, #1a1000 0%, #0d0f14 50%, #1a1000 100%);
  border-top: 1px solid rgba(245,166,35,0.2);
  border-bottom: 1px solid rgba(245,166,35,0.2);
  text-align: center;
  padding: 70px 20px;
}

.cta-section h2 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 16px;
}

.cta-section h2 span { color: var(--primary); }

.cta-section p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── FOOTER ─── */
footer {
  background: #08090c;
  border-top: 1px solid var(--border);
  padding: 50px 20px 20px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.footer-col p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}

.footer-col ul li a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}

.disclaimer {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.disclaimer strong { color: var(--primary); }

/* ─── PAGE BANNER ─── */
.page-banner {
  background: linear-gradient(135deg, #0d0f14, #161a23);
  border-bottom: 1px solid var(--border);
  padding: 40px 20px;
  text-align: center;
}

.page-banner h1 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 10px;
}

.page-banner h1 span { color: var(--primary); }

.page-banner p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--primary); }

/* ─── INNER PAGE CONTENT ─── */
.content-section { padding: 50px 20px; }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.content-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
}

.content-box h2 {
  font-size: 26px;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}

.content-box h3 {
  font-size: 20px;
  color: var(--primary);
  margin: 24px 0 12px;
}

.content-box p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.content-box ul {
  list-style: none;
  margin-bottom: 16px;
}

.content-box ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.content-box ul li::before {
  content: '▸';
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* INFO BOX */
.info-box {
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 8px;
  padding: 18px 20px;
  margin: 20px 0;
  font-size: 14px;
  color: var(--text-light);
}

.info-box strong { color: var(--primary); }

/* STEPS */
.steps { counter-reset: step; }

.step-item {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.step-num {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 17px;
  color: #fff;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* REVIEW CARDS */
.review-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

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

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #000;
  flex-shrink: 0;
}

.reviewer-name { font-size: 15px; color: #fff; font-weight: 500; }
.reviewer-date { font-size: 12px; color: var(--text-muted); }
.review-stars { color: var(--primary); font-size: 14px; }
.review-text { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* TABLE */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.info-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.info-table td:first-child {
  color: var(--text-muted);
  width: 40%;
  font-weight: 500;
}

.info-table td:last-child { color: var(--text-light); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner, .review-grid, .content-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .features-grid, .bonus-cards { grid-template-columns: 1fr 1fr; }
  .sports-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 38px; }
  nav { display: none; }
  nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    background: #0a0c10;
    border-bottom: 2px solid var(--primary);
    padding: 10px;
    gap: 2px;
  }
  .burger { display: flex; }
  header { position: relative; }
}

@media (max-width: 600px) {
  .features-grid, .bonus-cards, .sports-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
  section { padding: 40px 16px; }
  .hero { padding: 40px 16px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}
