/* ============================================================
   style.css — Yep Casino Polska (yepkasyno-bonus.pl)
   Author: yepkasyno-bonus.pl | Language: PL | Geo: Poland
   ============================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   Central place to manage the entire site's colour palette,
   typography scale, spacing, shadows, and transition timing.
============================================================ */
:root {
  /* --- Colours --- */
  --c-bg:           #07091a;   /* Page background: very dark navy */
  --c-bg-2:         #0d1025;   /* Card / section background */
  --c-bg-3:         #111630;   /* Elevated surfaces */
  --c-border:       #1c2347;   /* Subtle border colour */
  --c-border-glow:  rgba(245,166,35,.25);

  --c-gold:         #f5a623;   /* Primary brand gold */
  --c-gold-light:   #ffc04a;   /* Hover gold */
  --c-gold-dark:    #c97f0a;   /* Active / pressed gold */
  --c-gold-glow:    rgba(245,166,35,.30);

  --c-red:          #e63946;   /* CTA red */
  --c-red-light:    #ff4d5c;
  --c-red-glow:     rgba(230,57,70,.35);

  --c-text:         #dde2f0;   /* Body text */
  --c-text-muted:   #7a839e;   /* Secondary / helper text */
  --c-white:        #ffffff;

  /* --- Typography --- */
  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Inter', sans-serif;

  /* --- Spacing --- */
  --gap-xs: 8px;
  --gap-sm: 16px;
  --gap-md: 24px;
  --gap-lg: 40px;
  --gap-xl: 64px;

  /* --- Layout --- */
  --max-w:        1180px;
  --header-h:     68px;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-pill:  999px;

  /* --- Shadows --- */
  --shadow-card:  0 8px 40px rgba(0,0,0,.45);
  --shadow-gold:  0 0 28px rgba(245,166,35,.22);

  /* --- Transitions --- */
  --ease: 0.28s ease;
}

/* ============================================================
   CSS RESET — normalise browser defaults
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--c-gold); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--c-gold-light); }
ul, ol { padding-left: 1.4rem; }
li { margin-bottom: 6px; }
strong { color: var(--c-white); font-weight: 600; }

/* ============================================================
   TYPOGRAPHY SCALE
   Heading sizes use clamp() for fluid scaling between
   a minimum size (mobile) and maximum size (desktop).
============================================================ */
h1 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--c-white);
}
h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--c-white);
  margin-bottom: var(--gap-sm);
  padding-bottom: 14px;
  position: relative;
}
/* Gold gradient underline decoration on every H2 */
h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 54px; height: 3px;
  background: linear-gradient(90deg, var(--c-gold), transparent);
  border-radius: 2px;
}
h3 {
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--c-gold);
  margin-bottom: 12px;
}
p { margin-bottom: 1rem; }

/* ============================================================
   LAYOUT UTILITIES
============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}
/* Standard section padding — tighter on mobile */
.section      { padding: 64px 0; }
.section--alt { background: var(--c-bg-2); }

/* Two-column text grid used in the intro and payments sections */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: start;
}

/* ============================================================
   BUTTONS
   Three semantic variants: primary (gold), cta (red), ghost (outline)
   All use flex so icon+text align nicely.
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ease);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
/* Gold primary button */
.btn--gold {
  background: linear-gradient(135deg, #f5a623, #e08a0a);
  color: #07091a;
  box-shadow: 0 4px 22px var(--c-gold-glow);
}
.btn--gold:hover {
  background: linear-gradient(135deg, #ffc04a, #f5a623);
  box-shadow: 0 6px 30px rgba(245,166,35,.5);
  transform: translateY(-2px);
  color: #07091a;
}
/* Red CTA button — highest visual priority */
.btn--red {
  background: linear-gradient(135deg, #e63946, #b5111c);
  color: var(--c-white);
  box-shadow: 0 4px 22px var(--c-red-glow);
}
.btn--red:hover {
  background: linear-gradient(135deg, #ff4d5c, #e63946);
  box-shadow: 0 6px 30px rgba(230,57,70,.55);
  transform: translateY(-2px);
  color: var(--c-white);
}
/* Ghost / outline button */
.btn--ghost {
  background: transparent;
  color: var(--c-gold);
  border-color: var(--c-gold);
}
.btn--ghost:hover {
  background: var(--c-gold);
  color: #07091a;
  transform: translateY(-2px);
}
/* Size modifiers */
.btn--lg  { padding: 17px 44px; font-size: .95rem; }
.btn--sm  { padding: 9px 20px; font-size: .8rem; }
.btn--full { width: 100%; }

/* ============================================================
   STICKY HEADER
   Uses backdrop-filter for the frosted-glass look.
   position: sticky pins it to the top of the viewport on
   both mobile and desktop without JavaScript.
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(7,9,26,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-border-glow);
  box-shadow: 0 2px 24px rgba(0,0,0,.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--gap-sm);
}
/* Logo */
.header-logo img { height: 38px; width: auto; }

/* Desktop nav links */
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.header-nav a {
  color: var(--c-text-muted);
  font-size: .85rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--ease);
  letter-spacing: .3px;
}
.header-nav a:hover,
.header-nav a.active { color: var(--c-gold); background: rgba(245,166,35,.08); }

/* Mobile hamburger — hidden on desktop */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--c-gold);
  border-radius: 2px;
  transition: all var(--ease);
}
/* Hamburger → X animation when open */
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer — slides down below the header */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0; bottom: 0;
  background: rgba(7,9,26,.97);
  z-index: 800;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--gap-md);
  padding: 40px 20px;
  overflow-y: auto;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-text);
  padding: 14px 28px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 300px;
  text-align: center;
  transition: all var(--ease);
}
.mobile-nav a:hover { color: var(--c-gold); border-color: var(--c-gold); background: rgba(245,166,35,.07); }

