/*
 * ═══════════════════════════════════════════════════════════════════
 *  Yep Casino Greece — Main Stylesheet
 *  Domain  : skandalotopos.gr
 *  Language: el  |  Geo: GR
 *
 *  TABLE OF CONTENTS
 *  ─────────────────────────────────────────────────────────────────
 *  1.  CSS Custom Properties (Design Tokens)
 *  2.  CSS Reset & Base Styles
 *  3.  Utility Classes
 *  4.  Skip Link (Accessibility)
 *  5.  Header & Navigation
 *  6.  Hero / Banner Section
 *  7.  Breadcrumbs
 *  8.  Main Layout & Container
 *  9.  Article & Section Headings
 * 10.  Feature Highlights Grid
 * 11.  Registration Steps
 * 12.  Bonus Cards
 * 13.  Games Table & Slots Grid
 * 14.  Mobile App Section
 * 15.  Payment Methods
 * 16.  Security Section
 * 17.  VIP Section
 * 18.  CTA (Call-to-Action) Banner
 * 19.  FAQ Accordion
 * 20.  Footer
 * 21.  Scroll-to-Top Button
 * 22.  Responsive Breakpoints
 * ═══════════════════════════════════════════════════════════════════
 */


/* ─────────────────────────────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES — all brand colours and spacing live here
   so changes are made in one place
   ───────────────────────────────────────────────────────────────── */
:root {
  /* Brand palette — Sky Blue + Yellow */
  --clr-blue-900:   #0c2340;   /* darkest navy, text on light bg   */
  --clr-blue-800:   #0f3460;   /* dark blue, section backgrounds   */
  --clr-blue-700:   #0a4f8c;   /* mid-dark blue                    */
  --clr-blue-600:   #0077b6;   /* primary brand blue               */
  --clr-blue-500:   #0096c7;   /* lighter brand blue               */
  --clr-blue-400:   #00b4d8;   /* accent blue                      */
  --clr-blue-200:   #ade8f4;   /* very light blue (tints)          */
  --clr-blue-100:   #caf0f8;   /* near-white blue background       */
  --clr-blue-50:    #e8f8fd;   /* page background tint             */

  --clr-yellow-600: #d97706;   /* amber dark — text on light bg    */
  --clr-yellow-500: #f59e0b;   /* primary yellow                   */
  --clr-yellow-400: #fbbf24;   /* mid yellow — buttons / accents   */
  --clr-yellow-300: #fcd34d;   /* light yellow                     */
  --clr-yellow-100: #fef3c7;   /* yellow tint backgrounds          */

  --clr-white:      #ffffff;
  --clr-off-white:  #f8fafc;
  --clr-gray-100:   #f1f5f9;
  --clr-gray-200:   #e2e8f0;
  --clr-gray-300:   #cbd5e1;
  --clr-gray-600:   #475569;
  --clr-gray-800:   #1e293b;   /* body text colour                 */

  /* Semantic alias tokens */
  --color-primary:        var(--clr-blue-600);
  --color-primary-dark:   var(--clr-blue-800);
  --color-accent:         var(--clr-yellow-400);
  --color-accent-dark:    var(--clr-yellow-600);
  --color-text:           var(--clr-gray-800);
  --color-text-light:     var(--clr-gray-600);
  --color-bg:             var(--clr-white);
  --color-bg-alt:         var(--clr-blue-50);
  --color-border:         var(--clr-gray-200);
  --color-link:           var(--clr-blue-600);
  --color-link-hover:     var(--clr-blue-800);

  /* Typography */
  --font-sans: 'Segoe UI', system-ui, -apple-system, Helvetica, Arial, sans-serif;
  --font-size-xs:   0.75rem;   /* 12px */
  --font-size-sm:   0.875rem;  /* 14px */
  --font-size-base: 1rem;      /* 16px */
  --font-size-md:   1.125rem;  /* 18px */
  --font-size-lg:   1.25rem;   /* 20px */
  --font-size-xl:   1.5rem;    /* 24px */
  --font-size-2xl:  1.875rem;  /* 30px */
  --font-size-3xl:  2.25rem;   /* 36px */
  --font-size-4xl:  3rem;      /* 48px */

  /* Spacing scale (multiples of 4px) */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  /* Borders & shadows */
  --radius-sm:  0.375rem;
  --radius-md:  0.75rem;
  --radius-lg:  1.25rem;
  --radius-xl:  2rem;
  --radius-full: 9999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.08);
  --shadow-md:  0 4px 12px rgba(0,0,0,.15);
  --shadow-lg:  0 10px 30px rgba(0,0,0,.18);
  --shadow-glow: 0 0 20px rgba(0,183,216,.35);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Layout */
  --container-max: 1200px;
  --header-height: 70px;
}


