/* =============================================================
   JABULA BETS — Global Stylesheet
   Domain: jabulabets.co.uk
   Mobile-first, dark casino theme
============================================================= */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }
ul, ol { list-style: none; }

/* ── CUSTOM PROPERTIES ── */
:root {
  --gold: #FFD700;
  --gold-dark: #FFA500;
  --gold-dim: rgba(255,215,0,0.13);
  --gold-border: rgba(255,215,0,0.25);
  --green: #39FF14;
  --green-dark: #00CC00;
  --bg: #08080E;
  --bg2: #0F0F1A;
  --bg3: #14142A;
  --card: #111120;
  --card2: #181830;
  --border: rgba(255,255,255,0.07);
  --text: #F0F0F8;
  --muted: #888899;
  --red: #FF003C;
  --tp: #00B65D;
  --info: #0099FF;
  --radius: 14px;
  --radius-sm: 8px;
  --tr: 0.28s ease;
  --shadow-gold: 0 0 24px rgba(255,215,0,0.35);
  --shadow-green: 0 0 24px rgba(57,255,20,0.35);
  --hh: 64px; /* header height */
}

/* ── SCROLL PROGRESS ── */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 9999;
  background: linear-gradient(90deg, var(--gold), var(--green));
  width: 0%; transition: width 0.12s linear;
}

/* ── LAYOUT ── */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 16px; }

section { padding: 64px 0; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 { font-weight: 900; line-height: 1.15; }
strong { color: var(--gold); font-weight: 700; }

/* ── HEADER ── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--hh);
  background: rgba(8,8,14,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gold-border);
}
.header-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.logo {
  display: flex; align-items: center; gap: 9px;
  font-size: 1.25rem; font-weight: 900; color: var(--gold);
  text-transform: uppercase; letter-spacing: 1.5px; flex-shrink: 0;
}
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; box-shadow: var(--shadow-gold);
}

/* ── DESKTOP NAV ── */
.nav-desktop { display: none; }
@media (min-width: 900px) {
  .nav-desktop {
    display: flex; align-items: center; gap: 2px;
  }
  .nav-desktop a {
    padding: 8px 12px; border-radius: 7px;
    font-size: 0.86rem; font-weight: 600; color: var(--muted);
    transition: var(--tr); white-space: nowrap;
  }
  .nav-desktop a:hover,
  .nav-desktop a.active { background: var(--gold-dim); color: var(--gold); }
}
.header-right { display: flex; align-items: center; gap: 10px; }

/* ── LANG SWITCHER ── */
.lang-switcher { display: flex; gap: 3px; }
.lang-btn {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  color: var(--muted); padding: 5px 9px;
  border-radius: 5px; cursor: pointer;
  font-size: 0.68rem; font-weight: 700;
  transition: var(--tr); text-transform: uppercase;
}
.lang-btn.active, .lang-btn:hover { background: var(--gold); color: #000; border-color: var(--gold); }

/* ── HEADER CTA ── */
.btn-header {
  display: none;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #000; font-weight: 900; font-size: 0.8rem;
  padding: 9px 18px; border-radius: 50px; border: none;
  cursor: pointer; white-space: nowrap;
  box-shadow: var(--shadow-green);
  animation: pulse-green 2.4s infinite;
}
@media (min-width: 540px) { .btn-header { display: inline-block; } }

/* ── BURGER ── */
.burger {
  background: none; border: none; cursor: pointer;
  padding: 6px; display: flex; flex-direction: column; gap: 5px;
}
.burger-line { width: 23px; height: 2px; background: var(--gold); border-radius: 2px; transition: var(--tr); }
.burger.open .burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open .burger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open .burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 900px) { .burger { display: none; } }

/* ── MOBILE NAV ── */
.nav-mobile {
  display: none;
  position: fixed; top: var(--hh); left: 0; right: 0; bottom: 0;
  background: rgba(8,8,14,0.98); backdrop-filter: blur(20px);
  z-index: 999; overflow-y: auto; padding: 20px 16px 40px;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 4px; }
.nav-mobile a {
  display: block; padding: 14px 16px;
  font-size: 1.05rem; font-weight: 700;
  border-radius: var(--radius-sm); transition: var(--tr);
  border: 1px solid transparent;
}
.nav-mobile a:hover { background: var(--gold-dim); color: var(--gold); border-color: var(--gold-border); }
.nav-mobile-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

/* ── TICKER ── */
.ticker-wrap {
  overflow: hidden; background: var(--gold);
  height: 36px; display: flex; align-items: center;
  margin-top: var(--hh);
}
.ticker-track {
  display: flex; white-space: nowrap;
  animation: ticker-anim 32s linear infinite;
}
.ticker-track span {
  color: #000; font-weight: 800; font-size: 0.78rem;
  padding: 0 48px; border-right: 2px solid rgba(0,0,0,0.15);
}
@keyframes ticker-anim {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 900; font-size: 1rem; text-transform: uppercase;
  letter-spacing: 0.5px; border: none; cursor: pointer;
  padding: 15px 30px; border-radius: 50px; transition: var(--tr);
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.15); opacity: 0; transition: var(--tr);
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-2px) scale(1.03); }
.btn:active { transform: scale(0.97); }

