/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #0a0a10;
  --bg2:      #0f0f1a;
  --bg3:      #141422;
  --cyan:     #00d4ff;
  --orange:   #ff6b35;
  --gold:     #fbbf24;
  --text:     #e2e8f0;
  --muted:    #64748b;
  --border:   rgba(0, 212, 255, 0.12);
  --radius:   14px;
  --radius-s: 8px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Ticker ────────────────────────────────────────── */
.ticker-wrap {
  background: linear-gradient(90deg, #cc4a00 0%, var(--orange) 100%);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}

.ticker {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  padding-right: 60px;
}

.ticker span { flex-shrink: 0; }

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Header ────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 16, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 64px;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 36px; height: 36px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.logo-text {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}
.logo-accent { color: var(--cyan); }

.nav { display: flex; gap: 4px; margin-left: auto; }
.nav-link {
  padding: 7px 16px;
  border-radius: var(--radius-s);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  transition: all .2s;
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,.05); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse-cyan 1.5s ease-in-out infinite;
}

@keyframes pulse-cyan {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,212,255,.4); }
  50% { opacity: .7; box-shadow: 0 0 0 5px rgba(0,212,255,0); }
}

/* ── Hero ──────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,212,255,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,107,53,.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  background: rgba(0,212,255,.08);
  border: 1px solid rgba(0,212,255,.2);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
}

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

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 420px;
}

.hero-nums {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}

.hn { text-align: center; }
.hn-val {
  font-family: 'Unbounded', sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.hn-big::after { content: 'K'; }
.hn-lbl { font-size: 12px; color: var(--muted); margin-top: 4px; }
.hn-sep { width: 1px; height: 40px; background: var(--border); }

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--cyan), #0099cc);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all .25s;
  box-shadow: 0 0 30px rgba(0,212,255,.25);
}
.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0,212,255,.4);
}

.hero-badge-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-badge {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  animation: floatBadge 4s ease-in-out infinite;
  transition: transform .3s;
}
.hb2 { animation-delay: .5s; }
.hb3 { animation-delay: 1s; }

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero-badge:hover { transform: translateY(-3px) scale(1.02) !important; }

.hb-label {
  position: absolute;
  top: -10px; left: 16px;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.hb1 { border-color: rgba(251,191,36,.3); }
.hb1 .hb-label { background: var(--gold); color: #000; }
.hb2 .hb-label { background: #475569; color: #fff; font-size: 9px; }
.hb3 .hb-label { background: var(--cyan); color: #000; font-size: 9px; }

.hb-logo {
  width: 44px; height: 44px;
  background: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.hb-logo img { width: 36px; height: 36px; object-fit: contain; }
.hb-name { font-weight: 700; font-size: 15px; flex: 1; }
.hb-amount {
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: var(--cyan);
  white-space: nowrap;
  flex-shrink: 0;
}
.hb1 .hb-amount { color: var(--gold); }

/* ── Top-3 ─────────────────────────────────────────── */
.top3-section { padding: 70px 0; }

.sec-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  gap: 10px;
}

.sec-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  background: rgba(255,107,53,.1);
  border: 1px solid rgba(255,107,53,.25);
  padding: 4px 14px;
  border-radius: 100px;
}

.sec-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: #fff;
}

.top3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.top3-card {
  position: relative;
  background: var(--bg2);
  border-radius: 20px;
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  transition: transform .3s;
  border: 1px solid var(--border);
}
.top3-card:hover { transform: translateY(-6px); }

.t3-gold { border-color: rgba(251,191,36,.35); }
.t3-silver { border-color: rgba(148,163,184,.2); }
.t3-bronze { border-color: rgba(0,212,255,.25); }

.t3-rank {
  position: absolute;
  top: 16px; left: 16px;
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 900;
  color: var(--muted);
}
.t3-gold .t3-rank { color: var(--gold); }
.t3-bronze .t3-rank { color: var(--cyan); }