/* ============================================================
   HERO BANNER
   Uses <picture> to swap between desktop and mobile banner images.
   The CTA overlay is absolutely centred over the banner with
   a semi-transparent dark background + frosted glass effect.
============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--c-bg);
  /* Ensure banner is never taller than viewport */
  max-height: 90vh;
}
.hero-img {
  width: 100%;
  /* object-fit maintains aspect ratio while filling container */
  object-fit: cover;
  object-position: center top;
  display: block;
  min-height: 360px;
  max-height: 90vh;
}

/* Semi-transparent CTA overlay, centred on the banner */
.hero-overlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  /* Semi-transparent dark glass block */
  background: rgba(7, 9, 26, 0.76);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(245,166,35,.35);
  border-radius: var(--radius-lg);
  padding: 36px 44px;
  text-align: center;
  width: 92%;
  max-width: 620px;
  box-shadow: 0 10px 60px rgba(0,0,0,.7), 0 0 50px rgba(245,166,35,.08);
}
.hero-badge {
  display: inline-block;
  background: var(--c-gold);
  color: #07091a;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.hero-title {
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  font-weight: 900;
  color: var(--c-white);
  margin-bottom: 6px;
}
.hero-amount {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--c-gold);
  text-shadow: 0 0 40px rgba(245,166,35,.55);
  margin-bottom: 10px;
  line-height: 1.1;
}
.hero-sub {
  font-size: .9rem;
  color: #aab2cc;
  margin-bottom: 26px;
}
/* Button group inside the overlay */
.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   BREADCRUMBS
   Accessible <nav> with schema.org BreadcrumbList markup.
   Chevron separators via CSS pseudo-elements.
============================================================ */
.breadcrumbs {
  background: var(--c-bg-2);
  border-bottom: 1px solid var(--c-border);
  padding: 12px 0;
  font-size: .82rem;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  padding: 0; margin: 0;
  gap: 0;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
  margin: 0; gap: 0;
}
/* Chevron separator — CSS-generated, not in the HTML */
.breadcrumbs li:not(:last-child)::after {
  content: '›';
  margin: 0 8px;
  color: var(--c-border);
  font-size: 1rem;
}
.breadcrumbs a { color: var(--c-text-muted); }
.breadcrumbs a:hover { color: var(--c-gold); }
.breadcrumbs li[aria-current="page"] { color: var(--c-gold); font-weight: 600; }

/* ============================================================
   SECTION INTRO HEADER
   Reusable block above each section: tag label + H2 + optional lead
============================================================ */
.sec-head { margin-bottom: 36px; }
.sec-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--c-gold);
  background: rgba(245,166,35,.1);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}