.btn-green {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #000; box-shadow: var(--shadow-green);
  animation: pulse-green 2.4s infinite;
}
.btn-green:hover { animation: none; box-shadow: 0 0 40px rgba(57,255,20,0.65); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000; box-shadow: var(--shadow-gold);
  animation: pulse-gold 2.4s infinite;
}
.btn-gold:hover { animation: none; box-shadow: 0 0 40px rgba(255,215,0,0.65); }

.btn-outline {
  background: transparent; border: 2px solid var(--gold);
  color: var(--gold); animation: none !important;
}
.btn-outline:hover { background: var(--gold-dim); }

.btn-sm  { padding: 10px 20px; font-size: 0.82rem; }
.btn-lg  { padding: 18px 40px; font-size: 1.1rem; }

@keyframes pulse-green {
  0%,100% { box-shadow: 0 0 18px rgba(57,255,20,0.35); }
  50%      { box-shadow: 0 0 42px rgba(57,255,20,0.7), 0 0 70px rgba(57,255,20,0.25); }
}
@keyframes pulse-gold {
  0%,100% { box-shadow: 0 0 18px rgba(255,215,0,0.35); }
  50%      { box-shadow: 0 0 42px rgba(255,215,0,0.7), 0 0 70px rgba(255,215,0,0.25); }
}

/* ── HERO (MAIN – index.html) ── */
.hero {
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 60px 16px;
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(106,13,173,0.28) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(255,215,0,0.08) 0%, transparent 60%),
    var(--bg);
}
.hero-particles {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-particles span {
  position: absolute; font-size: 2.4rem; opacity: 0.1;
  animation: float 7s ease-in-out infinite;
}
.hero-particles span:nth-child(1){ top:8%;  left:4%;  animation-delay:0s;   }
.hero-particles span:nth-child(2){ top:15%; right:7%; animation-delay:1.2s; }
.hero-particles span:nth-child(3){ top:60%; left:2%;  animation-delay:2.4s; }
.hero-particles span:nth-child(4){ bottom:15%; right:4%; animation-delay:0.8s; }
.hero-particles span:nth-child(5){ top:40%; right:1%; animation-delay:3.2s; }
.hero-particles span:nth-child(6){ bottom:25%; left:8%; animation-delay:1.8s; }
@keyframes float {
  0%,100% { transform: translateY(0) rotate(-5deg) scale(1); }
  50%      { transform: translateY(-22px) rotate(5deg) scale(1.08); }
}

.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold-dim); border: 1px solid var(--gold-border);
  color: var(--gold); padding: 6px 18px; border-radius: 50px;
  font-size: 0.76rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2rem, 8vw, 4.8rem); font-weight: 900;
  line-height: 1.08; margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, var(--gold) 55%, #FF8C00 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  color: var(--muted); max-width: 580px; margin: 0 auto 36px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 48px; }