.t3-fire {
  position: absolute;
  top: 12px; right: 14px;
  font-size: 20px;
}

.t3-badge-new {
  position: absolute;
  top: 14px; right: 12px;
  font-size: 10px;
  font-weight: 700;
  color: var(--cyan);
  background: rgba(0,212,255,.1);
  border: 1px solid rgba(0,212,255,.25);
  padding: 2px 8px;
  border-radius: 100px;
}

.t3-logo {
  width: 64px; height: 64px;
  background: #fff;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 8px 0 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.t3-logo img { width: 52px; height: 52px; object-fit: contain; }

.t3-name { font-weight: 800; font-size: 17px; color: #fff; margin-bottom: 4px; }

.t3-stars { font-size: 13px; color: var(--gold); margin-bottom: 14px; }
.t3-rv { color: var(--muted); font-size: 12px; }
.half-star { opacity: .4; }

.t3-amount {
  font-family: 'Unbounded', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
}
.t3-gold .t3-amount { color: var(--gold); }
.t3-bronze .t3-amount { color: var(--cyan); }

.t3-type { font-size: 12px; color: var(--muted); margin-bottom: 18px; }

.t3-perks {
  list-style: none;
  text-align: left;
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.t3-perks li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.t3-perks li::before {
  content: '✓';
  color: var(--muted);
  font-weight: 700;
  flex-shrink: 0;
}
.t3-gold .t3-perks li::before { color: var(--gold); }
.t3-bronze .t3-perks li::before { color: var(--cyan); }

.t3-btn {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-s);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  transition: all .2s;
  margin-top: auto;
}
.t3-btn:hover { background: rgba(255,255,255,.12); }
.t3-gold .t3-btn {
  background: linear-gradient(135deg, var(--gold), #f59e0b);
  border: none; color: #000;
}
.t3-gold .t3-btn:hover { opacity: .9; transform: translateY(-1px); }
.t3-bronze .t3-btn {
  background: linear-gradient(135deg, var(--cyan), #0099cc);
  border: none; color: #000;
}

.t3-glow {
  position: absolute;
  bottom: -60px; left: 50%;
  transform: translateX(-50%);
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,.02);
  pointer-events: none;
}
.t3-gold .t3-glow { background: rgba(251,191,36,.05); }
.t3-bronze .t3-glow { background: rgba(0,212,255,.05); }

/* ── Trust bar ─────────────────────────────────────── */
.trust-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
}

.trust-sep { width: 1px; height: 24px; background: var(--border); }

/* ── Ratings Table ─────────────────────────────────── */
.ratings-section { padding: 70px 0 80px; }

.filter-tabs {
  display: flex;
  gap: 6px;
  margin-top: 16px;
}

.ftab {
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}
.ftab:hover { color: var(--text); border-color: rgba(255,255,255,.2); }
.ftab.active { background: var(--cyan); border-color: var(--cyan); color: #000; }

.ratings-table { display: flex; flex-direction: column; gap: 8px; }

.rt-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1fr 120px;
  gap: 16px;
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

.rt-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1fr 120px;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .2s;
}
.rt-row:hover {
  border-color: rgba(0,212,255,.3);
  background: var(--bg3);
  transform: translateX(4px);
}
.rt-row.hidden { display: none; }

.rt-bk { display: flex; align-items: center; gap: 12px; }

.rt-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: var(--muted);
  min-width: 22px;
  text-align: center;
}
.rt-row:nth-child(2) .rt-num { color: var(--gold); }
.rt-row:nth-child(3) .rt-num { color: #94a3b8; }
.rt-row:nth-child(4) .rt-num { color: var(--orange); }

.rt-logo {
  width: 44px; height: 44px;
  background: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.rt-logo img { width: 36px; height: 36px; object-fit: contain; }

.rt-name { font-weight: 700; font-size: 15px; color: #fff; }
.rt-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }

.rt-rating { display: flex; flex-direction: column; gap: 3px; }
.rt-stars { font-size: 12px; color: var(--gold); letter-spacing: -1px; }
.rt-score { font-size: 13px; font-weight: 700; color: var(--text); }

.rt-amount { font-weight: 800; font-size: 18px; color: #fff; }
.rt-desc { font-size: 12px; color: var(--muted); margin-top: 2px; }

.rt-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}
.badge-bonus  { background: rgba(251,191,36,.12); color: var(--gold);   border: 1px solid rgba(251,191,36,.25); }
.badge-freebet{ background: rgba(0,212,255,.1);   color: var(--cyan);   border: 1px solid rgba(0,212,255,.2); }
.badge-promo  { background: rgba(255,107,53,.1);  color: var(--orange); border: 1px solid rgba(255,107,53,.2); }

.rt-btn {
  display: inline-block;
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, var(--cyan), #0099cc);
  color: #000;
  font-weight: 700;
  font-size: 13px;
  border-radius: var(--radius-s);
  text-align: center;
  transition: all .2s;
}
.rt-btn:hover { opacity: .85; transform: translateY(-1px); }

/* ── FAQ ───────────────────────────────────────────── */
.faq-section { padding: 0 0 80px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color .2s;
  font-family: inherit;
  gap: 12px;
}
.faq-q:hover { color: var(--cyan); }
.faq-q svg { flex-shrink: 0; transition: transform .25s; color: var(--muted); }
.faq-q.open svg { transform: rotate(180deg); }
.faq-q.open { color: var(--cyan); }

.faq-a {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  transition: all .3s ease;
}
.faq-a.open { max-height: 200px; padding: 0 22px 18px; }

/* ── Footer ────────────────────────────────────────── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}

.footer-top {
  display: flex;
  gap: 60px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.footer-brand { max-width: 280px; }
.footer-desc { font-size: 13px; color: var(--muted); margin-top: 12px; line-height: 1.6; }

.footer-links { display: flex; gap: 48px; margin-left: auto; }
.fl-col { display: flex; flex-direction: column; gap: 10px; }
.fl-title { font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 4px; }
.fl-col a { font-size: 13.5px; color: var(--muted); transition: color .2s; }
.fl-col a:hover { color: var(--cyan); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: var(--muted); line-height: 1.5; max-width: 600px; }
.footer-copy { font-weight: 700; white-space: nowrap; }

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-right { order: -1; }
  .hero-badge-wrap { flex-direction: column; gap: 10px; }
  .hero-badge { width: 100%; animation: none !important; }
  .top3-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .rt-header { display: none; }
  .rt-row { grid-template-columns: 1fr auto; gap: 10px; }
  .rt-bk { grid-column: 1; }
  .rt-btn { grid-column: 2; grid-row: 1 / 3; align-self: center; width: auto; padding: 10px 16px; }
  .rt-rating { display: none; }
  .rt-badge { display: none; }
  .rt-bonus { grid-column: 1; }
  .footer-top { flex-direction: column; gap: 30px; }
  .footer-links { flex-wrap: wrap; gap: 30px; }
  .trust-sep { display: none; }
  .trust-inner { gap: 14px; }
}

@media (max-width: 600px) {
  .nav { display: none; }
  .hero { padding: 40px 0 32px; }
  .hero-nums { gap: 14px; }
  .hn-val { font-size: 22px; }
  .hero-badge { padding: 12px 16px; }
  .hb-logo { width: 38px; height: 38px; }
  .hb-logo img { width: 30px; height: 30px; }
  .hb-name { font-size: 14px; }
  .hb-amount { font-size: 13px; }
  .rt-row { padding: 14px 16px; }
  .rt-logo { width: 38px; height: 38px; }
  .rt-logo img { width: 30px; height: 30px; }
  .rt-amount { font-size: 15px; }
}