/* ─────────────────────────────────────────────────────────────────
   2. CSS RESET & BASE STYLES
   Box-sizing, margin reset, fluid images
   ───────────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  /* Prevent text size adjustment on orientation change */
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg-alt);
  /* Ensure page doesn't overflow horizontally on small screens */
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-link);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover, a:focus-visible {
  color: var(--color-link-hover);
  text-decoration: underline;
}

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  font-weight: 700;
  color: var(--clr-blue-900);
}

p + p { margin-top: var(--space-4); }

strong { color: inherit; }

code.promo-code {
  background: var(--clr-yellow-100);
  border: 1px solid var(--clr-yellow-300);
  color: var(--clr-blue-800);
  padding: 0.15em 0.45em;
  border-radius: var(--radius-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
}


/* ─────────────────────────────────────────────────────────────────
   3. UTILITY CLASSES
   ───────────────────────────────────────────────────────────────── */

/* Screen-reader only text — visually hidden but accessible */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Highlight colour — used for bonus values */
.highlight-yellow {
  color: var(--clr-yellow-600);
  font-weight: 700;
}

/* Inline link style for body text */
.inline-link {
  color: var(--clr-blue-600);
  font-weight: 600;
  text-decoration: underline;
}
.inline-link:hover { color: var(--clr-blue-800); }

/* Small fine-print note */
.small-note {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  margin-top: var(--space-4);
}


/* ─────────────────────────────────────────────────────────────────
   4. SKIP LINK (ACCESSIBILITY)
   Visible only on keyboard focus — helps screen-reader users
   skip repetitive navigation
   ───────────────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  padding: var(--space-2) var(--space-4);
  background: var(--clr-blue-800);
  color: var(--clr-white);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 700;
  z-index: 9999;
  transition: top var(--transition-fast);
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--clr-yellow-400);
  outline-offset: 2px;
}


/* ─────────────────────────────────────────────────────────────────
   5. HEADER & NAVIGATION
   Sticky header that stays at top while scrolling.
   Contains the logo and nav links + a CTA button.
   ───────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--clr-blue-900) 0%, var(--clr-blue-800) 100%);
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

/* Inner flex row: logo | hamburger (mobile) | nav */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  width: 100%;
}

/* Logo image — kept crisp at any resolution */
.logo-img {
  height: 44px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.4));
}
.logo-link:focus-visible {
  outline: 2px solid var(--clr-yellow-400);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ── Navigation list (desktop: horizontal row) ── */
.main-nav { display: flex; align-items: center; }

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  flex-wrap: wrap;
}

.nav-link {
  color: var(--clr-blue-200);
  font-size: var(--font-size-sm);
  font-weight: 500;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), color var(--transition-fast);
  text-decoration: none;
}
.nav-link:hover, .nav-link:focus-visible {
  color: var(--clr-white);
  background: rgba(255,255,255,.12);
  text-decoration: none;
}

/* CTA button inside nav — yellow pill */
.nav-cta-btn {
  background: linear-gradient(135deg, var(--clr-yellow-400), var(--clr-yellow-500));
  color: var(--clr-blue-900);
  font-size: var(--font-size-sm);
  font-weight: 700;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(251,191,36,.4);
}
.nav-cta-btn:hover, .nav-cta-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(251,191,36,.55);
  text-decoration: none;
  color: var(--clr-blue-900);
}

/* ── Mobile hamburger button — visible only below 768px ── */
.nav-toggle {
  display: none;        /* hidden on desktop                       */
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}
.nav-toggle:hover { background: rgba(255,255,255,.1); }
.nav-toggle:focus-visible {
  outline: 2px solid var(--clr-yellow-400);
  outline-offset: 2px;
}

.hamburger-bar {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

/* Animated X state when nav is open */
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ─────────────────────────────────────────────────────────────────
   6. HERO / BANNER SECTION
   Full-width banner image. Uses <picture> for responsive images.
   Centred semi-transparent CTA overlay on top of the image.
   ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* Constrain desktop banner height while keeping mobile natural */
  max-height: 600px;
}

/* The <picture> wrapper fills the section */
.hero-picture {
  display: block;
  width: 100%;
  height: 100%;
}

/* Banner image covers the container proportionally */
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Overlay: covers the whole banner with a gradient dark veil ── */
.hero-overlay {
  position: absolute;
  inset: 0;                    /* top:0 right:0 bottom:0 left:0     */
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    to bottom,
    rgba(12, 35, 64, 0.25) 0%,
    rgba(12, 35, 64, 0.55) 100%
  );
}