.hero-stats {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 32px;
  padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-num { display: block; font-size: 1.9rem; font-weight: 900; color: var(--gold); }
.stat-lbl { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; }

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  min-height: 44vh;
  display: flex; align-items: center;
  padding: 80px 16px 48px;
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 80% 100% at 50% 0%, rgba(106,13,173,0.22) 0%, transparent 70%),
    var(--bg2);
}
.page-hero-content { position: relative; z-index: 1; max-width: 800px; }
.page-hero h1 {
  font-size: clamp(1.7rem, 5.5vw, 3.2rem); font-weight: 900;
  line-height: 1.12; margin-bottom: 16px; color: #fff;
}
.page-hero h1 strong { color: var(--gold); font-weight: inherit; }
.page-hero-sub { font-size: 1rem; color: var(--muted); max-width: 600px; margin-bottom: 28px; }
.page-hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  font-size: 0.78rem; color: var(--muted); margin-bottom: 20px;
}
.breadcrumb a { color: var(--muted); transition: color var(--tr); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: var(--gold); font-weight: 600; }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 48px; }
.eyebrow {
  display: inline-block; font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 3px; color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.65rem, 4.5vw, 2.6rem);
  font-weight: 900; line-height: 1.18; margin-bottom: 14px;
}
.section-sub {
  font-size: 0.95rem; color: var(--muted);
  max-width: 580px; margin: 0 auto;
}

/* ── SLOTS GRID ── */
.slots-section {
  background:
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(106,13,173,0.12) 0%, transparent 70%),
    var(--bg2);
}
.slots-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 12px;
}
@media (min-width: 540px)  { .slots-grid { grid-template-columns: repeat(3,1fr); gap: 14px; } }
@media (min-width: 768px)  { .slots-grid { grid-template-columns: repeat(4,1fr); gap: 16px; } }
@media (min-width: 1024px) { .slots-grid { grid-template-columns: repeat(5,1fr); gap: 18px; } }

.slot-card {
  background: var(--card); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden; cursor: pointer;
  transition: transform var(--tr), border-color var(--tr), box-shadow var(--tr);
}
.slot-card:hover {
  transform: translateY(-5px); border-color: var(--gold-border);
  box-shadow: 0 12px 36px rgba(255,215,0,0.18);
}
.slot-card:hover .slot-overlay { opacity: 1; }
.slot-thumb {
  width: 100%; aspect-ratio: 3/4;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: var(--card2);
}
.slot-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.4s ease;
}
.slot-card:hover .slot-thumb img { transform: scale(1.06); }
.slot-rank {
  position: absolute; top: 8px; left: 8px;
  background: var(--gold); color: #000; font-weight: 900; font-size: 0.65rem;
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; z-index: 2;
}
.slot-badge {
  position: absolute; top: 8px; right: 8px;
  background: var(--red); color: #fff;
  font-weight: 800; font-size: 0.58rem; padding: 2px 7px;
  border-radius: 4px; text-transform: uppercase; z-index: 2; letter-spacing: 0.5px;
}
.slot-badge.new { background: var(--info); }
.slot-emoji { font-size: 2.6rem; line-height: 1; }
.slot-label {
  font-size: 0.72rem; font-weight: 800; text-align: center;
  padding: 6px 8px 0; line-height: 1.25; letter-spacing: 0.5px;
}
.slot-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.72);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--tr); z-index: 3;
}
.slot-info { padding: 10px 12px 12px; }
.slot-name  { font-weight: 700; font-size: 0.82rem; margin-bottom: 3px; }
.slot-provider { font-size: 0.68rem; color: var(--muted); margin-bottom: 8px; }
.rtp-row { display: flex; align-items: center; gap: 7px; }
.rtp-track { flex: 1; height: 3px; background: rgba(255,255,255,0.1); border-radius: 2px; }
.rtp-fill  { height: 100%; background: linear-gradient(90deg, var(--gold), var(--green)); border-radius: 2px; }
.rtp-val   { font-size: 0.68rem; font-weight: 700; color: var(--green); }

/* ── BONUS CARDS ── */
.bonus-section { background: var(--bg3); }
.bonus-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 600px) { .bonus-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .bonus-grid { grid-template-columns: repeat(3,1fr); } }

.bonus-card {
  background: var(--card2); border: 1px solid var(--gold-border);
  border-radius: var(--radius); padding: 28px 24px;
  text-align: center; transition: var(--tr); position: relative; overflow: hidden;
}
.bonus-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}
.bonus-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(255,215,0,0.15); }
.bonus-icon   { font-size: 2.6rem; margin-bottom: 14px; display: block; }
.bonus-amount { font-size: 2rem; font-weight: 900; color: var(--gold); display: block; margin-bottom: 8px; text-shadow: 0 0 20px rgba(255,215,0,0.4); }
.bonus-title  { font-size: 1rem; font-weight: 800; margin-bottom: 10px; }
.bonus-desc   { font-size: 0.82rem; color: var(--muted); margin-bottom: 20px; line-height: 1.6; }

