/* ============================================================
   GoldBet Casino — Global Stylesheet
   goldbetcasino.live | FR
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --gold:        #F0B429;
  --gold-dark:   #C8860A;
  --gold-grad:   linear-gradient(135deg, #F0B429 0%, #C8860A 100%);
  --gold-glow:   0 0 18px rgba(240,180,41,.35);
  --bg:          #0A0A0A;
  --bg2:         #111111;
  --card:        #1A1A1A;
  --card2:       #222222;
  --border:      #2E2E2E;
  --text:        #F0F0F0;
  --text-muted:  #9E9E9E;
  --green:       #22C55E;
  --red:         #EF4444;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow:      0 4px 24px rgba(0,0,0,.6);
  --trans:       .2s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.65;
  min-height: 100vh;
  padding-bottom: 70px; /* space for popup bar */
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--trans); }
a:hover { color: #fff; }
ul, ol { padding-left: 1.4em; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); color: #fff; margin-bottom: .75rem; }
h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); color: var(--gold); margin: 2.5rem 0 1rem; }
h3 { font-size: clamp(1.05rem, 2.5vw, 1.35rem); color: var(--gold); margin: 2rem 0 .75rem; }
h4 { font-size: 1rem; color: var(--text); margin: 1.25rem 0 .5rem; }

p { margin-bottom: 1rem; }
strong { color: var(--gold); font-weight: 600; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-nav a {
  display: block;
  padding: 6px 14px;
  color: var(--text-muted);
  font-size: .88rem;
  font-weight: 500;
  border-radius: 6px;
  transition: color var(--trans), background var(--trans);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
  background: rgba(240,180,41,.08);
}

/* Header CTA */
.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-grad);
  color: #0A0A0A !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  padding: 9px 20px;
  border-radius: 50px;
  white-space: nowrap;
  transition: opacity var(--trans), box-shadow var(--trans);
  box-shadow: var(--gold-glow);
  flex-shrink: 0;
}
.btn-header-cta:hover { opacity: .9; box-shadow: 0 0 28px rgba(240,180,41,.55); color: #0A0A0A !important; }

/* Mobile play button (header) */
.btn-play-mobile {
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--gold-grad);
  color: #0A0A0A;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  padding: 7px 16px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: var(--gold-glow);
  text-decoration: none;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 12px 20px 16px;
}
.mobile-nav ul { list-style: none; padding: 0; }
.mobile-nav ul li { padding: 4px 0; }
.mobile-nav ul a {
  display: block;
  padding: 8px 0;
  color: var(--text-muted);
  font-size: .95rem;
  border-bottom: 1px solid var(--border);
}
.mobile-nav ul a:hover { color: var(--gold); }
.mobile-nav .btn-nav-mobile {
  display: block;
  text-align: center;
  margin-top: 14px;
  background: var(--gold-grad);
  color: #0A0A0A;
  font-weight: 700;
  padding: 12px;
  border-radius: 8px;
}
.mobile-nav.open { display: block; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,.88) 0%,
    rgba(10,10,10,.65) 60%,
    rgba(10,10,10,.82) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,180,41,.12);
  border: 1px solid rgba(240,180,41,.35);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.6);
  margin-bottom: 8px;
}
.hero-title span {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,.8);
  margin-bottom: 28px;
  max-width: 560px;
}

.hero-bonus-card {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: rgba(240,180,41,.1);
  border: 1px solid rgba(240,180,41,.3);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  margin-bottom: 32px;
}
.hero-bonus-item { text-align: center; }
.hero-bonus-item .val {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-bonus-item .lbl {
  font-size: .72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.hero-bonus-sep {
  width: 1px;
  height: 40px;
  background: rgba(240,180,41,.2);
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border-radius: 50px;
  padding: 14px 30px;
  font-size: .95rem;
  cursor: pointer;
  transition: opacity var(--trans), box-shadow var(--trans), transform var(--trans);
  border: none;
  text-decoration: none;
}
.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--gold-grad);
  color: #0A0A0A;
  box-shadow: var(--gold-glow);
}
.btn-primary:hover { opacity: .9; box-shadow: 0 0 30px rgba(240,180,41,.5); color: #0A0A0A; }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover { background: rgba(240,180,41,.08); color: var(--gold); }

.btn-sm {
  padding: 8px 18px;
  font-size: .8rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust-section {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.trust-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  list-style: none;
  padding: 0;
}
.trust-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}
.trust-list li .icon {
  font-size: 1.1rem;
}
.trust-list li strong { color: var(--text); }

/* ============================================================
   SLOTS SECTION
   ============================================================ */
.slots-section {
  padding: 56px 0 48px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  color: #fff;
  margin: 0;
}
.section-title span { color: var(--gold); }

.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.slot-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
  position: relative;
}
.slot-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240,180,41,.4);
  box-shadow: 0 8px 32px rgba(240,180,41,.15);
}

