:root {
  --red:     #e63030;
  --red-dark:#b81c1c;
  --gold:    #f5c518;
  --gold2:   #ffd700;
  --bg:      #0d0d0d;
  --bg2:     #161616;
  --bg3:     #1e1e1e;
  --text:    #f0f0f0;
  --muted:   #a0a0a0;
  --radius:  12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

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

/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #2a2a2a;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 38px;
  width: auto;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.5px;
}

nav {
  display: flex;
  gap: 24px;
  font-size: 0.9rem;
  font-weight: 500;
}

nav a {
  color: var(--muted);
  transition: color .2s;
}
nav a:hover { color: var(--gold); }

.btn {
  display: inline-block;
  padding: 11px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .2s;
  text-align: center;
  white-space: nowrap;
  border: none;
  outline: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold2), #e5a800);
  color: #111;
  box-shadow: 0 4px 18px rgba(255,215,0,0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,215,0,0.55);
}

.btn-red {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 4px 18px rgba(230,48,48,0.35);
}
.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(230,48,48,0.55);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #111;
  transform: translateY(-2px);
}

/* ── HERO BANNER ── */
.hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13,13,13,0.92) 45%, rgba(13,13,13,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 60px 48px;
}

.badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
  color: #fff;
}

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

.hero p {
  font-size: 1.05rem;
  color: #d0d0d0;
  margin-bottom: 32px;
  max-width: 480px;
}

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

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--bg3);
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
  padding: 18px 24px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.trust-item strong {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
}

.trust-item span {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── SECTIONS ── */
section { padding: 64px 24px; }

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

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}

.section-title span { color: var(--gold); }

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 560px;
}

/* ── GAME CARDS ── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.game-card {
  background: var(--bg3);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #2a2a2a;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  border-color: var(--gold);
}

.game-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

.game-card-body {
  padding: 14px 16px 16px;
}

.game-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.game-card-body p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.tag {
  display: inline-block;
  background: rgba(245,197,24,0.12);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid rgba(245,197,24,0.3);
}

/* ── BONUS SECTION ── */
.bonus-section {
  background: var(--bg2);
}

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.bonus-card {
  background: var(--bg3);
  border: 1px solid #2e2e2e;
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}

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

.bonus-card .icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.bonus-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.bonus-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

.bonus-amount {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  margin: 10px 0 6px;
}

/* ── SEO TEXT ── */
.seo-section {
  background: var(--bg2);
}

.seo-block {
  background: var(--bg3);
  border: 1px solid #252525;
  border-radius: var(--radius);
  padding: 36px 40px;
  line-height: 1.8;
  font-size: 0.97rem;
  color: #ccc;
}

.seo-block h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
}

.seo-block h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  margin: 24px 0 10px;
}

.seo-block p { margin-bottom: 14px; }

.seo-block ul {
  margin: 10px 0 14px 20px;
}

.seo-block ul li {
  margin-bottom: 6px;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(135deg, #1a0a00, #2d1200);
  border-top: 1px solid #3a2200;
  border-bottom: 1px solid #3a2200;
  text-align: center;
  padding: 56px 24px;
}

.cta-strip h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 14px;
}

.cta-strip h2 span { color: var(--gold); }

.cta-strip p {
  color: #c0a060;
  margin-bottom: 30px;
  font-size: 1rem;
}

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

.pay-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.pay-badge {
  background: var(--bg3);
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s, border-color .2s;
}
.pay-badge:hover { color: var(--gold); border-color: var(--gold); }

/* ── FAQ ── */
.faq-section { background: var(--bg2); }

.faq-list { max-width: 780px; }

.faq-item {
  border-bottom: 1px solid #252525;
  padding: 20px 0;
}

.faq-q {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 8px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .2s;
}

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

.faq-a {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  display: none;
}

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

/* ── FOOTER ── */
footer {
  background: #0a0a0a;
  border-top: 1px solid #1e1e1e;
  padding: 40px 24px 24px;
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo img { height: 32px; }

.footer-logo span {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}

.footer-links a { color: var(--muted); font-size: 0.82rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }

.disclaimer {
  max-width: 680px;
  margin: 0 auto;
  font-size: 0.75rem;
  color: #555;
  line-height: 1.6;
}

/* ── FLOATING BTN ── */
.float-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,215,0,0.4); }
  50%       { box-shadow: 0 0 0 14px rgba(255,215,0,0); }
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { display: none; }
  .hero-content { padding: 48px 20px; }
  .seo-block { padding: 24px 20px; }
  .trust-bar { gap: 24px; }
}

/* ══════════════════════════════════════
   REDIRECT COUNTDOWN OVERLAY
══════════════════════════════════════ */
#rd-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rdFadeIn .35s ease;
}

@keyframes rdFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

#rd-card {
  background: linear-gradient(160deg, #1a1a1a 0%, #111 100%);
  border: 1px solid rgba(245,197,24,0.25);
  border-radius: 20px;
  padding: 44px 40px 36px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.7), 0 0 0 1px rgba(245,197,24,0.08);
  animation: rdSlideUp .4s cubic-bezier(.22,1,.36,1);
}

@keyframes rdSlideUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

#rd-logo {
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffd700;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(255,215,0,0.4);
}

#rd-msg {
  font-size: 1rem;
  color: #bbb;
  margin-bottom: 28px;
}

/* SVG ring timer */
#rd-timer-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

#rd-ring {
  width: 80px;
  height: 80px;
  transform: rotate(-90deg);
}

.rd-track {
  fill: none;
  stroke: #2a2a2a;
  stroke-width: 5;
}

.rd-arc {
  fill: none;
  stroke: url(#rdGradient);
  stroke: #ffd700;
  stroke-width: 5;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.05s linear;
}

#rd-num {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  transition: color .3s;
}

#rd-num.rd-pulse {
  color: #ffd700;
  animation: rdPulse .5s ease infinite alternate;
}

@keyframes rdPulse {
  from { transform: translate(-50%,-50%) scale(1);   }
  to   { transform: translate(-50%,-50%) scale(1.2); }
}

/* progress bar */
#rd-bar-wrap {
  height: 4px;
  background: #222;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 24px;
}

#rd-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ffd700, #e63030);
  border-radius: 4px;
  transition: width 0.05s linear;
}

/* button */
#rd-btn {
  display: inline-block;
  padding: 13px 36px;
  background: linear-gradient(135deg, #ffd700, #e5a800);
  color: #111;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(255,215,0,0.4);
  transition: transform .15s, box-shadow .15s;
  margin-bottom: 14px;
}

#rd-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,215,0,0.6);
}

#rd-sub {
  font-size: 0.78rem;
  color: #555;
}

@media (max-width: 480px) {
  #rd-card { padding: 32px 20px 28px; }
  #rd-logo { font-size: 1.1rem; }
}