/* ── TRUSTPILOT / REVIEWS ── */
.reviews-section { background: var(--bg); }
.tp-score-box {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 24px 48px; padding: 28px 24px; margin-bottom: 40px;
  background: var(--card); border-radius: var(--radius);
  border: 1px solid rgba(0,182,93,0.3);
}
.tp-brand { font-size: 1.4rem; font-weight: 900; color: var(--tp); }
.tp-stars  { font-size: 2rem; color: var(--tp); letter-spacing: 2px; }
.tp-score  { font-size: 2.8rem; font-weight: 900; color: var(--tp); }
.tp-count  { font-size: 0.8rem; color: var(--muted); }
.reviews-grid {
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
@media (min-width: 600px) { .reviews-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .reviews-grid { grid-template-columns: repeat(3,1fr); } }
.review-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; transition: var(--tr);
}
.review-card:hover { border-color: rgba(0,182,93,0.3); }
.r-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.r-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.95rem; flex-shrink: 0; color: #fff;
}
.r-name  { font-weight: 700; font-size: 0.88rem; }
.r-date  { font-size: 0.7rem; color: var(--muted); }
.r-stars { color: #FFC107; font-size: 0.88rem; letter-spacing: 1px; margin-bottom: 8px; }
.r-text  { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

/* ── FEATURES ── */
.why-section { background: var(--bg2); }
.feat-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 14px;
}
@media (min-width: 768px) { .feat-grid { grid-template-columns: repeat(4,1fr); } }
.feat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 18px; text-align: center;
  transition: var(--tr);
}
.feat-card:hover { border-color: var(--gold-border); transform: translateY(-4px); }
.feat-icon  { font-size: 2rem; margin-bottom: 12px; display: block; }
.feat-title { font-weight: 800; font-size: 0.9rem; margin-bottom: 8px; }
.feat-desc  { font-size: 0.78rem; color: var(--muted); line-height: 1.6; }

/* ── FAQ ── */
.faq-section { background: var(--bg); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: none; color: var(--text);
  font-size: 0.92rem; font-weight: 700; padding: 16px 20px;
  text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  transition: color var(--tr);
}
.faq-q:hover { color: var(--gold); }
.faq-arrow { font-size: 0.65rem; transition: transform var(--tr); flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 20px 16px; font-size: 0.82rem; color: var(--muted); line-height: 1.75; }
.faq-a-inner strong { color: var(--gold); }

/* ── CONTENT ARTICLE (sub-pages) ── */
.content-section { background: var(--bg); }
.content-section.alt { background: var(--bg2); }
.content-section.alt2 { background: var(--bg3); }

.article-body { max-width: 860px; margin: 0 auto; }
.article-body p { font-size: 0.92rem; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.article-body h2 {
  font-size: clamp(1.3rem, 3.5vw, 1.9rem);
  color: var(--text); margin: 36px 0 16px;
  padding-bottom: 10px; border-bottom: 2px solid var(--gold-border);
}
.article-body h3 { font-size: 1.05rem; color: var(--gold); margin: 24px 0 10px; }
.article-body ul  { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.article-body ul li { font-size: 0.88rem; color: var(--muted); padding-left: 20px; position: relative; line-height: 1.6; }
.article-body ul li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.article-body strong { color: var(--gold); font-weight: 700; }

/* ── STEPS GRID ── */
.steps-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 540px)  { .steps-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px)  { .steps-grid { grid-template-columns: repeat(4,1fr); } }

.step-card {
  background: var(--card2); border: 1px solid var(--gold-border);
  border-radius: var(--radius); padding: 24px 20px; text-align: center;
  transition: var(--tr); position: relative;
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(255,215,0,0.1); }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000; font-size: 1.2rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.step-icon  { font-size: 2rem; margin-bottom: 12px; display: block; }
.step-title { font-weight: 800; font-size: 0.9rem; margin-bottom: 8px; }
.step-desc  { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }

/* ── INFO BOXES ── */
.info-box {
  border-radius: var(--radius-sm); padding: 16px 20px;
  margin: 20px 0; font-size: 0.85rem; line-height: 1.7;
  display: flex; gap: 12px; align-items: flex-start;
}
.info-box-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.info-box.gold { background: rgba(255,215,0,0.08); border: 1px solid var(--gold-border); color: var(--text); }
.info-box.green { background: rgba(57,255,20,0.07); border: 1px solid rgba(57,255,20,0.25); color: var(--text); }
.info-box.blue  { background: rgba(0,153,255,0.08); border: 1px solid rgba(0,153,255,0.25); color: var(--text); }
.info-box.red   { background: rgba(255,0,60,0.08);  border: 1px solid rgba(255,0,60,0.25);  color: var(--text); }
.info-box strong { color: var(--gold); }

/* ── PROMO CODE BOX ── */
.promo-box {
  background: var(--card2); border: 2px dashed var(--gold);
  border-radius: var(--radius); padding: 24px; text-align: center;
  margin: 24px 0;
}
.promo-code {
  font-size: 1.8rem; font-weight: 900; color: var(--gold);
  letter-spacing: 4px; margin: 8px 0;
  text-shadow: 0 0 20px rgba(255,215,0,0.4);
}
.promo-label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; }