/* ── Semi-transparent CTA block — centred on both desktop+mobile ── */
.hero-cta-block {
  /* Frosted-glass-style semi-transparent panel */
  background: rgba(12, 35, 64, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-10);
  max-width: 600px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0,150,199,.25);
}

/* Small "Exclusive offer" badge above headline */
.hero-badge {
  display: inline-block;
  background: var(--clr-yellow-400);
  color: var(--clr-blue-900);
  font-size: var(--font-size-sm);
  font-weight: 700;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-title {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: var(--space-3);
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}

.hero-subtitle {
  font-size: var(--font-size-lg);
  color: var(--clr-blue-200);
  margin-bottom: var(--space-6);
  line-height: 1.5;
}
.hero-subtitle strong {
  color: var(--clr-yellow-300);
  font-size: var(--font-size-xl);
}

/* Two CTA buttons side by side */
.hero-buttons {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-4);
}

/* Fine-print disclaimer below buttons */
.hero-disclaimer {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,.55);
  margin-top: var(--space-3);
}


/* ─────────────────────────────────────────────────────────────────
   7. BREADCRUMBS
   Horizontal pill-style breadcrumb bar between header and main
   ───────────────────────────────────────────────────────────────── */
.breadcrumb-nav {
  background: var(--clr-white);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-3) 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  font-size: var(--font-size-sm);
}

.breadcrumb-item a {
  color: var(--clr-blue-600);
  font-weight: 500;
}
.breadcrumb-item a:hover { text-decoration: underline; }

.breadcrumb-separator {
  color: var(--clr-gray-300);
  font-size: var(--font-size-base);
}

/* Current page item — not a link */
.breadcrumb-current {
  color: var(--color-text-light);
  font-weight: 600;
}


/* ─────────────────────────────────────────────────────────────────
   8. MAIN LAYOUT & CONTAINER
   Centred content column, max 1200px wide
   ───────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.main-content {
  padding: var(--space-12) 0 var(--space-16);
}

/* Content article wrapper — white card on the alt-bg page */
.content-article {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  padding: var(--space-10) var(--space-8);
}

/* Each semantic section gets vertical breathing room */
.content-section {
  margin-top: var(--space-16);
  padding-top: var(--space-8);
  border-top: 2px solid var(--clr-blue-100);
}

/* ── Inline CTA row (after a text section) ── */
.cta-inline {
  margin-top: var(--space-6);
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}


/* ─────────────────────────────────────────────────────────────────
   9. ARTICLE & SECTION HEADINGS
   ───────────────────────────────────────────────────────────────── */

/* Main H1 at top of article */
.article-title {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--clr-blue-900);
  line-height: 1.2;
  margin-bottom: var(--space-6);
  /* Decorative bottom underline using gradient */
  padding-bottom: var(--space-4);
  border-bottom: 3px solid var(--clr-yellow-400);
}

.article-header {
  margin-bottom: var(--space-6);
}

.article-intro p {
  font-size: var(--font-size-md);
  color: var(--color-text);
}

/* H2 section headings */
.section-heading {
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: var(--clr-blue-800);
  margin-bottom: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.heading-icon {
  font-size: var(--font-size-2xl);
  flex-shrink: 0;
}

/* H3 sub-section headings */
.subsection-heading {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--clr-blue-700);
  margin: var(--space-8) 0 var(--space-4);
}


/* ─────────────────────────────────────────────────────────────────
   10. FEATURE HIGHLIGHTS GRID
   Six-card quick-summary grid at the top of the article
   ───────────────────────────────────────────────────────────────── */
.feature-highlights {
  display: grid;
  /* Auto-fit: min 160px per card, maximum 1 fraction of remaining space */
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.feature-card {
  background: linear-gradient(145deg, var(--clr-blue-50), var(--clr-white));
  border: 1px solid var(--clr-blue-200);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-4);
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: var(--space-2);
}

.feature-title {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--clr-blue-800);
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.feature-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  line-height: 1.4;
}


/* ─────────────────────────────────────────────────────────────────
   11. REGISTRATION STEPS
   Numbered horizontal step list
   ───────────────────────────────────────────────────────────────── */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin: var(--space-6) 0;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  background: var(--clr-blue-50);
  border-left: 4px solid var(--clr-blue-600);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-4) var(--space-5);
}

/* Circular numbered badge */
.step-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--clr-blue-600);
  color: var(--clr-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: var(--font-size-base);
  line-height: 1;
}

.step-content {
  font-size: var(--font-size-base);
  color: var(--color-text);
  line-height: 1.6;
}


/* ─────────────────────────────────────────────────────────────────
   12. BONUS CARDS
   Cards for each bonus type with a coloured top border
   ───────────────────────────────────────────────────────────────── */
