:root {
  --bg: #060907;
  --bg-alt: #0b0f0c;
  --panel: #0d1410;
  --panel-border: rgba(57, 255, 106, 0.16);
  --green: #33ff7a;
  --green-dim: #1f9e4d;
  --green-glow: rgba(51, 255, 122, 0.35);
  --gold: #f5c542;
  --silver: #cfd8dc;
  --bronze: #d97a3d;
  --text: #e9f2ec;
  --text-muted: #93a39a;
  --text-faint: #5f6f66;
  --danger: #ff5d5d;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --container: 1180px;
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-heading: 'Rajdhani', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.text-accent { color: var(--green); }

.icon { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }
.icon--gold { color: var(--gold); }
.icon--accent { color: var(--green); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, #4dff8f, #17b34f);
  color: #04170b;
  box-shadow: 0 0 24px var(--green-glow);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 4px 30px var(--green-glow); }
.btn--lg { padding: 16px 34px; font-size: 15px; }
.btn--block { width: 100%; }
.btn--outline {
  background: transparent;
  border: 1px solid var(--panel-border);
  color: var(--green);
}
.btn--outline:hover { background: rgba(51,255,122,0.08); }
.btn--nav { display: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 9, 7, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--panel-border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo { display: flex; align-items: center; }
.logo__img { height: 44px; width: 44px; border-radius: 50%; object-fit: cover; }
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
}
.nav a { color: var(--text-muted); transition: color .15s; }
.nav a:hover { color: var(--green); }
.nav-cta { display: none; }
.nav-toggle {
  background: transparent;
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 8px;
}

.hero { position: relative; padding: 72px 0 56px; overflow: hidden; }
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% 0%, rgba(51,255,122,0.16), transparent 70%),
    repeating-linear-gradient(100deg, rgba(51,255,122,0.05) 0 2px, transparent 2px 60px),
    var(--bg);
}
.hero__bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, transparent 60%, var(--bg) 100%),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(51,255,122,0.06) 38px 40px);
}
.hero__inner { position: relative; z-index: 1; text-align: center; }
.badge {
  display: inline-block;
  border: 1px solid var(--panel-border);
  color: var(--green);
  background: rgba(51,255,122,0.06);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 0.98;
  margin: 0 0 18px;
  font-size: clamp(44px, 9vw, 104px);
}
.hero__title-line { display: block; color: var(--text); text-shadow: 0 0 30px rgba(255,255,255,0.15); }
.hero__title-line--accent {
  background: linear-gradient(135deg, #7dffb0, #22c55e 55%, #0f7a34);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 22px var(--green-glow));
}
.hero__tagline {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  font-size: 15px;
  margin: 0 0 14px;
}
.hero__subtitle {
  max-width: 620px;
  margin: 0 auto 30px;
  color: var(--text-muted);
  font-size: 16px;
}
.hero__subtitle strong { color: var(--text); }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 640px;
  margin: 40px auto 0;
}
.hero__stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 16px 10px;
  text-align: left;
}
.hero__stat div { display: flex; flex-direction: column; line-height: 1.2; }
.hero__stat strong { font-family: var(--font-heading); font-size: 17px; }
.hero__stat span { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

.section { padding: 64px 0; border-top: 1px solid rgba(255,255,255,0.04); }
.section--tight { padding-top: 24px; padding-bottom: 24px; }
.section-title {
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(22px, 3vw, 30px);
  margin: 0 0 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.section-title span:first-child::before,
.section-title span:first-child::after {
  content: "";
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.panel__title {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 20px;
  margin: 0 0 20px;
}

.video-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
  border: 1px solid var(--panel-border);
}
.video-frame__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-frame__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background .18s ease, transform .18s ease;
}
.video-frame__play:hover { background: var(--green); color: #04170b; transform: translate(-50%, -50%) scale(1.06); }
.video-frame__play .icon { width: 26px; height: 26px; margin-left: 3px; }
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.form-panel__hint { color: var(--text-muted); font-size: 14px; margin: -10px 0 18px; }
.form-panel__status { font-size: 13px; margin: 12px 0 0; text-align: center; }
.form-panel__status.is-success { color: var(--green); }
.form-panel__status.is-error { color: var(--danger); }
.uid-form { margin-bottom: 22px; }
.input-wrap { position: relative; margin-bottom: 14px; }
.input-wrap input {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--panel-border);
  border-radius: 999px;
  padding: 13px 44px 13px 18px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
}
.input-wrap input:focus { outline: none; border-color: var(--green); }
.input-wrap__icon { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: var(--text-faint); width: 18px; height: 18px; }

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  cursor: pointer;
}
.checkbox-field input[type="checkbox"] {
  accent-color: var(--green);
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}
.checkbox-field a { color: var(--green); text-decoration: underline; }
.checkbox-field a:hover { color: var(--text); }