/* ── PAYMENT TABLE ── */
.payment-grid {
  display: grid; grid-template-columns: 1fr; gap: 12px;
}
@media (min-width: 600px) { .payment-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .payment-grid { grid-template-columns: repeat(3,1fr); } }

.payment-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 20px 16px;
  display: flex; flex-direction: column; gap: 8px;
  transition: var(--tr);
}
.payment-card:hover { border-color: var(--gold-border); }
.payment-icon  { font-size: 1.8rem; }
.payment-name  { font-weight: 700; font-size: 0.9rem; }
.payment-time  { font-size: 0.78rem; color: var(--tp); font-weight: 600; }
.payment-limit { font-size: 0.75rem; color: var(--muted); }

/* ── PROS / CONS ── */
.pros-cons-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 640px) { .pros-cons-grid { grid-template-columns: 1fr 1fr; } }

.pros-card, .cons-card {
  background: var(--card); border-radius: var(--radius); padding: 24px;
}
.pros-card { border: 1px solid rgba(57,255,20,0.25); }
.cons-card { border: 1px solid rgba(255,0,60,0.25); }
.pros-card h3 { color: var(--green); margin-bottom: 14px; font-size: 1rem; }
.cons-card h3 { color: var(--red); margin-bottom: 14px; font-size: 1rem; }
.pros-card ul li::before { color: var(--green); }
.cons-card ul li::before { content: '✗'; color: var(--red); }

/* ── RATING BREAKDOWN ── */
.rating-breakdown { max-width: 500px; display: flex; flex-direction: column; gap: 8px; }
.rb-row { display: flex; align-items: center; gap: 12px; }
.rb-label { font-size: 0.78rem; color: var(--muted); width: 50px; text-align: right; flex-shrink: 0; }
.rb-bar-wrap { flex: 1; height: 8px; background: rgba(255,255,255,0.08); border-radius: 4px; }
.rb-bar { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--tp), #00D96E); }
.rb-pct { font-size: 0.75rem; color: var(--muted); width: 36px; }

/* ── KW CHIPS (keyword display) ── */
.kw-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.kw-chip {
  background: var(--gold-dim); border: 1px solid var(--gold-border);
  color: var(--gold); font-size: 0.75rem; font-weight: 600;
  padding: 4px 12px; border-radius: 50px;
}

/* ── BOTTOM CTA ── */
.cta-section {
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(106,13,173,0.22) 0%, transparent 70%),
    var(--bg2);
  text-align: center; padding: 90px 16px;
}
.cta-section h2 {
  font-size: clamp(1.8rem, 5vw, 3.2rem); font-weight: 900; margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 0%, var(--gold) 60%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cta-section p { color: var(--muted); margin-bottom: 32px; font-size: 1rem; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ── FOOTER ── */
.footer { background: #050509; border-top: 1px solid var(--border); padding: 56px 0 28px; }
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 44px;
}
@media (min-width: 600px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.7; margin: 14px 0 16px; }
.footer-col-title {
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--gold); margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.82rem; color: var(--muted); transition: color var(--tr); }
.footer-links a:hover { color: var(--gold); }
.footer-badges { display: flex; flex-wrap: wrap; gap: 7px; }
.badge-pill {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 5px; padding: 4px 10px; font-size: 0.65rem; font-weight: 700; color: var(--muted);
}
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  text-align: center; font-size: 0.72rem; color: var(--muted); line-height: 1.8;
}
.rg-box {
  background: rgba(255,215,0,0.06); border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm); padding: 12px 16px;
  margin-top: 16px; font-size: 0.72rem; color: var(--muted);
}
.rg-box strong { color: var(--gold); }