.bonus-card {
  position: relative;
  background: var(--clr-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  margin-top: var(--space-8);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

/* Coloured top accent bar per card type */
.bonus-card--nodep   { border-top: 4px solid var(--clr-blue-600); }
.bonus-card--spins   { border-top: 4px solid var(--clr-yellow-400); }
.bonus-card--welcome { border-top: 4px solid #10b981; }  /* green  */
.bonus-card--sports  { border-top: 4px solid #f97316; }  /* orange */

/* Floating badge in top-right corner */
.bonus-card-badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: var(--clr-blue-800);
  color: var(--clr-yellow-300);
  font-size: var(--font-size-xs);
  font-weight: 700;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Card title */
.bonus-card-title {
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: var(--clr-blue-800);
  margin-bottom: var(--space-4);
  padding-right: var(--space-16); /* space for badge */
}

/* Responsive 2-column or 4-column detail grid */
.bonus-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-3);
  margin: var(--space-5) 0;
}

.bonus-detail-item {
  background: var(--clr-blue-50);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.detail-label {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.detail-value {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--clr-blue-800);
}

/* Horizontal separator inside bonus cards */
.bonus-divider {
  height: 1px;
  background: var(--color-border);
  margin: var(--space-6) 0;
}

.bonus-alt-title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--clr-blue-700);
  margin-bottom: var(--space-3);
}

/* Terms bullet list */
.bonus-terms-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin: var(--space-4) 0;
}

.bonus-terms-list li {
  padding: var(--space-2) var(--space-3);
  background: var(--clr-yellow-100);
  border-left: 3px solid var(--clr-yellow-400);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: var(--font-size-sm);
}

/* Three-column deposit stages */
.deposit-stages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-4);
  margin: var(--space-6) 0;
}

.deposit-stage {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}
.deposit-stage:hover { box-shadow: var(--shadow-md); }

.stage-header {
  background: linear-gradient(135deg, var(--clr-blue-700), var(--clr-blue-800));
  padding: var(--space-3) var(--space-4);
}

.stage-num {
  color: var(--clr-yellow-300);
  font-weight: 700;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stage-body {
  padding: var(--space-5);
  background: var(--clr-white);
}

.stage-bonus {
  font-size: var(--font-size-lg);
  color: var(--clr-blue-800);
  margin-bottom: var(--space-2);
}
.stage-bonus strong { color: var(--clr-blue-600); }

.stage-spins {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-2);
}

.stage-game {
  font-size: var(--font-size-sm);
  color: var(--clr-blue-700);
  font-weight: 600;
}

/* Conditions summary box */
.bonus-terms-box {
  background: var(--clr-gray-100);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  margin-top: var(--space-5);
  font-size: var(--font-size-sm);
  line-height: 1.8;
}
.bonus-terms-box p + p { margin-top: var(--space-2); }

.bonus-note {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  margin-top: var(--space-4);
  font-style: italic;
}

/* CTA area at the bottom of each bonus card */
.bonus-cta {
  margin-top: var(--space-6);
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}


/* ─────────────────────────────────────────────────────────────────
   13. GAMES TABLE & SLOTS GRID
   Responsive table that stacks to cards on mobile.
   Slot image grid with hover-reveal play button.
   ───────────────────────────────────────────────────────────────── */

/* Wrapper provides horizontal scroll on very small viewports
   as a fallback; the main adaptation is via data-label stacking */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;  /* smooth scroll on iOS       */
  margin: var(--space-6) 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* Shared table styles */
.games-table,
.compat-table,
.withdrawal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-size-sm);
  background: var(--clr-white);
}

.games-table thead th,
.compat-table thead th,
.withdrawal-table thead th {
  background: linear-gradient(135deg, var(--clr-blue-800), var(--clr-blue-700));
  color: var(--clr-white);
  padding: var(--space-4) var(--space-5);
  text-align: left;
  font-weight: 700;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.games-table tbody tr,
.compat-table tbody tr,
.withdrawal-table tbody tr {
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition-fast);
}

.games-table tbody tr:last-child,
.compat-table tbody tr:last-child,
.withdrawal-table tbody tr:last-child {
  border-bottom: none;
}

.games-table tbody tr:nth-child(even),
.compat-table tbody tr:nth-child(even),
.withdrawal-table tbody tr:nth-child(even) {
  background: var(--clr-blue-50);
}

.games-table tbody tr:hover,
.compat-table tbody tr:hover,
.withdrawal-table tbody tr:hover {
  background: var(--clr-yellow-100);
}

.games-table td,
.compat-table td,
.withdrawal-table td {
  padding: var(--space-4) var(--space-5);
  vertical-align: middle;
  color: var(--color-text);
  line-height: 1.5;
}

