/* ═══════════════════════════════════════════════════════════════
   REDDY BOOK CLUB — HOME PAGE STYLES (LIGHT THEME)
   File: reddybook-home.css
═══════════════════════════════════════════════════════════════ */

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
  /* Brand Colors */
  --rb-gold:        #d4860a;
  --rb-gold-light:  #f5a623;
  --rb-gold-dim:    rgba(212,134,10,.10);
  --rb-neon:        #0072cc;
  --rb-neon-dim:    rgba(0,114,204,.10);
  --rb-green:       #1a9e4a;
  --rb-red:         #d91f3a;

  /* Background Scale */
  --bg-base:        #f4f6fb;
  --bg-surface:     #ffffff;
  --bg-card:        #ffffff;
  --bg-card-hover:  #f8f9fd;
  --bg-highlight:   #fef9f0;

  /* Text */
  --text-primary:   #0f1923;
  --text-secondary: #3d4e63;
  --text-muted:     #7a8fa8;
  --text-inverse:   #ffffff;

  /* Borders */
  --border-subtle:  rgba(0,0,0,.07);
  --border-card:    rgba(0,0,0,.10);
  --border-gold:    rgba(212,134,10,.35);
  --border-neon:    rgba(0,114,204,.25);

  /* Gradients */
  --grad-gold:      linear-gradient(135deg,#f5a623 0%,#d4860a 100%);
  --grad-neon:      linear-gradient(135deg,#0099e6 0%,#0052cc 100%);
  --grad-hero:      linear-gradient(160deg,#0f1923 0%,#1a2e50 50%,#0f1923 100%);
  --grad-card:      linear-gradient(145deg,#ffffff 0%,#f8f9fd 100%);
  --grad-surface:   linear-gradient(180deg,#ffffff 0%,#f4f6fb 100%);

  /* Shadows */
  --shadow-card:    0 2px 16px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.05);
  --shadow-gold:    0 0 20px rgba(212,134,10,.22);
  --shadow-neon:    0 0 20px rgba(0,114,204,.18);
  --shadow-btn:     0 4px 14px rgba(0,0,0,.12);

  /* Spacing */
  --gap-xs:   6px;
  --gap-sm:   10px;
  --gap-md:   16px;
  --gap-lg:   24px;
  --gap-xl:   36px;
  --gap-2xl:  56px;

  /* Radii */
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-pill: 999px;

  /* Typography */
  --font-base:  'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-mono:  'JetBrains Mono', 'Fira Code', monospace;

  /* Transitions */
  --ease-out:    cubic-bezier(.22,1,.36,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --dur-fast:    160ms;
  --dur-base:    260ms;
  --dur-slow:    420ms;

  /* Layout */
  --max-w:      1200px;
  --section-py: clamp(48px, 6vw, 80px);
}

/* ═══════════════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════════════ */




img {
  display: block;
  max-width: 100%;
  height: auto;
}







p   { color: var(--text-secondary); line-height: 1.7; }
strong { color: var(--text-primary); font-weight: 600; }
em  { color: var(--rb-gold); font-style: normal; }

h1, h2, h3, h4, h5 {
  color: var(--text-primary);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(28px, 4.5vw, 52px); }
h2 { font-size: clamp(20px, 3vw,  32px); }
h3 { font-size: clamp(17px, 2.2vw, 22px); }

details summary { cursor: pointer; list-style: none; }
details summary::-webkit-details-marker { display: none; }

figure { margin: 0; }

/* ═══════════════════════════════════════════════════════════════
   WRAPPER
═══════════════════════════════════════════════════════════════ */
.rb-dashboard-home-embed { position: relative; }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════ */
.btn-cta,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
  transition:
    transform var(--dur-fast) var(--ease-spring),
    box-shadow var(--dur-base) var(--ease-out),
    background var(--dur-base) var(--ease-out),
    opacity var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}

.btn-cta   { padding: 13px 26px; }
.btn-ghost { padding: 11px 22px; }

/* Primary — Gold */
.btn-cta-primary {
  background: var(--grad-gold);
  color: #fff;
  box-shadow: var(--shadow-gold), var(--shadow-btn);
}
.btn-cta-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 28px rgba(212,134,10,.4), var(--shadow-btn);
  color: #fff;
}
.btn-cta-primary:active { transform: translateY(0) scale(.98); }

/* Neon / Blue */
.btn-cta-neon {
  background: var(--grad-neon);
  color: #fff;
  box-shadow: var(--shadow-neon), var(--shadow-btn);
}
.btn-cta-neon:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 28px rgba(0,114,204,.4), var(--shadow-btn);
  color: #fff;
}
.btn-cta-neon:active { transform: translateY(0) scale(.98); }

/* Secondary */
.btn-cta-secondary {
  background: #fff;
  color: var(--text-primary);
  border: 1.5px solid var(--border-card);
  box-shadow: var(--shadow-btn);
}
.btn-cta-secondary:hover {
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  color: var(--text-primary);
  border-color: var(--border-gold);
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--rb-gold);
  border: 1.5px solid var(--border-gold);
  font-weight: 600;
}
.btn-ghost:hover {
  background: var(--rb-gold-dim);
  transform: translateY(-2px);
  color: var(--rb-gold-light);
  border-color: var(--rb-gold-light);
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════════ */
.home-hero {
  position: relative;
  min-height: clamp(560px, 85vh, 780px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--gap-2xl) var(--gap-lg);
}

/* Background — keep dark for contrast / readability */
.home-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(13,31,60,.88) 0%, transparent 70%),
    url('https://res.cloudinary.com/dbkcmdx7g/image/upload/f_auto,q_auto/v1779560679/reddybook_assets/Homepage_-_What_is_ReddyBook__Complete_Guide_to_Betting_Login_Registration.webp')
    center / cover no-repeat;
  filter: brightness(.38) saturate(1.1);
  z-index: 0;
}