.slot-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.slot-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.slot-card:hover .slot-card-img img { transform: scale(1.05); }

.slot-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--trans);
}
.slot-card:hover .slot-card-overlay { opacity: 1; }

.slot-card-body {
  padding: 12px 14px;
}
.slot-name {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.slot-provider {
  font-size: .7rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* ============================================================
   SEO CONTENT SECTION
   ============================================================ */
.content-section {
  padding: 56px 0 64px;
  border-top: 1px solid var(--border);
}

.content-body {
  max-width: 100%;
}

.content-body p { color: #ccc; margin-bottom: 1rem; }
.content-body ul, .content-body ol { margin-bottom: 1rem; }
.content-body li { color: #ccc; margin-bottom: .4rem; }
.content-body li::marker { color: var(--gold); }

.content-body h2 {
  margin-top: 2.8rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.content-body h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }

/* Blockquote / testimonial */
.content-body blockquote,
.testimonials {
  border-left: 3px solid var(--gold);
  background: var(--card);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}
.content-body blockquote p { color: var(--text); margin: 0; font-style: italic; }

/* Highlights / key-points */
.highlight-box {
  background: rgba(240,180,41,.06);
  border: 1px solid rgba(240,180,41,.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 1.5rem 0;
}
.highlight-box ul { margin: 0; padding-left: 1.2em; }
.highlight-box li { color: var(--text); }

/* Steps (ordered lists in inscriptions) */
.steps-list {
  list-style: none !important;
  padding-left: 0 !important;
  counter-reset: steps;
}
.steps-list > li {
  counter-increment: steps;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.steps-list > li:last-child { border-bottom: none; }
.steps-list > li::before {
  content: counter(steps);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  background: var(--gold-grad);
  color: #0A0A0A;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .85rem;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.content-table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  font-size: .9rem;
}
.content-table th {
  background: rgba(240,180,41,.1);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 12px 16px;
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid var(--border);
}
.content-table td {
  padding: 11px 16px;
  color: #ccc;
  border-bottom: 1px solid rgba(46,46,46,.5);
}
.content-table tr:last-child td { border-bottom: none; }
.content-table tr:hover td { background: rgba(255,255,255,.02); }
.content-table td:first-child { font-weight: 500; color: var(--text); }

/* FAQ accordion */
.faq-list { margin: 1rem 0; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--card);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .92rem;
  padding: 16px 20px;
  text-align: left;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background var(--trans);
}
.faq-question:hover { background: var(--card2); }
.faq-question .faq-icon {
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform var(--trans);
  flex-shrink: 0;
  font-style: normal;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 20px 16px;
  background: var(--card);
  color: #ccc;
  font-size: .9rem;
  line-height: 1.6;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-answer { display: block; padding-top: 14px; }

/* CTA banner inside content */
.content-cta-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 2.5rem 0;
  position: relative;
}
.content-cta-banner img {
  width: 100%;
  object-fit: cover;
  max-height: 260px;
}
.content-cta-banner .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,.85) 0%, rgba(10,10,10,.3) 100%);
  display: flex;
  align-items: center;
  padding: 0 36px;
}
.content-cta-banner .overlay-text h3 {
  color: #fff;
  margin: 0 0 12px;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}
.content-cta-banner .overlay-text p { color: rgba(255,255,255,.8); margin-bottom: 16px; font-size: .9rem; }

/* Bonus comparison card */
.bonus-highlight {
  background: var(--card);
  border: 1px solid rgba(240,180,41,.25);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 2rem 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.bonus-highlight .bonus-main {
  flex: 1 1 200px;
}
.bonus-highlight .amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.bonus-highlight .bonus-label { font-size: .85rem; color: var(--text-muted); margin-bottom: 14px; }
.bonus-highlight .bonus-list { list-style: none; padding: 0; margin: 0; }
.bonus-highlight .bonus-list li {
  font-size: .88rem;
  color: var(--text);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.bonus-highlight .bonus-list li:last-child { border-bottom: none; }
.bonus-highlight .bonus-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: .9rem;
}

/* Promo code box */
.promo-code-box {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px dashed var(--gold);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 1rem 0;
}
.promo-code-box .label { padding: 10px 14px; background: rgba(240,180,41,.08); color: var(--text-muted); font-size: .82rem; }
.promo-code-box .code { padding: 10px 18px; font-family: monospace; font-size: 1.1rem; font-weight: 700; color: var(--gold); letter-spacing: .08em; background: var(--card); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: #888; font-size: .85rem; }
.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-disclaimer {
  font-size: .72rem;
  color: #555;
  line-height: 1.6;
  max-width: 750px;
}
.footer-disclaimer strong { color: #777; }
.age-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #555;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .85rem;
  color: #777;
  flex-shrink: 0;
}

/* ============================================================
   FIXED POPUP BANNER
   ============================================================ */
.popup-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: linear-gradient(135deg, #1A1400 0%, #1A1A1A 100%);
  border-top: 2px solid var(--gold);
  box-shadow: 0 -4px 24px rgba(0,0,0,.6);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: transform .3s ease;
}
.popup-bar.hidden { transform: translateY(110%); }

.popup-bar-text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.popup-bar-icon { font-size: 1.6rem; flex-shrink: 0; }
.popup-bar-msg {
  font-size: .85rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.popup-bar-msg strong { color: var(--gold); font-size: .95rem; }
.popup-bar-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.popup-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color var(--trans);
  flex-shrink: 0;
}
.popup-close:hover { color: var(--text); }

/* ============================================================
   SECTION DIVIDERS / UTILS
   ============================================================ */
.section-sep {
  height: 1px;
  background: var(--border);
  margin: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.badge-gold { background: rgba(240,180,41,.15); color: var(--gold); border: 1px solid rgba(240,180,41,.3); }
.badge-green { background: rgba(34,197,94,.12); color: var(--green); border: 1px solid rgba(34,197,94,.25); }
.badge-red { background: rgba(239,68,68,.12); color: var(--red); border: 1px solid rgba(239,68,68,.25); }

/* Feature grid (why choose us) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 1.5rem 0;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: border-color var(--trans);
}
.feature-card:hover { border-color: rgba(240,180,41,.3); }
.feature-icon { font-size: 1.8rem; margin-bottom: 12px; }
.feature-card h4 { font-size: .92rem; margin-bottom: 6px; color: #fff; }
.feature-card p { font-size: .82rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 14px 0 0;
  font-size: .8rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 6px; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero .hero-bg::after {
  background: linear-gradient(
    135deg,
    rgba(10,10,10,.92) 0%,
    rgba(10,10,10,.7) 100%
  );
}
.page-hero .hero-content { padding: 48px 0; max-width: 620px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 900px) {
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-highlight { flex-direction: column; }
}

/* Mobile */
@media (max-width: 640px) {
  body { padding-bottom: 90px; }

  .main-nav { display: none; }
  .btn-header-cta { display: none; }
  .btn-play-mobile { display: flex; }
  .burger { display: flex; }

  /* Hero: compact vertical rhythm */
  .hero { min-height: 100svh; }
  .hero-content { padding: 28px 0 24px; }
  .hero-badge { margin-bottom: 12px; }
  .hero-title { margin-bottom: 6px; }
  .hero-subtitle { margin-bottom: 16px; font-size: .9rem; }

  /* Bonus card → 2×2 grid */
  .hero-bonus-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    padding: 0;
    margin-bottom: 20px;
    background: rgba(240,180,41,.2);  /* gold line between cells */
    border-radius: var(--radius);
    overflow: hidden;
  }
  .hero-bonus-item {
    padding: 12px 10px;
    text-align: center;
    background: rgba(10,10,10,.75);
  }
  .hero-bonus-item .val { font-size: 1.35rem; }
  .hero-bonus-item .lbl { font-size: .65rem; }
  /* Hide flex separators — grid handles spacing */
  .hero-bonus-sep { display: none; }

  /* CTA buttons: stacked full-width */
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn { width: 100%; justify-content: center; }

  .trust-list { gap: 10px 16px; justify-content: flex-start; }
  .slots-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; }

  .popup-bar-msg { font-size: .78rem; }
  .popup-bar-icon { font-size: 1.2rem; }

  /* CTA banner: hide image, show as plain card */
  .content-cta-banner img { display: none; }
  .content-cta-banner .overlay {
    position: static;
    background: linear-gradient(135deg, rgba(240,180,41,.1) 0%, rgba(10,10,10,.6) 100%);
    border: 1px solid rgba(240,180,41,.25);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .content-cta-banner .overlay-text { width: 100%; }
  .content-cta-banner .overlay-text h3 { font-size: 1.15rem; margin-bottom: 8px; }
  .content-cta-banner .overlay-text p { font-size: .85rem; margin-bottom: 14px; }
  .content-cta-banner .overlay-text .btn { width: 100%; justify-content: center; }

  h2 { margin-top: 2rem; }
  h3 { margin-top: 1.5rem; }
}

@media (max-width: 380px) {
  .slots-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .hero-title { font-size: 2.1rem; }
  .hero-bonus-item .val { font-size: 1.2rem; }
}