/* ── Slot images grid ── */
.slots-grid {
  display: grid;
  /* Responsive grid: fills available width, min 160px per item */
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.slot-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  background: var(--clr-blue-900);
}
.slot-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.slot-card-link {
  display: block;
  position: relative;
  text-decoration: none;
}
.slot-card-link:focus-visible {
  outline: 3px solid var(--clr-yellow-400);
  outline-offset: 2px;
}

/* Slot thumbnail image — square crop */
.slot-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: filter var(--transition-base);
}
.slot-card:hover .slot-img {
  filter: brightness(0.65);
}

/* Slot game name below image */
.slot-name {
  display: block;
  padding: var(--space-2) var(--space-3);
  background: var(--clr-blue-900);
  color: var(--clr-blue-200);
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Play button that appears on hover (hidden by default) */
.slot-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: var(--clr-yellow-400);
  color: var(--clr-blue-900);
  font-size: var(--font-size-sm);
  font-weight: 700;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  opacity: 0;
  transition: opacity var(--transition-base), transform var(--transition-base);
  pointer-events: none;   /* prevents interfering with link click  */
}
.slot-card:hover .slot-play-btn,
.slot-card:focus-within .slot-play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}


/* ─────────────────────────────────────────────────────────────────
   14. MOBILE APP SECTION
   ───────────────────────────────────────────────────────────────── */
.app-benefits-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: var(--space-6) 0;
}

.app-benefits-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--font-size-base);
  color: var(--color-text);
}

.benefit-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* App download buttons row */
.app-download-buttons {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-top: var(--space-6);
}


/* ─────────────────────────────────────────────────────────────────
   15. PAYMENT METHODS
   ───────────────────────────────────────────────────────────────── */
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-4);
  margin: var(--space-6) 0;
}

.payment-method-card {
  background: var(--clr-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  text-align: center;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}
.payment-method-card:hover {
  border-color: var(--clr-blue-400);
  box-shadow: var(--shadow-md);
}

.pm-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: var(--space-3);
}

.pm-title {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--clr-blue-800);
  margin-bottom: var(--space-2);
}

.payment-method-card p {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  line-height: 1.5;
}


/* ─────────────────────────────────────────────────────────────────
   16. SECURITY SECTION
   ───────────────────────────────────────────────────────────────── */
.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-5);
  margin: var(--space-6) 0;
}

.security-card {
  background: linear-gradient(145deg, var(--clr-blue-800), var(--clr-blue-900));
  border-radius: var(--radius-md);
  padding: var(--space-6);
  color: var(--clr-white);
}

.security-title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--clr-yellow-300);
  margin-bottom: var(--space-4);
}

.security-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.security-list li {
  padding-left: var(--space-5);
  position: relative;
  font-size: var(--font-size-sm);
  color: var(--clr-blue-200);
  line-height: 1.5;
}
.security-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--clr-yellow-400);
  font-weight: 700;
}


/* ─────────────────────────────────────────────────────────────────
   17. VIP SECTION
   ───────────────────────────────────────────────────────────────── */
/* Seven tier badges displayed as a horizontal row of pills */
.vip-tiers {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin: var(--space-6) 0;
}

.vip-tier {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--font-size-sm);
  transition: transform var(--transition-fast);
}
.vip-tier:hover { transform: scale(1.05); }