.home-hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 20% 50%, rgba(212,134,10,.14) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(0,114,204,.09) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.home-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding-top: var(--gap-xl);
}

/* Eyebrow */
.home-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #f5a623;
  margin-bottom: 16px;
}

/* Pulse dot */
.pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,.65);
  animation: pulse-ring 1.8s ease-out infinite;
}

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0  rgba(34,197,94,.65); }
  70%  { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0  rgba(34,197,94,0); }
}

/* Hero H1 — white on dark hero BG */
.home-hero__inner h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,.5);
}

.home-hero__inner h1 em {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

/* Lead */
.home-hero__lead {
  max-width: 640px;
  font-size: clamp(15px, 1.6vw, 17px);
  color: rgba(255,255,255,.78);
  margin-bottom: 24px;
  line-height: 1.75;
}

/* Chips */
.home-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.home-hero__chip {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color var(--dur-fast), background var(--dur-fast);
}

.home-hero__chip:hover {
  background: rgba(245,166,35,.2);
  border-color: rgba(245,166,35,.55);
}

.home-hero__chip i      { color: #f5a623; font-size: 14px; }
.home-hero__chip strong { color: #fff; }

/* Actions */
.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

/* ═══════════════════════════════════════════════════════════════
   WINNERS TICKER
═══════════════════════════════════════════════════════════════ */
.winners-ticker-wrap {
  background: linear-gradient(90deg,
    rgba(212,134,10,.07) 0%,
    rgba(0,114,204,.05) 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  overflow: hidden;
}

.winners-ticker-row {
  display: flex;
  align-items: center;
  height: 46px;
}

.winners-ticker-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rb-gold);
  background: rgba(212,134,10,.09);
  border-right: 1px solid var(--border-gold);
  height: 100%;
  white-space: nowrap;
}

.winners-ticker-label i { font-size: 13px; }

.winners-ticker-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.winners-ticker {
  display: flex;
  gap: 28px;
  animation: ticker-scroll 22s linear infinite;
  width: max-content;
  align-items: center;
  height: 46px;
}

.winners-ticker:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.win-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  white-space: nowrap;
  padding: 5px 14px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-pill);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.win-chip__amt  { color: var(--rb-green); font-weight: 700; font-size: 13px; }
.win-chip strong { color: var(--text-primary); }
.win-chip__game  { color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════════
   LANDING MAIN
═══════════════════════════════════════════════════════════════ */
.landing-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap-lg);
}

/* ═══════════════════════════════════════════════════════════════
   BENTO GRID SYSTEM
═══════════════════════════════════════════════════════════════ */
.home-bento-wrap { padding: var(--gap-2xl) 0; }