.steps { display: flex; flex-direction: column; gap: 16px; }
.steps li { display: flex; align-items: flex-start; gap: 12px; }
.steps .icon {
  color: var(--green);
  background: rgba(51,255,122,0.1);
  border-radius: 50%;
  padding: 6px;
  width: 32px; height: 32px;
  flex-shrink: 0;
}
.steps strong { display: block; font-size: 14px; }
.steps span { font-size: 13px; color: var(--text-muted); }

.prizes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}
.prize-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.prize-card__trophy { width: 56px; height: 56px; margin-bottom: 10px; }
.prize-card--silver .prize-card__trophy { color: var(--silver); filter: drop-shadow(0 0 10px rgba(207,216,220,0.45)); }
.prize-card--gold .prize-card__trophy { width: 68px; height: 68px; color: var(--gold); filter: drop-shadow(0 0 16px rgba(245,197,66,0.6)); }
.prize-card--bronze .prize-card__trophy { color: var(--bronze); filter: drop-shadow(0 0 10px rgba(217,122,61,0.45)); }
.prize-card__rank { font-family: var(--font-heading); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: 13px; color: var(--text-muted); }
.prize-card__amount { font-family: var(--font-heading); font-size: 30px; font-weight: 700; }
.prize-card__label { font-size: 12px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.06em; }
.prize-card--gold {
  border-color: rgba(245,197,66,0.5);
  background: linear-gradient(180deg, rgba(245,197,66,0.12), var(--panel) 60%);
  transform: scale(1.04);
}
.prize-card--gold .prize-card__amount { color: var(--gold); }
.prize-card--bronze .prize-card__amount { color: var(--bronze); }

.tiers { margin-bottom: 26px; }
.tiers__caption { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-faint); margin-bottom: 12px; }
.tiers__caption small { text-transform: none; letter-spacing: 0; }
.tier-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-alt);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 10px;
}
.tier-row__icon { color: var(--green); background: rgba(51,255,122,0.1); border-radius: 50%; padding: 8px; width: 34px; height: 34px; }
.tier-row--pro .tier-row__icon { color: #6fb8ff; background: rgba(111,184,255,0.12); }
.tier-row--shark .tier-row__icon { color: #c98bff; background: rgba(201,139,255,0.12); }
.tier-row__info { flex: 1; display: flex; flex-direction: column; }
.tier-row__info strong { font-family: var(--font-heading); font-size: 14px; }
.tier-row__info span { font-size: 13px; color: var(--text-muted); }
.tier-row__info small { font-size: 11px; color: var(--text-faint); }
.tier-row__mult { font-family: var(--font-heading); font-weight: 700; font-size: 16px; color: var(--green); background: rgba(51,255,122,0.1); padding: 6px 12px; border-radius: 999px; }

.reload { display: grid; grid-template-columns: 1fr; gap: 14px; }
.reload__caption { grid-column: 1 / -1; display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-faint); margin-bottom: 12px; }
.reload-card {
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid;
}
.reload-card .icon { margin-bottom: 8px; }
.reload-card strong { display: block; font-family: var(--font-heading); font-size: 14px; margin-bottom: 6px; }
.reload-card strong small { font-weight: 600; color: var(--text-muted); }
.reload-card p { margin: 0; font-size: 13px; color: var(--text-muted); }
.reload-card--loss { background: rgba(255,93,93,0.06); border-color: rgba(255,93,93,0.3); }
.reload-card--loss .icon { color: var(--danger); }
.reload-card--profit { background: rgba(51,255,122,0.06); border-color: var(--panel-border); }
.reload-card--profit .icon { color: var(--green); }

.eligibility--cards { display: grid; grid-template-columns: 1fr; gap: 16px; }
.eligibility-card {
  background: var(--bg-alt);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
}
.eligibility-card .icon { color: var(--green); margin: 0 auto 10px; }
.eligibility-card strong { display: block; font-size: 14px; margin-bottom: 6px; }
.eligibility-card p { margin: 0; font-size: 13px; color: var(--text-muted); }

.live-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-heading); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--green); background: rgba(51,255,122,0.1);
  padding: 5px 12px; border-radius: 999px;
}
.live-tag i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); display: inline-block; box-shadow: 0 0 8px var(--green); }