/* Progressive colour gradient across tiers */
.tier-1 { background: #e2e8f0; color: #475569; }
.tier-2 { background: #fef3c7; color: #d97706; }
.tier-3 { background: #fed7aa; color: #c2410c; }
.tier-4 { background: #fecaca; color: #dc2626; }
.tier-5 { background: #dc2626; color: #fff; }
.tier-6 { background: linear-gradient(135deg,#f59e0b,#fbbf24); color: #0c2340; }
.tier-7 { background: linear-gradient(135deg,#0ea5e9,#7c3aed); color: #fff; }

.vip-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-5);
  margin: var(--space-6) 0;
}

.vip-benefit-card {
  background: var(--clr-blue-50);
  border: 1px solid var(--clr-blue-200);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}

.vip-benefit-title {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--clr-blue-800);
  margin-bottom: var(--space-3);
}

.vip-benefit-card p {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  line-height: 1.6;
}

.vip-note {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  margin-top: var(--space-4);
  font-style: italic;
}


/* ─────────────────────────────────────────────────────────────────
   18. CTA (CALL-TO-ACTION) BANNER SECTION
   Visually prominent section to drive registration
   ───────────────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--clr-blue-900) 0%, var(--clr-blue-800) 50%, var(--clr-blue-700) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-16) var(--space-8);
  margin-top: var(--space-16);
  text-align: center;
  position: relative;
  overflow: hidden;
  /* Decorative subtle pattern */
  background-image:
    linear-gradient(135deg, var(--clr-blue-900) 0%, var(--clr-blue-700) 100%),
    radial-gradient(circle at 10% 50%, rgba(251,191,36,.12) 0%, transparent 60%),
    radial-gradient(circle at 90% 50%, rgba(0,180,216,.15) 0%, transparent 60%);
}

.cta-content { position: relative; z-index: 1; }

.cta-heading {
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: var(--space-4);
}

.cta-text {
  font-size: var(--font-size-lg);
  color: var(--clr-blue-200);
  max-width: 640px;
  margin: 0 auto var(--space-8);
  line-height: 1.6;
}
.cta-text strong { color: var(--clr-yellow-300); }

.cta-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
}

.cta-disclaimer {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,.45);
}


/* ─────────────────────────────────────────────────────────────────
   19. FAQ ACCORDION
   Built with native <details>/<summary> for accessibility.
   No JS required (JS enhances open/close animations only).
   ───────────────────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.faq-item {
  background: var(--clr-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}
.faq-item[open] {
  box-shadow: var(--shadow-md);
  border-color: var(--clr-blue-400);
}

/* The clickable question row */
.faq-question {
  cursor: pointer;
  list-style: none;   /* remove native browser triangle              */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  font-weight: 700;
  font-size: var(--font-size-base);
  color: var(--clr-blue-800);
  background: var(--clr-blue-50);
  user-select: none;
  transition: background var(--transition-fast);
  gap: var(--space-3);
}
/* Remove native disclosure triangle in all browsers */
.faq-question::-webkit-details-marker { display: none; }

.faq-question:hover { background: var(--clr-blue-100); }

/* Custom arrow indicator after text */
.faq-question::after {
  content: "▼";
  font-size: var(--font-size-sm);
  color: var(--clr-blue-500);
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-item[open] > .faq-question::after {
  transform: rotate(180deg);
}

.faq-item[open] > .faq-question {
  background: var(--clr-blue-100);
  color: var(--clr-blue-900);
  border-bottom: 1px solid var(--color-border);
}

.faq-question:focus-visible {
  outline: 2px solid var(--clr-blue-500);
  outline-offset: -2px;
}

/* Answer content panel */
.faq-answer {
  padding: var(--space-5) var(--space-6);
  font-size: var(--font-size-base);
  color: var(--color-text);
  line-height: 1.7;
  animation: fadeIn var(--transition-base);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ─────────────────────────────────────────────────────────────────
   SHARED BUTTON STYLES
   All buttons share a base class .btn with modifier classes
   ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: var(--font-size-sm);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    color var(--transition-fast);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn:focus-visible {
  outline: 3px solid var(--clr-yellow-400);
  outline-offset: 3px;
}
.btn:active { transform: scale(0.97); }

/* Large size modifier */
.btn-lg {
  font-size: var(--font-size-md);
  padding: var(--space-4) var(--space-8);
}

/* Primary — yellow-gold fill */
.btn-primary {
  background: linear-gradient(135deg, var(--clr-yellow-400), var(--clr-yellow-500));
  color: var(--clr-blue-900);
  box-shadow: 0 3px 10px rgba(251,191,36,.45);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--clr-yellow-300), var(--clr-yellow-400));
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(251,191,36,.55);
  color: var(--clr-blue-900);
  text-decoration: none;
}

/* Secondary — outlined blue */
.btn-secondary {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid var(--clr-blue-400);
  box-shadow: none;
}
.btn-secondary:hover {
  background: var(--clr-blue-400);
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,180,216,.4);
  text-decoration: none;
}

/* Sports — orange */
.btn-sports {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: var(--clr-white);
  box-shadow: 0 3px 10px rgba(249,115,22,.4);
}
.btn-sports:hover {
  background: linear-gradient(135deg, #fb923c, #f97316);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(249,115,22,.5);
  text-decoration: none;
  color: var(--clr-white);
}

/* Download buttons for app section */
.btn-download {
  font-size: var(--font-size-base);
  padding: var(--space-4) var(--space-6);
}

.btn-android {
  background: linear-gradient(135deg, #3ddc84, #28a865);
  color: var(--clr-white);
}
.btn-android:hover {
  background: linear-gradient(135deg, #4ade80, #3ddc84);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--clr-white);
}

.btn-ios {
  background: linear-gradient(135deg, #94a3b8, #64748b);
  color: var(--clr-white);
}
.btn-ios:hover {
  background: linear-gradient(135deg, #cbd5e1, #94a3b8);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--clr-white);
}

/* CTA section button variants */
.btn-cta-primary {
  background: linear-gradient(135deg, var(--clr-yellow-400), var(--clr-yellow-500));
  color: var(--clr-blue-900);
  font-size: var(--font-size-md);
  padding: var(--space-4) var(--space-8);
  box-shadow: 0 4px 16px rgba(251,191,36,.5);
}
.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(251,191,36,.6);
  text-decoration: none;
  color: var(--clr-blue-900);
}

.btn-cta-secondary {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(255,255,255,.45);
  font-size: var(--font-size-base);
  padding: var(--space-4) var(--space-6);
}
.btn-cta-secondary:hover {
  border-color: var(--clr-white);
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--clr-white);
}

.btn-cta-promo {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  color: var(--clr-white);
  font-size: var(--font-size-base);
  padding: var(--space-4) var(--space-6);
}
.btn-cta-promo:hover {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--clr-white);
}


/* ─────────────────────────────────────────────────────────────────
   20. FOOTER
   ───────────────────────────────────────────────────────────────── */
.site-footer {
  background: linear-gradient(135deg, var(--clr-blue-900), var(--clr-blue-800));
  color: var(--clr-blue-200);
  padding: var(--space-12) 0;
  margin-top: var(--space-16);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: var(--space-8);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
}

.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1) opacity(.9);
}

.footer-tagline {
  font-size: var(--font-size-sm);
  color: var(--clr-blue-300, #93c5fd);
}

.footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  justify-content: center;
}

.footer-link {
  color: var(--clr-blue-200);
  font-size: var(--font-size-sm);
  font-weight: 500;
  transition: color var(--transition-fast);
}
.footer-link:hover {
  color: var(--clr-yellow-300);
  text-decoration: none;
}

.footer-legal {
  text-align: right;
}

.footer-age-warning {
  font-size: var(--font-size-base);
  color: var(--clr-yellow-300);
  margin-bottom: var(--space-3);
}

.footer-disclaimer {
  font-size: var(--font-size-xs);
  color: rgba(173,232,244,.55);
  line-height: 1.6;
  max-width: 340px;
  margin-left: auto;
  margin-bottom: var(--space-3);
}

.footer-copyright {
  font-size: var(--font-size-xs);
  color: rgba(173,232,244,.35);
}


/* ─────────────────────────────────────────────────────────────────
   21. SCROLL-TO-TOP BUTTON
   Appears after scrolling down; fixed to bottom-right corner
   ───────────────────────────────────────────────────────────────── */
.scroll-top-btn {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 48px;
  height: 48px;
  background: var(--clr-blue-600);
  color: var(--clr-white);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: background var(--transition-fast), transform var(--transition-fast), opacity var(--transition-base);
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-top-btn:hover {
  background: var(--clr-blue-700);
  transform: translateY(-2px);
}
.scroll-top-btn:focus-visible {
  outline: 3px solid var(--clr-yellow-400);
  outline-offset: 3px;
}
/* When hidden attribute is present — use opacity fade */
.scroll-top-btn[hidden] {
  display: none;
}


/* ─────────────────────────────────────────────────────────────────
   22. RESPONSIVE BREAKPOINTS
   ─────────────────────────────────────────────────────────────────

   We use a mobile-first approach but some components are desktop-first.
   Key breakpoints:
     – max 767px  : mobile / single column
     – 768px+     : tablet / 2-col
     – 1024px+    : desktop / full layout
   ───────────────────────────────────────────────────────────────── */

/* ── max-width 1024px : slightly smaller desktop ── */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .footer-legal {
    grid-column: 1 / -1;
    text-align: left;
  }
  .footer-disclaimer { margin-left: 0; }
}

/* ── max-width 767px : MOBILE layout ── */
@media (max-width: 767px) {
  /* ── Typography scale down ── */
  :root {
    --font-size-3xl:  1.75rem;
    --font-size-2xl:  1.5rem;
    --font-size-xl:   1.25rem;
  }

  /* ── Header: show hamburger, collapse nav ── */
  .nav-toggle {
    display: flex;         /* visible on mobile                      */
  }

  .main-nav {
    /* Collapsed by default; JS adds .is-open to expand */
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--clr-blue-900);
    border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
    /* Hidden by clip + opacity so it can animate without layout shift */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height var(--transition-slow), opacity var(--transition-base);
  }

  .main-nav.is-open {
    max-height: 400px;
    opacity: 1;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-4);
  }

  .nav-link {
    display: block;
    padding: var(--space-4);
    border-bottom: 1px solid rgba(255,255,255,.07);
    font-size: var(--font-size-base);
  }

  .nav-cta-btn {
    display: block;
    text-align: center;
    margin-top: var(--space-3);
    padding: var(--space-4);
  }

  /* ── Hero: natural image height on mobile ── */
  .hero { max-height: none; }

  .hero-cta-block {
    padding: var(--space-5) var(--space-5);
    width: 92%;
  }

  .hero-title { font-size: var(--font-size-2xl); }

  .hero-subtitle {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-4);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn-lg {
    width: 100%;
    max-width: 300px;
    font-size: var(--font-size-base);
    padding: var(--space-3) var(--space-5);
  }

  /* ── Breadcrumbs: reduce font on tiny screens ── */
  .breadcrumb-list { font-size: var(--font-size-xs); }

  /* ── Content article: less padding on mobile ── */
  .content-article {
    padding: var(--space-6) var(--space-4);
    border-radius: var(--radius-md);
  }

  /* ── Article title smaller ── */
  .article-title { font-size: var(--font-size-2xl); }

  .section-heading { font-size: var(--font-size-xl); }

  /* ── Feature highlights: 2-column grid ── */
  .feature-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ── RESPONSIVE TABLES
     The default data table is hidden and each cell becomes
     a labelled card row using the data-label attribute.
     ──────────────────────────────────────────────────────── */
  .games-table,
  .compat-table,
  .withdrawal-table {
    /* Remove table layout so cells stack vertically */
    display: block;
    width: 100%;
  }

  /* Hide the header row visually but keep for screen readers */
  .games-table thead,
  .compat-table thead,
  .withdrawal-table thead {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
  }

  .games-table tbody,
  .compat-table tbody,
  .withdrawal-table tbody {
    display: block;
  }

  /* Each row becomes a card */
  .games-table tbody tr,
  .compat-table tbody tr,
  .withdrawal-table tbody tr {
    display: block;
    margin-bottom: var(--space-3);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--clr-white);
  }

  /* Each cell becomes a row with label on the left */
  .games-table td,
  .compat-table td,
  .withdrawal-table td {
    display: flex;
    padding: var(--space-3) var(--space-4);
    border-bottom: 1px solid var(--color-border);
    font-size: var(--font-size-sm);
    gap: var(--space-3);
    align-items: flex-start;
  }
  .games-table td:last-child,
  .compat-table td:last-child,
  .withdrawal-table td:last-child {
    border-bottom: none;
  }

  /* Inject label from data-label attribute before cell content */
  .games-table td::before,
  .compat-table td::before,
  .withdrawal-table td::before {
    content: attr(data-label);
    flex-shrink: 0;
    min-width: 120px;
    font-weight: 700;
    color: var(--clr-blue-700);
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding-top: 2px;
  }
  /* ─── end responsive tables ─────────────────────────────── */

  /* ── Slot grid: 2 columns on mobile ── */
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
  }

  /* ── Bonus cards: less padding ── */
  .bonus-card { padding: var(--space-5) var(--space-4); }
  .bonus-card-title { font-size: var(--font-size-lg); padding-right: var(--space-4); }
  .bonus-card-badge {
    position: static;
    display: inline-block;
    margin-bottom: var(--space-3);
  }

  .deposit-stages { grid-template-columns: 1fr; }

  /* ── App download buttons: stack vertically ── */
  .app-download-buttons { flex-direction: column; }
  .btn-download { text-align: center; }

  /* ── CTA section ── */
  .cta-section { padding: var(--space-10) var(--space-5); }
  .cta-heading { font-size: var(--font-size-xl); }
  .cta-text { font-size: var(--font-size-base); }
  .cta-buttons { flex-direction: column; align-items: center; }
  .btn-cta-primary, .btn-cta-secondary, .btn-cta-promo {
    width: 100%;
    max-width: 320px;
  }

  /* ── VIP tiers: wrap naturally, smaller pills ── */
  .vip-tier { padding: var(--space-2) var(--space-3); font-size: var(--font-size-xs); }

  /* ── Footer: stack to single column ── */
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand { align-items: center; }
  .footer-legal { text-align: center; }
  .footer-disclaimer { margin: 0 auto; }
}

/* ── max-width 480px : small phones ── */
@media (max-width: 480px) {
  /* On very small phones, single column slot grid */
  .slots-grid { grid-template-columns: repeat(2, 1fr); }

  .feature-highlights { grid-template-columns: 1fr 1fr; }

  .hero-title { font-size: 1.5rem; }

  .deposit-stages { grid-template-columns: 1fr; }

  .bonus-details-grid { grid-template-columns: 1fr; }
}

/* ── min-width 768px : tablet and up ── */
@media (min-width: 768px) {
  /* Slot grid: more columns on larger screens */
  .slots-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
}

/* ── min-width 1024px : full desktop ── */
@media (min-width: 1024px) {
  .content-article { padding: var(--space-12) var(--space-12); }

  .hero-title { font-size: 3.5rem; }

  .slots-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}