.home-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gap-md);
  align-items: start;
}

.bento-span-12 { grid-column: span 12; }
.bento-span-8  { grid-column: span 8; }
.bento-span-6  { grid-column: span 6; }
.bento-span-4  { grid-column: span 4; }

/* ─── Bento Card ─── */
.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition:
    border-color var(--dur-base) var(--ease-out),
    box-shadow   var(--dur-base) var(--ease-out),
    transform    var(--dur-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent, rgba(212,134,10,.5), transparent);
  opacity: 0;
  transition: opacity var(--dur-base);
}

.bento-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 6px 28px rgba(0,0,0,.10), 0 0 0 1px rgba(212,134,10,.12);
  transform: translateY(-2px);
}

.bento-card:hover::before { opacity: 1; }

/* Highlight variant */
.bento-highlight {
  background: var(--bg-highlight);
  border-color: var(--border-gold);
}

.bento-highlight::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle,
    rgba(212,134,10,.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Media card */
.bento-media {
  padding: 0;
  overflow: hidden;
}

.bento-figure {
  width: 100%;
  height: 100%;
  min-height: 280px;
}

.bento-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform var(--dur-slow) var(--ease-out);
}

.bento-media:hover .bento-figure img { transform: scale(1.03); }

/* Tag label */
.bento-card__tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--rb-gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rb-gold);
  margin-bottom: 12px;
}

.bento-card h2 { margin-bottom: 12px; }
.bento-card h3 { margin-bottom: 10px; }

.bento-card p.lead {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

/* ─── Bento Tiles ─── */
.bento-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: var(--gap-sm);
  margin-top: 18px;
}

.bento-tiles--3 { grid-template-columns: repeat(3, 1fr); }

.bento-tile {
  background: #f8f9fd;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition:
    background      var(--dur-fast),
    border-color    var(--dur-fast),
    box-shadow      var(--dur-fast),
    transform       var(--dur-fast) var(--ease-spring);
}

.bento-tile:hover {
  background: var(--bg-highlight);
  border-color: var(--border-gold);
  box-shadow: 0 4px 14px rgba(212,134,10,.10);
  transform: translateY(-3px);
}

.bento-tile i    { font-size: 22px; color: var(--rb-gold); }
.bento-tile span { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.bento-tile p    { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* ─── Bonus Grid ─── */
.bento-bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: var(--gap-sm);
  margin-top: 16px;
}

.bento-bonus {
  background: #fffbf3;
  border: 1px solid rgba(212,134,10,.25);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  text-align: center;
  transition:
    background  var(--dur-fast),
    box-shadow  var(--dur-fast),
    transform   var(--dur-fast) var(--ease-spring);
}

.bento-bonus:hover {
  background: #fff4dc;
  box-shadow: 0 4px 14px rgba(212,134,10,.14);
  transform: translateY(-3px);
}

.bento-bonus .val {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--rb-gold);
  line-height: 1;
  margin-bottom: 4px;
}

.bento-bonus .lbl {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.bento-bonus p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

/* ─── FAQ ─── */
.bento-faq { padding: 0; overflow: hidden; }

.landing-faq details {
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--dur-fast);
}

.landing-faq details:last-child { border-bottom: none; }

.landing-faq details[open] { background: #fffdf7; }

.landing-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-primary);
  gap: 12px;
  transition: color var(--dur-fast);
}

.landing-faq summary:hover { color: var(--rb-gold); }

.landing-faq summary::after {
  content: '+';
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--rb-gold-dim);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  color: var(--rb-gold);
  transition:
    transform  var(--dur-base) var(--ease-spring),
    background var(--dur-fast);
}

details[open] > summary::after {
  content: '−';
  background: rgba(212,134,10,.18);
  transform: rotate(180deg);
}

.faq-body { padding: 0 24px 18px; }

.faq-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   HOME STRIP
═══════════════════════════════════════════════════════════════ */
.home-strip {
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-top: var(--gap-md);
}

.home-strip--live {
  background: linear-gradient(135deg,
    rgba(0,114,204,.05) 0%,
    rgba(0,52,128,.04) 100%);
  border: 1px solid var(--border-neon);
  position: relative;
  overflow: hidden;
}