.table-scroll { overflow-x: auto; border: 1px solid var(--panel-border); border-radius: var(--radius-lg); }
.leaderboard { width: 100%; border-collapse: collapse; min-width: 640px; font-size: 14px; }
.leaderboard th {
  text-align: left; text-transform: uppercase; font-size: 11px; letter-spacing: 0.06em;
  color: var(--text-faint); padding: 14px 18px; background: var(--panel); position: sticky; top: 0;
}
.leaderboard td { padding: 14px 18px; border-top: 1px solid rgba(255,255,255,0.05); }
.leaderboard tbody tr:nth-child(odd) { background: rgba(255,255,255,0.015); }
.leaderboard tbody tr.rank-1 { background: linear-gradient(90deg, rgba(245,197,66,0.12), transparent); }
.leaderboard tbody tr.rank-2 { background: linear-gradient(90deg, rgba(207,216,220,0.09), transparent); }
.leaderboard tbody tr.rank-3 { background: linear-gradient(90deg, rgba(217,122,61,0.09), transparent); }
.rank-cell { display: flex; align-items: center; gap: 8px; font-weight: 700; }
.rank-medal { width: 20px; height: 20px; }
.rank-badge {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
  background: rgba(255,255,255,0.08);
  color: var(--text-muted);
}
tr.rank-1 .rank-badge { background: rgba(245,197,66,0.18); color: var(--gold); }
tr.rank-2 .rank-badge { background: rgba(207,216,220,0.16); color: var(--silver); }
tr.rank-3 .rank-badge { background: rgba(217,122,61,0.18); color: var(--bronze); }
.tier-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); }
.tier-pill .icon { width: 15px; height: 15px; }
.roi-cell { color: var(--green); font-weight: 600; }
.score-cell { font-family: var(--font-heading); font-weight: 700; }
.leaderboard__note { text-align: center; font-size: 12px; color: var(--text-faint); margin: 14px 0 0; }
.center-cta { text-align: center; margin-top: 26px; }

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(2, 5, 3, 0.75);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.is-open { display: flex; }
.modal {
  width: 100%;
  max-width: 900px;
  max-height: 85vh;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--panel-border);
}
.modal__header h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 18px;
  margin: 0;
}
.modal__close {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--panel-border);
  border-radius: 50%;
  color: var(--text);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.modal__close .icon { width: 16px; height: 16px; transform: rotate(45deg); }
.modal__close:hover { background: rgba(255,93,93,0.15); border-color: rgba(255,93,93,0.4); color: var(--danger); }
.modal__body { padding: 8px 22px 22px; overflow-y: auto; border: none; border-radius: 0; }
.modal__body .leaderboard { min-width: 560px; }
.modal__body table thead th { position: sticky; top: 0; }
body.modal-open { overflow: hidden; }