/* ── TO TOP ── */
#to-top {
  position: fixed; bottom: 24px; right: 20px; z-index: 990;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000; font-size: 1.1rem; font-weight: 900;
  border: none; border-radius: 50%; cursor: pointer;
  box-shadow: 0 4px 20px rgba(255,215,0,0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transform: translateY(16px);
  transition: opacity var(--tr), transform var(--tr), box-shadow var(--tr);
}
#to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
#to-top:hover { box-shadow: 0 6px 32px rgba(255,215,0,0.7); transform: scale(1.12); }

/* ── UTILITIES ── */
.center { text-align: center; }
.mt-24  { margin-top: 24px; }
.mt-32  { margin-top: 32px; }
.mt-48  { margin-top: 48px; }
.mb-24  { margin-bottom: 24px; }
.text-gold  { color: var(--gold); }
.text-green { color: var(--green); }
.text-muted { color: var(--muted); }

/* ── SLOT META / RTP LABEL / VOLATILITY ── */
.slot-meta { font-size: 0.7rem; color: var(--muted); margin-bottom: 6px; }
.rtp-label { font-size: 0.68rem; color: var(--muted); font-weight: 600; }
.volatility {
  font-size: 0.6rem; font-weight: 800; padding: 2px 7px;
  border-radius: 50px; text-transform: uppercase; letter-spacing: 0.5px;
}
.volatility.high { background: rgba(255,65,54,0.15); color: #ff6b6b; }
.volatility.med  { background: rgba(255,215,0,0.12); color: var(--gold); }
.volatility.low  { background: rgba(57,255,20,0.1);  color: var(--green); }

/* ── BONUS TERMS MINI ── */
.bonus-terms-mini {
  list-style: none; display: flex; flex-direction: column; gap: 4px;
  margin: 0 0 20px; text-align: left;
}
.bonus-terms-mini li {
  font-size: 0.75rem; color: var(--muted); padding-left: 16px; position: relative;
}
.bonus-terms-mini li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 900; }

/* ── PAYMENT BADGE ── */
.payment-badge {
  display: inline-block; padding: 3px 10px; border-radius: 50px;
  font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px;
  margin-top: 4px; align-self: flex-start;
}
.payment-badge.fastest { background: rgba(57,255,20,0.12); color: var(--green); border: 1px solid rgba(57,255,20,0.3); }
.payment-badge.fast    { background: rgba(0,182,93,0.12);  color: #00b65d;      border: 1px solid rgba(0,182,93,0.3); }
.payment-badge.standard{ background: rgba(255,215,0,0.1);  color: var(--gold);  border: 1px solid var(--gold-border); }

/* ── FEATURED BONUS CARD ── */
.bonus-card.featured { border-color: var(--green); box-shadow: 0 0 30px rgba(57,255,20,0.15); }
.bonus-card.featured::before { background: linear-gradient(90deg, var(--green), var(--gold)); }
.bonus-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--green); color: #000;
  font-size: 0.6rem; font-weight: 900; padding: 3px 9px;
  border-radius: 4px; text-transform: uppercase; letter-spacing: 0.5px;
}

/* ── LANG SELECT (replaces lang buttons) ── */
.lang-select {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--gold-border);
  color: var(--text);
  font-size: 0.78rem; font-weight: 700;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  outline: 0;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color var(--tr), background var(--tr);
  max-width: 90px;
}
.lang-select:hover { border-color: var(--gold); background: rgba(255,215,0,0.08); }
.lang-select:focus, .lang-select:focus-visible {
  outline: 0 !important;
  box-shadow: none !important;
  border-color: var(--gold);
  background: rgba(255,215,0,0.08);
}
.lang-select option { background: #0F0F1A; color: var(--text); }

/* ── RESPONSIVE ── */
@media (max-width: 539px) {
  .btn     { font-size: 0.88rem; padding: 13px 22px; }
  .btn-lg  { padding: 14px 26px; font-size: 0.92rem; }
  section  { padding: 48px 0; }
}