.home-strip--live::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle,
    rgba(0,114,204,.07) 0%, transparent 70%);
  pointer-events: none;
}

.home-strip__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rb-neon);
  margin-bottom: 6px;
}

.home-strip h3   { color: var(--text-primary); margin-bottom: 8px; }
.home-strip p    { font-size: 14px; color: var(--text-secondary); max-width: 680px; margin: 0; }

/* ═══════════════════════════════════════════════════════════════
   INTRO GRID
═══════════════════════════════════════════════════════════════ */
.home-intro-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--gap-xl);
  align-items: center;
}

.home-intro-grid__text h2 { margin-bottom: 12px; }

.home-intro-grid__figure img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.home-intro-grid__figure img:hover { transform: scale(1.03) rotate(1deg); }

/* ═══════════════════════════════════════════════════════════════
   OPERATES GRID
═══════════════════════════════════════════════════════════════ */
.home-operates-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--gap-xl);
  align-items: center;
}

.home-operates-grid__figure img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.home-operates-grid__figure img:hover { transform: scale(1.03); }

/* ═══════════════════════════════════════════════════════════════
   HOME SECTION BASE
═══════════════════════════════════════════════════════════════ */
.home-section {
  padding: var(--section-py) 0;
  border-top: 1px solid var(--border-subtle);
}

.home-section__inner { max-width: 100%; }

.home-section__tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--rb-gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rb-gold);
  margin-bottom: 12px;
}

.home-section h2 { margin-bottom: 14px; }

/* ═══════════════════════════════════════════════════════════════
   LOGIN SECTION
═══════════════════════════════════════════════════════════════ */
.home-section--login {
  background: linear-gradient(180deg, rgba(212,134,10,.04) 0%, transparent 100%);
}

.home-login-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--gap-xl);
  align-items: start;
  margin-top: 8px;
}

.home-login-grid__figure img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  object-fit: cover;
}

.home-login-grid__figure figcaption {
  margin-top: 8px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

/* Login Steps */
.home-login-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.home-login-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: #f8f9fd;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  transition: border-color var(--dur-fast), background var(--dur-fast), box-shadow var(--dur-fast);
}

.home-login-step:hover {
  background: var(--bg-highlight);
  border-color: var(--border-gold);
  box-shadow: 0 3px 12px rgba(212,134,10,.08);
}

.home-login-step__n {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(212,134,10,.3);
}

.home-login-step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Login Tips Block */
.home-login-tips-block {
  margin-top: 28px;
  background: #fff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.home-login-tips-block__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-subtle);
  background: #fffdf7;
}

.home-login-tips-block__icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--rb-gold-dim);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-login-tips-block__icon i {
  font-size: 18px;
  color: var(--rb-gold);
}

.home-login-tips-block__head h3 { color: var(--text-primary); }

.home-login-tips-block__body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--gap-lg);
  align-items: center;
  padding: 20px 24px;
}

.home-login-tips-block__figure img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  object-fit: cover;
}

.home-login-tips {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-login-tips li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0; margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.home-login-tips li::before { display: none; }

.home-login-tips li i {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 16px;
  color: var(--rb-gold);
}

/* ═══════════════════════════════════════════════════════════════
   REGISTRATION SECTION
═══════════════════════════════════════════════════════════════ */
.home-section--register {
  background: linear-gradient(180deg,
    transparent 0%, rgba(212,134,10,.03) 100%);
}

.home-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
  position: relative;
}

.home-timeline::before {
  content: '';
  position: absolute;
  left: 19px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--rb-gold) 0%, transparent 100%);
  opacity: .25;
}

.home-timeline__step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 16px 0;
  position: relative;
  transition: background var(--dur-fast);
}

.home-timeline__num {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(212,134,10,.10);
  border: 2px solid var(--border-gold);
  color: var(--rb-gold);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative; z-index: 1;
  transition:
    background  var(--dur-fast),
    box-shadow  var(--dur-fast),
    color       var(--dur-fast);
}

.home-timeline__step:hover .home-timeline__num {
  background: var(--grad-gold);
  box-shadow: var(--shadow-gold);
  color: #fff;
}

.home-timeline__step p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 8px 0 0;
}