/* ============================================================
   INFO TABLE (Overview table in the intro section)
   On mobile the thead is hidden and each cell shows
   a data-label pseudo-element so it reads as a list.
============================================================ */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-card);
}
.tbl {
  width: 100%;
  border-collapse: collapse;
  min-width: 280px;
  font-size: .9rem;
}
.tbl thead th {
  background: rgba(245,166,35,.1);
  color: var(--c-gold);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .75rem;
  letter-spacing: .5px;
  padding: 14px 18px;
  text-align: left;
  border-bottom: 2px solid rgba(245,166,35,.2);
}
.tbl tbody tr { background: var(--c-bg-2); border-bottom: 1px solid var(--c-border); transition: background var(--ease); }
.tbl tbody tr:last-child { border-bottom: none; }
.tbl tbody tr:hover { background: rgba(245,166,35,.04); }
.tbl tbody td {
  padding: 13px 18px;
  vertical-align: top;
}
.tbl tbody td:first-child { color: var(--c-text-muted); font-weight: 500; width: 42%; }
.tbl tbody td:last-child  { color: var(--c-white); font-weight: 500; }

/* ============================================================
   BONUS TABLE (Multi-column deposit bonus table)
============================================================ */
.bonus-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  margin: 24px 0;
}
.btbl { width: 100%; border-collapse: collapse; min-width: 540px; font-size: .875rem; }
.btbl thead th {
  background: linear-gradient(135deg, rgba(245,166,35,.18), rgba(245,166,35,.04));
  color: var(--c-gold);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .75rem;
  letter-spacing: .5px;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 2px solid rgba(245,166,35,.25);
  white-space: nowrap;
}
.btbl tbody tr { background: var(--c-bg-2); border-bottom: 1px solid var(--c-border); transition: background var(--ease); }
.btbl tbody tr:last-child { border-bottom: none; }
.btbl tbody tr:hover { background: rgba(245,166,35,.04); }
.btbl tbody td { padding: 13px 16px; color: var(--c-text); }
/* Highlight first (best) deposit row */
.btbl tbody tr:first-child td { color: var(--c-white); font-weight: 600; }

/* Scroll hint — visible only on mobile */
.scroll-hint {
  display: none;
  font-size: .76rem;
  color: var(--c-text-muted);
  text-align: right;
  margin-bottom: 5px;
}

/* ============================================================
   BONUS CARDS GRID
   Auto-fill grid so cards reflow neatly on any screen width.
============================================================ */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--gap-md);
  margin: 32px 0;
}
.bcard {
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}
/* Accent gradient stripe across the top of each card */
.bcard::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-red));
}
.bcard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
  border-color: var(--c-border-glow);
}
.bcard__icon  { font-size: 1.9rem; margin-bottom: 12px; display: block; }
.bcard__amount {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--c-gold);
  display: block;
  margin-bottom: 5px;
  text-shadow: 0 0 24px rgba(245,166,35,.3);
}
.bcard__title { font-weight: 700; color: var(--c-white); font-size: 1rem; margin-bottom: 8px; }
.bcard__desc  { font-size: .85rem; color: var(--c-text-muted); margin-bottom: 20px; }

/* ============================================================
   PROMO CODE BLOCK
   Visually distinct call-out with copyable code display
============================================================ */
.promo-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--gap-md);
  background: linear-gradient(135deg, rgba(245,166,35,.12), rgba(245,166,35,.03));
  border: 1px solid rgba(245,166,35,.35);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 24px 0;
}
/* Monospace display of the promo code itself */
.promo-block__code {
  font-family: 'Courier New', monospace;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--c-gold);
  letter-spacing: 5px;
}
.promo-block__info h4 { color: var(--c-white); margin-bottom: 4px; font-size: 1rem; }
.promo-block__info p  { font-size: .85rem; color: var(--c-text-muted); margin: 0; }

/* ============================================================
   STEPS LIST (Registration steps)
============================================================ */
.steps { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  transition: all var(--ease);
}
.step:hover { border-color: var(--c-border-glow); }
/* Circular numbered badge */
.step__num {
  min-width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: .95rem; font-weight: 800;
  color: #07091a;
  flex-shrink: 0;
}
.step strong { display: block; margin-bottom: 3px; color: var(--c-white); }
.step p { font-size: .875rem; color: var(--c-text-muted); margin: 0; }