.legal-hero { padding: 56px 0 8px; text-align: center; }
.legal-hero__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.03em;
  margin: 0 0 10px;
  font-size: clamp(28px, 5vw, 48px);
  color: var(--text);
}
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 19px;
  color: var(--green);
  margin: 36px 0 12px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--text-muted); font-size: 15px; line-height: 1.7; margin: 0 0 14px; }
.legal-content ul, .legal-content ol { margin: 0 0 14px; padding-left: 22px; color: var(--text-muted); font-size: 15px; line-height: 1.7; }
.legal-content li { margin-bottom: 6px; }
.legal-content strong { color: var(--text); }
.legal-content a { color: var(--green); text-decoration: underline; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 24px; color: var(--text-muted); font-size: 13px; font-family: var(--font-heading); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.legal-back .icon { width: 14px; height: 14px; transform: rotate(180deg); }
.legal-back:hover { color: var(--green); }

.faq-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.faq-item {
  display: flex;
  flex-direction: column;
  text-align: left;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  color: var(--text);
  position: relative;
}
.faq-item > span {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-heading); font-weight: 600; font-size: 15px;
  width: 100%;
}
.faq-item > span::after { content: none; }
.faq-item .icon { width: 18px; height: 18px; color: var(--green); position: absolute; right: 18px; top: 17px; transition: transform .2s; }
.faq-item p {
  max-height: 0; overflow: hidden; opacity: 0;
  margin: 0; font-size: 13px; color: var(--text-muted);
  transition: max-height .25s ease, opacity .2s ease, margin .25s ease;
}
.faq-item.is-open p { max-height: 200px; opacity: 1; margin-top: 12px; }
.faq-item.is-open .icon { transform: rotate(45deg); }

.footer-cta { text-align: center; }
.footer-cta__title {
  font-family: var(--font-heading); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.03em; font-size: clamp(20px, 3vw, 28px); margin: 0 0 10px;
}
.footer-cta p { color: var(--text-muted); max-width: 480px; margin: 0 auto 22px; }
.footer-cta .btn { margin-top: 18px; }

.site-footer { border-top: 1px solid var(--panel-border); padding: 32px 0; }
.footer__inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer__copy { font-size: 13px; color: var(--text-muted); margin: 0; }
.footer__disclaimer { font-size: 12px; color: var(--text-faint); margin: 0; max-width: 560px; }
.footer__links { display: flex; gap: 18px; margin-top: 6px; font-size: 12px; }
.footer__links a { color: var(--text-faint); }
.footer__links a:hover { color: var(--green); }

@media (min-width: 700px) {
  .prizes { grid-template-columns: repeat(3, 1fr); align-items: center; }
  .prize-card--silver { order: 1; }
  .prize-card--gold { order: 2; transform: scale(1.08); }
  .prize-card--bronze { order: 3; }
  .eligibility--cards { grid-template-columns: repeat(3, 1fr); }
  .reload { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 860px) {
  .nav { display: flex; }
  .btn--nav { display: inline-flex; }
  .nav-toggle { display: none; }
}

@media (min-width: 900px) {
  .grid-2 { grid-template-columns: 1fr 1fr; align-items: start; }
}

@media (max-width: 859px) {
  .nav {
    position: fixed;
    top: 65px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--panel-border);
    padding: 8px 24px 18px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform .25s ease, opacity .2s ease;
    z-index: 90;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; }
  .nav a { padding: 12px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav a.nav-cta {
    display: inline-flex;
    justify-content: center;
    border-bottom: none;
    margin-top: 14px;
    padding: 13px 26px;
    color: #04170b;
  }
}

@media (max-width: 480px) {
  .hero__stats { grid-template-columns: 1fr; }
  .hero__stat { justify-content: flex-start; }
}