/* ═══════════════════════════════════════════════════════════════
   BETTING ID SECTION
═══════════════════════════════════════════════════════════════ */
.home-section--betting-id {
  background: linear-gradient(180deg,
    rgba(212,134,10,.03) 0%, transparent 100%);
}

.home-id-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--gap-xl);
  align-items: start;
  margin-top: 8px;
}

.home-id-gallery img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.home-id-gallery img:hover { transform: scale(1.03); }
.home-id-content h2 { margin-bottom: 12px; }
.home-id-content ul li { font-size: 14px; margin-bottom: 10px; }

.home-id-alert {
  margin-top: 16px;
  padding: 14px 18px;
  background: #fff5f6;
  border: 1px solid rgba(217,31,58,.2);
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.home-id-alert strong { color: #d91f3a; }

/* ═══════════════════════════════════════════════════════════════
   SPORTS SECTION
═══════════════════════════════════════════════════════════════ */
.home-section--sports {
  background: linear-gradient(180deg,
    transparent 0%, rgba(212,134,10,.03) 50%, transparent 100%);
}

.home-sports-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--gap-xl);
  align-items: start;
  margin-top: 8px;
}

.home-sports-hero { position: relative; flex-shrink: 0; }

.home-sports-hero img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  object-fit: cover;
}

.home-sports-hero__badge {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--rb-gold);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}

.home-sports-hero__badge i { font-size: 13px; }

.home-sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--gap-sm);
  margin: 16px 0;
}

.home-sport-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
  background: #f8f9fd;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  transition:
    background      var(--dur-fast),
    border-color    var(--dur-fast),
    box-shadow      var(--dur-fast),
    transform       var(--dur-fast) var(--ease-spring);
}

.home-sport-card:hover {
  background: var(--bg-highlight);
  border-color: var(--border-gold);
  box-shadow: 0 4px 14px rgba(212,134,10,.10);
  transform: translateY(-3px);
}

.home-sport-card i        { font-size: 22px; color: var(--rb-gold); }
.home-sport-card strong   { font-size: 14px; color: var(--text-primary); display: block; }
.home-sport-card p        { font-size: 12px; color: var(--text-muted); line-height: 1.45; margin: 0; }

.home-markets-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-md);
  margin-top: 16px;
}

.home-markets-col {
  background: #f8f9fd;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 16px;
}

.home-markets-col h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.home-markets-col h3 i   { color: var(--rb-gold); }
.home-markets-col ul li  { font-size: 13px; }

/* ═══════════════════════════════════════════════════════════════
   PAYMENTS SECTION
═══════════════════════════════════════════════════════════════ */
.home-section--payments {
  background: linear-gradient(180deg,
    rgba(212,134,10,.03) 0%, transparent 100%);
}

.home-pay-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-xl);
  margin-top: 8px;
}

.home-pay-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.home-pay-method {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: #f8f9fd;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  transition:
    border-color  var(--dur-fast),
    background    var(--dur-fast),
    box-shadow    var(--dur-fast);
}

.home-pay-method:hover {
  background: var(--bg-highlight);
  border-color: var(--border-gold);
  box-shadow: 0 3px 12px rgba(212,134,10,.08);
}

.home-pay-method i {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--rb-gold-dim);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--rb-gold);
}

.home-pay-method div    { display: flex; flex-direction: column; gap: 3px; }
.home-pay-method strong { font-size: 14px; color: var(--text-primary); }
.home-pay-method span   { font-size: 12.5px; color: var(--text-muted); line-height: 1.45; }

.home-deposit-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.home-deposit-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  background: #f8f9fd;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  transition:
    border-color  var(--dur-fast),
    background    var(--dur-fast),
    box-shadow    var(--dur-fast);
}

.home-deposit-step:hover {
  background: rgba(0,114,204,.04);
  border-color: var(--border-neon);
  box-shadow: 0 3px 10px rgba(0,114,204,.07);
}

.home-deposit-step__n {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(0,114,204,.1);
  border: 1px solid var(--border-neon);
  color: var(--rb-neon);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-deposit-step p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   WITHDRAWAL CARD
═══════════════════════════════════════════════════════════════ */
.withdrawal-card--wide {
  border-color: var(--border-neon);
  background: linear-gradient(145deg, #f0f6ff 0%, #eaf3fc 100%);
}

.home-withdrawal-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--gap-xl);
  align-items: center;
}