/* ============================================================
   GAMES GRID
   Slot thumbnails in a responsive auto-fill grid.
   Hover reveals a play-button overlay.
============================================================ */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
  margin: 28px 0;
}
.game-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--c-border);
  background: var(--c-bg-2);
  transition: all var(--ease);
  cursor: pointer;
}
.game-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 32px rgba(0,0,0,.6);
  border-color: var(--c-gold);
  z-index: 1;
}
.game-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.game-card:hover img { transform: scale(1.08); }
/* Semi-transparent play overlay appears on hover */
.game-card__ov {
  position: absolute; inset: 0;
  background: rgba(7,9,26,.68);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--ease);
}
.game-card:hover .game-card__ov { opacity: 1; }
/* Circular gold play button */
.play-btn {
  width: 48px; height: 48px;
  background: var(--c-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 24px rgba(245,166,35,.5);
}
.play-btn svg { width: 18px; height: 18px; fill: #07091a; margin-left: 3px; }

/* ============================================================
   VIP LEVELS LIST
============================================================ */
.vip-list { display: flex; flex-direction: column; gap: 10px; margin: 24px 0; }
.vip-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  transition: all var(--ease);
}
.vip-row:hover { border-color: var(--c-border-glow); background: rgba(245,166,35,.03); }
.vip-row__icon { font-size: 1.7rem; min-width: 40px; text-align: center; flex-shrink: 0; }
.vip-row__name { font-weight: 700; color: var(--c-gold); font-size: .95rem; }
.vip-row__range { font-size: .78rem; color: var(--c-text-muted); }
/* Benefit pushed to the right on desktop, drops below on mobile */
.vip-row__benefit { font-size: .875rem; color: var(--c-text); margin-left: auto; text-align: right; }

/* ============================================================
   PAYMENT GRID
============================================================ */
.pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
  margin: 24px 0;
}
.pay-item {
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  text-align: center;
  transition: all var(--ease);
}
.pay-item:hover { border-color: var(--c-border-glow); }
.pay-item .icon { font-size: 1.5rem; margin-bottom: 6px; display: block; }
.pay-item .name { font-size: .78rem; color: var(--c-text-muted); font-weight: 600; }

/* ============================================================
   FAQ ACCORDION
   Pure CSS fallback + JS enhancement for toggle behaviour.
   Uses aria-expanded for screen readers.
============================================================ */
.faq-list  { display: flex; flex-direction: column; gap: 10px; margin: 28px 0; }
.faq-item  {
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--ease);
}
/* Gold border highlight when an item is open */
.faq-item.is-open { border-color: rgba(245,166,35,.3); }
.faq-q {
  width: 100%; display: flex;
  align-items: center; justify-content: space-between;
  gap: 16px; padding: 19px 22px;
  background: none; border: none; cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: .97rem; font-weight: 600;
  color: var(--c-white);
  transition: color var(--ease);
}
.faq-q:hover { color: var(--c-gold); }
/* Circular +/× toggle icon */
.faq-icon {
  min-width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(245,166,35,.1);
  border: 1px solid rgba(245,166,35,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--c-gold);
  line-height: 1;
  transition: all var(--ease);
  flex-shrink: 0;
}
/* Rotate + to × when open */
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--c-gold);
  color: #07091a;
}
.faq-a {
  display: none;
  padding: 0 22px 20px;
  font-size: .92rem;
  color: var(--c-text-muted);
  line-height: 1.75;
}
/* Answer is shown only when parent has .is-open class (toggled by JS) */
.faq-item.is-open .faq-a { display: block; }