.home-withdrawal-grid__figure img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  object-fit: cover;
}

.withdrawal-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-sm);
  margin-top: 14px;
}

.withdrawal-step {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  transition:
    border-color  var(--dur-fast),
    background    var(--dur-fast),
    box-shadow    var(--dur-fast);
}

.withdrawal-step:hover {
  background: rgba(0,114,204,.04);
  border-color: var(--border-neon);
  box-shadow: 0 3px 10px rgba(0,114,204,.07);
}

.withdrawal-step__n {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(0,114,204,.10);
  border: 1px solid var(--border-neon);
  color: var(--rb-neon);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.withdrawal-step p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   CONCLUSION CARD
═══════════════════════════════════════════════════════════════ */
.home-conclusion-card {
  background: var(--bg-highlight);
  border-color: var(--border-gold);
}

.home-conclusion-card__layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--gap-xl);
  align-items: start;
}

.home-conclusion-card__cta {
  min-width: 220px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.home-conclusion-card__cta h3  { font-size: 17px; color: var(--text-primary); }
.home-conclusion-card__cta p   { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

.home-conclusion-card__cta .btn-cta,
.home-conclusion-card__cta .btn-ghost {
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════════════════════ */
.landing-cta-band {
  background: linear-gradient(135deg,
    #fffbf3 0%, #fff9ee 100%);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: clamp(36px, 5vw, 64px) clamp(24px, 4vw, 56px);
  text-align: center;
  margin: var(--gap-2xl) 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(212,134,10,.10);
}

.landing-cta-band::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 200px;
  background: radial-gradient(ellipse,
    rgba(212,134,10,.08) 0%, transparent 70%);
  pointer-events: none;
}

.landing-cta-band h2 {
  margin-bottom: 12px;
  font-size: clamp(22px, 3vw, 36px);
}

.landing-cta-band p {
  max-width: 560px;
  margin: 0 auto 24px;
  color: var(--text-secondary);
  font-size: 15px;
}

.landing-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.landing-footer {
  position: relative;
  background: #0f1923;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: clamp(48px, 6vw, 72px) 0 28px;
  margin-top: var(--gap-2xl);
  overflow: hidden;
}

.landing-footer__glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 200px;
  background: radial-gradient(ellipse,
    rgba(212,134,10,.07) 0%, transparent 70%);
  pointer-events: none;
}

.landing-footer .container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap-lg);
}

.landing-footer__main {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--gap-2xl);
  margin-bottom: 40px;
}

.landing-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.landing-footer__logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.landing-footer__tagline {
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  max-width: 360px;
}

.landing-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.landing-footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-pill);
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
}

.landing-footer__badge i { color: #f5a623; font-size: 12px; }

.landing-footer__badge--accent {
  background: rgba(212,134,10,.15);
  border-color: rgba(212,134,10,.4);
  color: #f5a623;
  font-weight: 800;
}

.landing-footer__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.landing-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-lg);
}

.landing-footer__heading {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #f5a623;
  margin-bottom: 14px;
}

.landing-footer__heading i { font-size: 13px; }

.landing-footer__col ul     { list-style: none; padding: 0; }
.landing-footer__col ul li  { margin-bottom: 8px; padding: 0; }
.landing-footer__col ul li::before { display: none; }

.landing-footer__col ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,.45);
  transition: color var(--dur-fast), padding-left var(--dur-fast);
  display: inline-block;
}

.landing-footer__col ul li a:hover {
  color: #f5a623;
  padding-left: 5px;
}

.landing-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.landing-footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  margin: 0;
}

.landing-footer__legal-nav { display: flex; gap: 20px; }

.landing-footer__legal-nav a {
  font-size: 12.5px;
  color: rgba(255,255,255,.38);
  transition: color var(--dur-fast);
}

.landing-footer__legal-nav a:hover { color: #f5a623; }

.landing-footer__disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   SCROLLBAR
═══════════════════════════════════════════════════════════════ */
::-webkit-scrollbar        { width: 6px; height: 6px; }
::-webkit-scrollbar-track  { background: var(--bg-base); }
::-webkit-scrollbar-thumb  { background: rgba(212,134,10,.35); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(212,134,10,.6); }

/* ═══════════════════════════════════════════════════════════════
   SELECTION
═══════════════════════════════════════════════════════════════ */
::selection {
  background: rgba(212,134,10,.18);
  color: var(--text-primary);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .bento-span-8,
  .bento-span-4,
  .bento-span-6 { grid-column: span 12; }

  .home-intro-grid,
  .home-operates-grid,
  .home-id-grid,
  .home-sports-layout,
  .home-login-grid,
  .home-withdrawal-grid,
  .home-conclusion-card__layout { grid-template-columns: 1fr; }

  .home-intro-grid__figure,
  .home-operates-grid__figure,
  .home-id-gallery,
  .home-sports-hero,
  .home-login-grid__figure,
  .home-withdrawal-grid__figure {
    display: flex;
    justify-content: center;
    order: -1;
  }

  .home-login-tips-block__body { grid-template-columns: 1fr; }
  .home-pay-layout   { grid-template-columns: 1fr; }
  .home-markets-row  { grid-template-columns: 1fr; }
  .bento-tiles--3    { grid-template-columns: 1fr 1fr; }

  .landing-footer__main { grid-template-columns: 1fr; }
  .landing-footer__nav  { grid-template-columns: repeat(3, 1fr); }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --gap-2xl:    36px;
    --section-py: 40px;
  }

  .landing-main { padding: 0 var(--gap-md); }

  .home-hero {
    min-height: auto;
    padding: 60px var(--gap-md) var(--gap-xl);
  }

  .home-hero__chips { gap: 7px; }

  .home-hero__chip {
    font-size: 12px;
    padding: 6px 11px;
  }

  .home-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-hero__actions .btn-cta,
  .home-hero__actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .home-bento              { grid-template-columns: 1fr; }
  .bento-span-12,
  .bento-span-8,
  .bento-span-6,
  .bento-span-4            { grid-column: span 1; }

  .bento-card              { padding: 20px; }
  .bento-tiles             { grid-template-columns: 1fr; }
  .bento-tiles--3          { grid-template-columns: 1fr; }
  .bento-bonus-grid        { grid-template-columns: 1fr 1fr; }

  .home-timeline::before   { display: none; }

  .withdrawal-steps        { grid-template-columns: 1fr; }

  .home-conclusion-card__layout { grid-template-columns: 1fr; }
  .home-conclusion-card__cta    { min-width: auto; }

  .home-sports-grid        { grid-template-columns: 1fr 1fr; }

  .landing-footer__nav     { grid-template-columns: 1fr 1fr; }

  .landing-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .landing-footer__legal-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }

  .home-strip              { padding: 20px; }
  .winners-ticker-label    { display: none; }

  .landing-faq summary {
    padding: 14px 16px;
    font-size: 13.5px;
  }

  .faq-body { padding: 0 16px 14px; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .bento-bonus-grid        { grid-template-columns: 1fr; }
  .home-sports-grid        { grid-template-columns: 1fr; }
  .landing-footer__nav     { grid-template-columns: 1fr; }
  .landing-cta-band        { border-radius: var(--radius-lg); }

  .landing-hero-cta        { flex-direction: column; }

  .landing-hero-cta .btn-cta {
    width: 100%;
    justify-content: center;
  }

  .home-login-tips-block__body { padding: 14px 16px; }
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════════ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bento-card,
.home-section,
.home-timeline__step,
.home-sport-card,
.bento-tile {
  animation: fade-up .5s var(--ease-out) both;
}

.bento-tile:nth-child(1)        { animation-delay: .05s; }
.bento-tile:nth-child(2)        { animation-delay: .10s; }
.bento-tile:nth-child(3)        { animation-delay: .15s; }
.bento-tile:nth-child(4)        { animation-delay: .20s; }
.bento-tile:nth-child(5)        { animation-delay: .25s; }
.bento-tile:nth-child(6)        { animation-delay: .30s; }

.home-timeline__step:nth-child(1) { animation-delay: .05s; }
.home-timeline__step:nth-child(2) { animation-delay: .12s; }
.home-timeline__step:nth-child(3) { animation-delay: .19s; }
.home-timeline__step:nth-child(4) { animation-delay: .26s; }
.home-timeline__step:nth-child(5) { animation-delay: .33s; }