/* ============================================================
   CTA BANNER SECTION
   Deep purple-to-navy gradient with radial gold glow effect.
============================================================ */
.cta-section {
  background: linear-gradient(140deg, #0d1025 0%, #1a0a38 50%, #0d1025 100%);
  border-top: 1px solid rgba(245,166,35,.15);
  border-bottom: 1px solid rgba(245,166,35,.15);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Radial glow behind heading */
.cta-section::before {
  content: '';
  position: absolute; top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,166,35,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { text-align: center; }
/* Centre the underline accent for centred headings */
.cta-section h2::after { left: 50%; transform: translateX(-50%); }
.cta-section > .container > p { color: var(--c-text-muted); max-width: 580px; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-border);
  padding: 52px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--gap-lg);
  margin-bottom: var(--gap-lg);
}
.footer-brand img { height: 34px; margin-bottom: 14px; }
.footer-brand p { font-size: .84rem; color: var(--c-text-muted); max-width: 300px; }
.footer-col h5 {
  font-size: .78rem;
  color: var(--c-gold);
  text-transform: uppercase;
  letter-spacing: .8px;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: .85rem; color: var(--c-text-muted); transition: color var(--ease); }
.footer-col a:hover { color: var(--c-gold); }

/* Footer bottom: disclaimer text + 18+ age badge */
.footer-bottom {
  border-top: 1px solid var(--c-border);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.disclaimer {
  font-size: .74rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  max-width: 800px;
}
/* Circular 18+ badge */
.age-badge {
  min-width: 44px; height: 44px;
  border: 2px solid var(--c-text-muted);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 800;
  color: var(--c-text-muted);
  flex-shrink: 0;
}

/* ============================================================
   SCROLL TO TOP BUTTON
   Fixed position, animates in when page scrolls > 400px.
   Visibility is toggled by JS adding/removing .visible class.
============================================================ */
.scroll-top-btn {
  position: fixed;
  bottom: 28px; right: 24px;
  width: 46px; height: 46px;
  background: var(--c-gold);
  color: #07091a;
  border: none; border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 500;
  /* Start hidden below view */
  opacity: 0; transform: translateY(20px);
  transition: all var(--ease);
  box-shadow: 0 4px 20px var(--c-gold-glow);
}
.scroll-top-btn.visible { opacity: 1; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--c-gold-light); transform: translateY(-3px); }
.scroll-top-btn svg { width: 17px; height: 17px; stroke: #07091a; stroke-width: 2.5; fill: none; }

/* ============================================================
   CALLOUT BOX — highlighted note or tip inside content
============================================================ */
.callout {
  border-left: 4px solid var(--c-gold);
  background: rgba(245,166,35,.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  margin: 20px 0;
  font-size: .9rem;
}

/* ============================================================
   RESPONSIVE OVERRIDES
   Breakpoint 1: ≤ 1024px — tablet layout
   Breakpoint 2: ≤ 768px  — mobile layout
   Breakpoint 3: ≤ 480px  — small mobile layout
============================================================ */

/* --- Tablet (≤ 1024px) --- */
@media (max-width: 1024px) {
  .two-col         { grid-template-columns: 1fr; gap: var(--gap-md); }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
}

/* --- Mobile (≤ 768px) --- */
@media (max-width: 768px) {
  :root { --header-h: 60px; }

  /* Show burger, hide desktop nav + CTA */
  .header-nav,
  .header-cta-desktop { display: none; }
  .nav-burger { display: flex; }

  .section { padding: 44px 0; }

  /* Hero overlay tighter on mobile */
  .hero-overlay { padding: 24px 18px; }

  /* ---- RESPONSIVE TABLES ----
     On mobile both the info table and bonus table switch to a
     "stacked card" layout: thead is hidden and each td shows its
     column header via the data-label attribute + CSS ::before.
  ----------------------------- */

  /* Info table: stacked layout */
  .tbl thead { display: none; }
  .tbl tbody tr {
    display: block;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    padding: 4px 0;
    border-bottom: 1px solid var(--c-border);
  }
  .tbl tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(28,35,71,.6);
    width: 100% !important;
  }
  .tbl tbody td:last-child { border-bottom: none; }
  /* Inject the column label from data-label before each cell value */
  .tbl tbody td::before {
    content: attr(data-label);
    font-size: .75rem;
    font-weight: 700;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .4px;
    flex-shrink: 0;
    min-width: 38%;
  }

  /* Bonus table: stacked layout */
  .scroll-hint { display: block; }
  .btbl thead { display: none; }
  .btbl tbody tr {
    display: block;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    padding: 4px 0;
    background: var(--c-bg-2);
  }
  .btbl tbody td {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(28,35,71,.5);
    font-size: .875rem;
  }
  .btbl tbody td:last-child { border-bottom: none; }
  /* Gold label from data-label for bonus table */
  .btbl tbody td::before {
    content: attr(data-label);
    font-size: .72rem;
    font-weight: 700;
    color: var(--c-gold);
    text-transform: uppercase;
    flex-shrink: 0;
    min-width: 42%;
  }

  /* Games grid — 2 columns on mobile */
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* VIP row — wrap text on mobile */
  .vip-row { flex-wrap: wrap; }
  .vip-row__benefit { margin-left: 0; text-align: left; width: 100%; }

  /* Payment grid — 3 columns on mobile */
  .pay-grid { grid-template-columns: repeat(3, 1fr); }

  /* Footer — single column */
  .footer-grid { grid-template-columns: 1fr; gap: var(--gap-md); }
  .footer-bottom { flex-direction: column; text-align: center; }

  .promo-block { flex-direction: column; text-align: center; }
  .bonus-cards { grid-template-columns: 1fr; }

  .scroll-top-btn { bottom: 16px; right: 14px; width: 42px; height: 42px; }
}

/* --- Small mobile (≤ 480px) --- */
@media (max-width: 480px) {
  /* Stack hero and CTA buttons vertically on very small screens */
  .hero-btns,
  .cta-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn,
  .cta-btns .btn { width: 100%; }

  .pay-grid { grid-template-columns: repeat(2, 1fr); }
}
