/*
  ================================================================
  Yep Casino Greece – Main Stylesheet
  Domain  : yepcasinogreece.gr
  Language: el (Greek)
  Geo     : GR
  Theme   : Electric Pink + Neon Blue on Deep Dark Background
  ================================================================

  TABLE OF CONTENTS
  ─────────────────
  01. CSS Custom Properties (Design Tokens)
  02. CSS Reset & Base Styles
  03. Typography
  04. Layout Utilities (Container, Grids)
  05. Accessibility Utilities
  06. Buttons
  07. Site Header & Navigation
  08. Mobile Menu
  09. Breadcrumb
  10. Hero / Banner Section
  11. Article Wrapper
  12. Introduction Section
  13. Stat Cards
  14. Section Titles
  15. Offer Cards (3-column grid)
  16. Offer Detail Sections
  17. Calculation Box
  18. Steps List
  19. FS Games Grid
  20. Terms Card (aside)
  21. Comparison Table (responsive mobile)
  22. Why Section / Feature Cards
  23. Slots Gallery
  24. FAQ Accordion
  25. Final CTA Section
  26. Site Footer
  27. Animations & Transitions
  28. Media Queries – Tablet (≤1024px)
  29. Media Queries – Mobile (≤768px)
  30. Media Queries – Small Mobile (≤480px)
  ================================================================
*/


/* ================================================================
   01. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   – Central place to change colours, fonts, spacing, radii.
   ================================================================ */
:root {
  /* ── Colour palette ── */
  --color-pink:          #FF2D87;       /* Primary pink / hot magenta */
  --color-pink-light:    #FF6BAD;       /* Hover / lighter pink */
  --color-pink-dark:     #C4005E;       /* Pressed pink */
  --color-pink-glow:     rgba(255, 45, 135, 0.35); /* Glow for box-shadows */

  --color-blue:          #00C8FF;       /* Neon cyan-blue */
  --color-blue-light:    #60DFFF;       /* Hover blue */
  --color-blue-dark:     #0090C0;       /* Pressed blue */
  --color-blue-glow:     rgba(0, 200, 255, 0.30);  /* Glow for box-shadows */

  --color-purple:        #7B2FFF;       /* Accent purple (gradients) */
  --color-gold:          #FFD700;       /* Highlight / stars */

  /* ── Background layers ── */
  --bg-page:             #070714;       /* Deepest dark (body) */
  --bg-surface:          #0F0F28;       /* Cards, panels */
  --bg-surface-2:        #151535;       /* Slightly lighter panels */
  --bg-overlay:          rgba(7, 7, 20, 0.72); /* Hero CTA card overlay */

  /* ── Text ── */
  --text-primary:        #F0F0FF;       /* Near-white main text */
  --text-secondary:      #9A9AC0;       /* Muted / supporting text */
  --text-accent-pink:    var(--color-pink);
  --text-accent-blue:    var(--color-blue);

  /* ── Gradients ── */
  --gradient-primary:    linear-gradient(135deg, var(--color-pink) 0%, var(--color-blue) 100%);
  --gradient-hero:       linear-gradient(180deg, rgba(7,7,20,0) 0%, rgba(7,7,20,0.55) 100%);
  --gradient-card:       linear-gradient(135deg, #1A1A3E 0%, #0F0F28 100%);
  --gradient-cta:        linear-gradient(135deg, var(--color-pink) 0%, var(--color-purple) 50%, var(--color-blue) 100%);

  /* ── Border ── */
  --border-subtle:       rgba(255, 255, 255, 0.08);
  --border-pink:         rgba(255, 45, 135, 0.40);
  --border-blue:         rgba(0, 200, 255, 0.40);
  --border-radius-sm:    8px;
  --border-radius-md:    16px;
  --border-radius-lg:    24px;
  --border-radius-xl:    32px;
  --border-radius-pill:  100px;

  /* ── Spacing scale ── */
  --space-xs:   4px;
  --space-sm:   8px;
  --space-md:   16px;
  --space-lg:   24px;
  --space-xl:   32px;
  --space-2xl:  48px;
  --space-3xl:  64px;
  --space-4xl:  96px;

  /* ── Shadows ── */
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:   0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg:   0 8px 48px rgba(0,0,0,0.6);
  --shadow-pink: 0 0 30px var(--color-pink-glow), 0 4px 24px rgba(0,0,0,0.5);
  --shadow-blue: 0 0 30px var(--color-blue-glow), 0 4px 24px rgba(0,0,0,0.5);

  /* ── Typography ── */
  --font-sans:  'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-size-xs:   12px;
  --font-size-sm:   14px;
  --font-size-base: 16px;
  --font-size-md:   18px;
  --font-size-lg:   22px;
  --font-size-xl:   28px;
  --font-size-2xl:  36px;
  --font-size-3xl:  48px;
  --font-size-4xl:  64px;

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

  /* ── Layout ── */
  --max-width:         1280px;
  --header-height:     72px;
}


/* ================================================================
   02. CSS RESET & BASE STYLES
   – Normalises browser defaults for consistent cross-browser rendering.
   ================================================================ */

/* Box-sizing reset – includes padding/border in element dimensions */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Smooth scrolling for anchor navigation (respects user preference) */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* Body – dark background, light text, full min-height */
body {
  background-color: var(--bg-page);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: 1.7;
  min-height: 100vh;
  /* Subtle repeating dot grid texture for depth */
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,45,135,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0,200,255,0.06) 0%, transparent 50%);
}

/* Link reset */
a {
  color: var(--color-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--color-blue-light); }
a:focus-visible {
  outline: 2px solid var(--color-pink);
  outline-offset: 3px;
  border-radius: 4px;
}

/* List resets */
ul, ol { list-style: none; }

/* Image defaults – prevents overflow and adds block display */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Button reset */
button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}


/* ================================================================
   03. TYPOGRAPHY
   – Heading hierarchy for visual weight and SEO structure.
   ================================================================ */

h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  font-weight: 700;
  color: var(--text-primary);
}

/* H1 – page title, largest and most prominent */
h1 {
  font-size: clamp(var(--font-size-xl), 4vw, var(--font-size-3xl));
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
}

/* H2 – section titles */
h2 { font-size: clamp(var(--font-size-lg), 3vw, var(--font-size-2xl)); }

/* H3 – subsection / card titles */
h3 { font-size: clamp(var(--font-size-base), 2vw, var(--font-size-xl)); }

/* Paragraph spacing */
p { margin-bottom: var(--space-md); }
p:last-child { margin-bottom: 0; }

/* Lead text – larger intro paragraph */
.lead-text {
  font-size: clamp(var(--font-size-base), 1.8vw, var(--font-size-md));
  color: var(--text-primary);
  line-height: 1.8;
}

/* Strong / bold emphasis */
strong { color: var(--color-pink); }


/* ================================================================
   04. LAYOUT UTILITIES – Container & Grids
   ================================================================ */

/* Centred max-width container with responsive horizontal padding */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* Generic section spacing */
.section {
  padding: var(--space-4xl) 0;
}


/* ================================================================
   05. ACCESSIBILITY UTILITIES
   ================================================================ */

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

/* Skip to main content link (appears on keyboard focus) */
.skip-link {
  position: fixed;
  top: -100%;
  left: var(--space-md);
  background: var(--color-pink);
  color: white;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  z-index: 9999;
  transition: top var(--transition-fast);
}
.skip-link:focus { top: var(--space-md); }


/* ================================================================
   06. BUTTONS
   – Reusable button system with variants and sizes.
   ================================================================ */

/* Base button – shared properties for all variants */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  border-radius: var(--border-radius-pill);
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background var(--transition-base),
    color var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-fast);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

/* Subtle shimmer pseudo-element on btn-primary */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn:hover::after { transform: translateX(100%); }

.btn:active { transform: scale(0.97); }
.btn:focus-visible {
  outline: 3px solid white;
  outline-offset: 3px;
}

/* PRIMARY – pink gradient (main CTA) */
.btn-primary {
  background: var(--gradient-cta);
  color: white;
  border-color: transparent;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-pink-light) 0%, var(--color-blue-light) 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-pink);
}

/* SECONDARY – blue */
.btn-secondary {
  background: linear-gradient(135deg, var(--color-blue-dark) 0%, var(--color-blue) 100%);
  color: white;
  border-color: transparent;
}
.btn-secondary:hover {
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-light) 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

/* OUTLINE – transparent with border */
.btn-outline {
  background: transparent;
  color: var(--color-blue);
  border-color: var(--color-blue);
}
.btn-outline:hover {
  background: rgba(0, 200, 255, 0.12);
  color: var(--color-blue-light);
  border-color: var(--color-blue-light);
  box-shadow: var(--shadow-blue);
  transform: translateY(-2px);
}

/* GHOST – subtle, low emphasis */
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  border-color: var(--border-subtle);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  color: white;
  border-color: rgba(255,255,255,0.2);
}

/* GLOW modifier – adds animated glow pulse */
.btn-glow {
  animation: glow-pulse 2.5s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 12px var(--color-pink-glow); }
  50%       { box-shadow: 0 0 28px var(--color-pink-glow), 0 0 48px rgba(255,45,135,0.2); }
}

/* Size modifiers */
.btn-sm  { padding: 8px 18px; font-size: var(--font-size-sm); }
.btn-lg  { padding: 18px 40px; font-size: var(--font-size-md); }
.btn-hero { padding: 16px 36px; font-size: var(--font-size-md); }

/* Full width (used in mobile menu / cards) */
.btn-full { width: 100%; text-align: center; }


/* ================================================================
   07. SITE HEADER & NAVIGATION
   ================================================================ */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7, 7, 20, 0.90);
  /* Frosted glass effect with backdrop-filter */
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

/* Horizontal gradient accent line below header */
.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  opacity: 0.7;
}

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

/* Logo link – no decoration, preserves image aspect */
.logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.site-logo {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(255,45,135,0.4));
  transition: filter var(--transition-base);
}
.site-logo:hover {
  filter: drop-shadow(0 0 14px rgba(255,45,135,0.7));
}

/* Desktop nav – flex row of CTA buttons */
.header-nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Hamburger button – hidden on desktop, shown on mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  border-radius: var(--border-radius-sm);
  transition: background var(--transition-fast);
}
.menu-toggle:hover { background: rgba(255,255,255,0.08); }

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

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


/* ================================================================
   08. MOBILE MENU DRAWER
   ================================================================ */

.mobile-menu {
  display: none;        /* JS will toggle .is-open to show */
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  background: rgba(10, 10, 30, 0.97);
  border-top: 1px solid var(--border-subtle);
}

/* When JavaScript adds .is-open, the drawer appears */
.mobile-menu.is-open {
  display: flex;
}


/* ================================================================
   09. BREADCRUMB NAVIGATION
   ================================================================ */

.breadcrumb-wrapper {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--space-sm) 0;
}

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

.breadcrumb-item a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}
.breadcrumb-item a:hover { color: var(--color-pink); }

/* Current page breadcrumb – visually distinguished */
.breadcrumb-current {
  color: var(--color-pink);
  font-weight: 600;
}

.breadcrumb-separator {
  color: var(--text-secondary);
  opacity: 0.4;
  user-select: none;
}


/* ================================================================
   10. HERO / BANNER SECTION
   – Responsive picture element with centered CTA overlay card.
   ================================================================ */

.hero-section {
  position: relative;
  overflow: hidden;
  /* Max height on desktop to prevent excessive whitespace */
  max-height: 90vh;
}

/* Wrapper holds banner image + absolute overlay */
.hero-banner-wrap {
  position: relative;
  width: 100%;
}

/* Banner image – full width, cover, fixed aspect ratio via object-fit */
.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 90vh;
}

/* Dark gradient overlay that sits above the banner for text readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Dark vignette to ensure CTA card is readable regardless of banner content */
  background: linear-gradient(
    135deg,
    rgba(7, 7, 20, 0.45) 0%,
    rgba(7, 7, 20, 0.25) 50%,
    rgba(7, 7, 20, 0.45) 100%
  );
  padding: var(--space-xl);
}

/* Semi-transparent glass card – the CTA block on the banner */
.hero-cta-card {
  background: var(--bg-overlay);            /* ~72% opacity dark */
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 45, 135, 0.35);
  border-radius: var(--border-radius-xl);
  padding: clamp(var(--space-xl), 4vw, var(--space-4xl)) clamp(var(--space-xl), 5vw, 80px);
  text-align: center;
  max-width: 600px;
  width: 100%;
  /* Pink glow around the card */
  box-shadow:
    0 0 60px rgba(255,45,135,0.25),
    0 20px 60px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.08);
  animation: card-float 4s ease-in-out infinite;
}

@keyframes card-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}

/* Small eyebrow label above the title */
.hero-eyebrow {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}

/* Hero section title (H2 inside hero) */
.hero-title {
  font-size: clamp(var(--font-size-xl), 5vw, var(--font-size-3xl));
  font-weight: 900;
  color: white;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* Large EUR amount display */
.hero-amount {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.hero-eur {
  font-size: clamp(var(--font-size-2xl), 7vw, var(--font-size-4xl));
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero-free {
  font-size: clamp(var(--font-size-md), 2.5vw, var(--font-size-xl));
  font-weight: 800;
  color: var(--color-gold);
  letter-spacing: 0.06em;
  text-shadow: 0 0 20px rgba(255,215,0,0.5);
}

.hero-subtitle {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-lg);
}

/* Flex row of hero CTA buttons */
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

/* Tiny disclaimer under hero CTA */
.hero-disclaimer {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.45);
  margin: 0;
}


/* ================================================================
   11. ARTICLE WRAPPER
   ================================================================ */

.content-article {
  padding-top: var(--space-3xl);
}

/* Page H1 – rendered with gradient text */
.page-title {
  margin-bottom: var(--space-2xl);
}


/* ================================================================
   12. INTRODUCTION SECTION
   ================================================================ */

.intro-section {
  padding-top: 0;
}

/* Two-column grid: editorial text + quick stats */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-3xl);
  align-items: start;
}

.intro-text { /* left column – editorial paragraphs */ }

/* Intro CTA button spacing */
.intro-text .btn {
  margin-top: var(--space-lg);
}


/* ================================================================
   13. STAT CARDS
   – Used in the intro sidebar to show quick bonus numbers.
   ================================================================ */

.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  /* Sticky on desktop so stats stay visible while scrolling */
  position: sticky;
  top: calc(var(--header-height) + var(--space-xl));
}

/* Individual stat card */
.stat-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-pink);
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-pink);
}

.stat-value {
  display: block;
  font-size: var(--font-size-xl);
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-label {
  display: block;
  font-size: var(--font-size-xs);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}


/* ================================================================
   14. SECTION TITLES
   ================================================================ */

/* Decorative gradient underline below each section title */
.section-title {
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-md);
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 3px;
}

/* Subtitle below section title */
.section-subtitle {
  font-size: var(--font-size-md);
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  max-width: 640px;
}


/* ================================================================
   15. OFFER CARDS
   – Three-column grid of bonus offer summary cards.
   ================================================================ */

.offers-section .section-title::after,
.why-section .section-title::after {
  width: 100%;
  max-width: 80px;
}

/* 3-column equal grid, collapses to 1 on mobile */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

/* Individual offer card */
.offer-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  text-align: center;
  position: relative;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
  overflow: hidden;
}
.offer-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-pink);
  box-shadow: var(--shadow-pink);
}

/* Featured card – extra prominence */
.offer-card--featured {
  border-color: var(--border-pink);
  background: linear-gradient(135deg, #2A1030 0%, #0F0F28 100%);
  box-shadow: 0 0 40px rgba(255,45,135,0.15);
}

/* Spins card – blue accent */
.offer-card--spins {
  border-color: var(--border-blue);
}
.offer-card--spins:hover { box-shadow: var(--shadow-blue); }

/* Small badge at top of card */
.offer-card-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--color-pink);
  color: white;
  font-size: var(--font-size-xs);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--border-radius-pill);
  white-space: nowrap;
}
.offer-card-badge--blue  { background: var(--color-blue); color: var(--bg-page); }
.offer-card-badge--pink  { background: var(--color-pink); }

/* Large emoji icon */
.offer-card-icon {
  font-size: 48px;
  margin-bottom: var(--space-md);
  display: block;
}

.offer-card-title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

/* Highlighted bonus amount display */
.offer-card-amount {
  font-size: clamp(var(--font-size-xl), 4vw, var(--font-size-3xl));
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}
.offer-card-amount small {
  font-size: 0.55em;
  -webkit-text-fill-color: var(--text-secondary);
}

/* Terms list inside offer card */
.offer-card-terms {
  text-align: left;
  margin-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.offer-card-terms li {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}


/* ================================================================
   16. OFFER DETAIL SECTIONS
   – Full-width detail block for each bonus type.
   ================================================================ */

.offer-detail-section {
  background: var(--bg-surface);
  border-radius: var(--border-radius-lg);
  padding: var(--space-3xl);
  margin: var(--space-2xl) 0;
  border: 1px solid var(--border-subtle);
}

/* Two-column grid: editorial content + terms sidebar */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-3xl);
  align-items: start;
  margin-top: var(--space-xl);
}

.detail-content h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--color-blue);
}
.detail-content h3:first-child { margin-top: 0; }


/* ================================================================
   17. CALCULATION BOX
   – Visual breakdown of bonus wagering maths.
   ================================================================ */

.calculation-box {
  background: rgba(255,45,135,0.07);
  border: 1px solid var(--border-pink);
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--font-size-sm);
}
.calc-label { color: var(--text-secondary); }
.calc-value { font-weight: 700; color: var(--text-primary); }

/* Total row – highlighted */
.calc-total {
  border-top: 1px solid var(--border-pink);
  padding-top: var(--space-sm);
  margin-top: var(--space-sm);
}
.calc-total .calc-value {
  color: var(--color-pink);
  font-size: var(--font-size-lg);
}


/* ================================================================
   18. STEPS LIST
   – Numbered how-to steps with circle indicators.
   ================================================================ */

.steps-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
  list-style: none;
  counter-reset: none;
}

.steps-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  font-size: var(--font-size-base);
  color: var(--text-primary);
  line-height: 1.6;
}

/* Numbered circle */
.step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-sm);
  font-weight: 800;
  margin-top: 2px;
}


/* ================================================================
   19. FREE SPINS GAMES GRID
   ================================================================ */

.fs-games-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

/* Individual game badge */
.fs-game-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: rgba(0,200,255,0.07);
  border: 1px solid var(--border-blue);
  border-radius: var(--border-radius-md);
  padding: var(--space-md) var(--space-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.fs-game-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}

.fs-game-icon { font-size: 32px; }

.fs-game-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fs-game-info strong { color: var(--text-primary); font-size: var(--font-size-base); }
.fs-game-info span   { color: var(--text-secondary); font-size: var(--font-size-sm); }


/* ================================================================
   20. TERMS CARD (aside sidebar)
   ================================================================ */

.detail-terms-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-pink);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  /* Sticky so terms remain visible while scrolling content */
  position: sticky;
  top: calc(var(--header-height) + var(--space-xl));
  box-shadow: 0 0 40px rgba(255,45,135,0.12);
}

/* Blue-accented terms card variant */
.detail-terms-card--blue {
  border-color: var(--border-blue);
  box-shadow: 0 0 40px rgba(0,200,255,0.12);
}

.terms-title {
  font-size: var(--font-size-md);
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}

/* Definition list for terms key-value pairs */
.terms-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.terms-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border-subtle);
  font-size: var(--font-size-sm);
}
.terms-row:last-child { border-bottom: none; }

.terms-row dt {
  color: var(--text-secondary);
  flex-shrink: 0;
}
.terms-row dd {
  text-align: right;
  color: var(--text-primary);
}
.terms-row dd strong { color: var(--color-pink); }


/* ================================================================
   21. COMPARISON TABLE
   – Desktop: standard table layout.
   – Mobile: each row becomes a card via data-label pseudo-elements.
   ================================================================ */

.table-section {
  /* Slightly different bg for visual separation */
  background: var(--bg-surface);
  border-radius: var(--border-radius-lg);
  padding: var(--space-3xl);
  margin: var(--space-2xl) 0;
  border: 1px solid var(--border-subtle);
}

/* Horizontal-scroll wrapper for wide tables on mid-size screens */
.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--border-radius-md);
}

/* Base table reset */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px; /* Prevents collapse before card layout kicks in */
}

/* Table header */
.comparison-table thead tr {
  background: var(--gradient-primary);
}
.comparison-table th {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.comparison-table th:first-child { border-radius: var(--border-radius-sm) 0 0 0; }
.comparison-table th:last-child  { border-radius: 0 var(--border-radius-sm) 0 0; }

/* Table body rows */
.comparison-table tbody tr {
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition-fast);
}
.comparison-table tbody tr:hover { background: rgba(255,255,255,0.03); }
.comparison-table tbody tr:last-child { border-bottom: none; }

/* Featured row highlight */
.table-row--featured {
  background: rgba(255, 45, 135, 0.05);
}

/* Table cells */
.comparison-table td {
  padding: var(--space-md) var(--space-lg);
  font-size: var(--font-size-sm);
  vertical-align: middle;
  color: var(--text-primary);
  line-height: 1.5;
}
.comparison-table td small { color: var(--text-secondary); }

/* Highlighted amount */
.table-highlight {
  font-size: var(--font-size-md);
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Status badges within table */
.table-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--border-radius-pill);
  font-size: var(--font-size-xs);
  font-weight: 700;
  white-space: nowrap;
}
.table-badge--green  { background: rgba(0,200,100,0.15); color: #00C864; border: 1px solid rgba(0,200,100,0.3); }
.table-badge--auto   { background: rgba(255,45,135,0.15); color: var(--color-pink); border: 1px solid var(--border-pink); }
.table-badge--manual { background: rgba(0,200,255,0.15); color: var(--color-blue); border: 1px solid var(--border-blue); }

.table-note {
  font-size: var(--font-size-xs);
  color: var(--text-secondary);
  margin-top: var(--space-md);
  font-style: italic;
}

/* Tips list styling */
.tips-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}
.tips-list li {
  padding: var(--space-sm) var(--space-md);
  background: rgba(255,255,255,0.03);
  border-radius: var(--border-radius-sm);
  border-left: 3px solid var(--color-pink);
  font-size: var(--font-size-sm);
  color: var(--text-primary);
}


/* ================================================================
   22. WHY SECTION – Feature Cards
   ================================================================ */

/* 3-column auto-fill grid, each card min 240px wide */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.feature-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-md);
  padding: var(--space-xl);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-pink);
  box-shadow: var(--shadow-pink);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: var(--space-md);
  display: block;
}

.feature-title {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--color-blue);
  margin-bottom: var(--space-sm);
}

.feature-card p {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}


/* ================================================================
   23. SLOTS GALLERY
   – Responsive grid of slot game thumbnail cards.
   ================================================================ */

.slots-section {
  /* Purple gradient background for variety */
  background: linear-gradient(135deg, rgba(123,47,255,0.07) 0%, rgba(0,200,255,0.05) 100%);
  border-radius: var(--border-radius-lg);
  padding: var(--space-3xl);
  margin: var(--space-2xl) 0;
}

/* Auto-fill grid – adapts columns to screen width */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

/* Individual slot card */
.slot-card {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.slot-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-pink);
}

.slot-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Image container with aspect ratio lock */
.slot-card-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.slot-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.slot-card:hover .slot-card-img { transform: scale(1.08); }

/* Hover overlay with play button */
.slot-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,45,135,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}
.slot-card:hover .slot-card-overlay { opacity: 1; }

.slot-play-btn {
  color: white;
  font-size: var(--font-size-md);
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Slot card title below the thumbnail */
.slot-card-title {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* CTA button below the grid */
.slots-cta {
  text-align: center;
  margin-top: var(--space-2xl);
}


/* ================================================================
   24. FAQ ACCORDION
   ================================================================ */

.faq-section {
  max-width: 860px;
}

.faq-list {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* Individual FAQ accordion item */
.faq-item {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}
.faq-item:hover { border-color: var(--border-pink); }

/* Question button – full-width, space-between layout */
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast), background var(--transition-fast);
}
.faq-question:hover { color: var(--color-pink); }
.faq-question[aria-expanded="true"] {
  color: var(--color-pink);
  background: rgba(255,45,135,0.06);
}

/* +/- icon that rotates when open */
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-lg);
  font-weight: 400;
  line-height: 1;
  transition: transform var(--transition-base);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

/* Answer panel – hidden by default, toggled via JS */
.faq-answer {
  padding: 0 var(--space-xl) var(--space-lg);
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.8;
  border-top: 1px solid var(--border-subtle);
}
.faq-answer[hidden] { display: none; }
.faq-answer p { margin-bottom: 0; }


/* ================================================================
   25. FINAL CTA SECTION
   ================================================================ */

.final-cta-section {
  padding-bottom: var(--space-4xl);
}

.final-cta-card {
  background: linear-gradient(135deg, rgba(255,45,135,0.12) 0%, rgba(0,200,255,0.10) 100%);
  border: 1px solid var(--border-pink);
  border-radius: var(--border-radius-xl);
  padding: var(--space-4xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  /* Subtle animated background gradient */
  background-size: 200% 200%;
  animation: bg-shift 8s ease-in-out infinite;
}
@keyframes bg-shift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

/* Decorative pink circle blur behind card */
.final-cta-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255,45,135,0.2) 0%, transparent 70%);
  pointer-events: none;
}
/* Blue circle blur */
.final-cta-card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(0,200,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-title {
  font-size: clamp(var(--font-size-xl), 4vw, var(--font-size-2xl));
  margin-bottom: var(--space-md);
}

.final-cta-text {
  font-size: var(--font-size-md);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto var(--space-xl);
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.final-cta-disclaimer {
  font-size: var(--font-size-xs);
  color: var(--text-secondary);
  opacity: 0.7;
}


/* ================================================================
   26. SITE FOOTER
   ================================================================ */

.site-footer {
  background: rgba(5, 5, 15, 0.95);
  border-top: 1px solid var(--border-subtle);
  /* Top gradient accent line */
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  padding: var(--space-4xl) 0 var(--space-2xl);
}

.footer-logo {
  margin-bottom: var(--space-md);
  filter: drop-shadow(0 0 8px rgba(255,45,135,0.3));
}

.footer-tagline {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer-nav-title {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: var(--space-md);
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.footer-nav-list a {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}
.footer-nav-list a:hover { color: var(--color-pink); }

.footer-provider-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.footer-provider-list li {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  padding-left: var(--space-sm);
  border-left: 2px solid var(--border-blue);
}

/* Legal / responsible gambling disclaimer at footer bottom */
.footer-legal {
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-xl) 0;
}
.footer-legal-text {
  font-size: var(--font-size-xs);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}
.footer-copyright {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.25);
}


/* ================================================================
   27. ANIMATIONS & TRANSITIONS
   – Entrance animations for elements when they scroll into view.
   – JS adds .is-visible class when element enters viewport.
   ================================================================ */

/* Elements start invisible and slightly below their final position */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delay for grid children (set via data-delay or nth-child) */
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }


/* ================================================================
   28. MEDIA QUERIES – TABLET (≤1024px)
   ================================================================ */
@media (max-width: 1024px) {

  /* Reduce container padding */
  .container { padding: 0 var(--space-lg); }

  /* Intro: stack to single column */
  .intro-grid {
    grid-template-columns: 1fr;
  }
  .intro-stats {
    position: static;
    grid-template-columns: repeat(4, 1fr);
    order: -1; /* Stats appear above text on tablet */
  }

  /* Offers: 2 columns then last wraps */
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .offer-card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
  }

  /* Detail: single column */
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .detail-terms-card {
    position: static;
    order: -1; /* Terms card shows first on tablet */
  }

  /* Footer: 2-column grid */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
  .footer-brand { grid-column: 1 / -1; }
}


/* ================================================================
   29. MEDIA QUERIES – MOBILE (≤768px)
   ================================================================ */
@media (max-width: 768px) {

  /* ── Header: hide desktop nav, show hamburger ── */
  .header-nav    { display: none; }
  .menu-toggle   { display: flex; }

  /* ── Hero: mobile adaptations ── */
  .hero-section  { max-height: none; }

  .hero-overlay  { padding: var(--space-md); }

  .hero-cta-card {
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--border-radius-lg);
    /* Remove float animation on mobile (battery / performance) */
    animation: none;
  }

  .hero-actions {
    flex-direction: column;
    gap: var(--space-sm);
  }
  .hero-actions .btn { width: 100%; }

  /* ── Offers: single column ── */
  .offers-grid {
    grid-template-columns: 1fr;
  }
  .offer-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  /* ── Intro stats: 2×2 grid ── */
  .intro-stats {
    grid-template-columns: 1fr 1fr;
  }

  /* ── FS games: single column ── */
  .fs-games-grid { grid-template-columns: 1fr; }

  /* ── Offer detail: remove background / padding for cleaner mobile ── */
  .offer-detail-section { padding: var(--space-xl) var(--space-md); }

  /* ── Table: card layout for mobile ──
    The table transforms from a standard layout into stacked cards.
    Each <td> shows its column label as a pseudo-element using data-label.
  ── */
  .comparison-table {
    min-width: 0; /* Remove min-width so it can stack */
    display: block;
  }
  .comparison-table thead {
    /* Hide the standard header row – labels come from data-label */
    display: none;
  }
  .comparison-table tbody {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
  }
  .comparison-table tr {
    display: block;
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--border-radius-md);
    padding: var(--space-md);
    overflow: hidden;
  }
  .table-row--featured {
    border-color: var(--border-pink);
  }
  .comparison-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--border-subtle);
    gap: var(--space-md);
    font-size: var(--font-size-sm);
  }
  .comparison-table td:last-child { border-bottom: none; }

  /* data-label pseudo-element – shows column name as left label */
  .comparison-table td[data-label]::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--text-secondary);
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
  }

  /* ── Table section ── */
  .table-section { padding: var(--space-xl) var(--space-md); }

  /* ── Slots: 2-column grid on mobile ── */
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ── Footer: single column ── */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    padding-top: var(--space-2xl);
  }
  .footer-brand { grid-column: auto; }

  /* ── Section padding reduction ── */
  .section { padding: var(--space-2xl) 0; }

  /* ── Container padding ── */
  .container { padding: 0 var(--space-md); }

  /* ── FAQ ── */
  .faq-question {
    padding: var(--space-md);
    font-size: var(--font-size-sm);
  }
  .faq-answer { padding: 0 var(--space-md) var(--space-md); }

  /* ── Final CTA ── */
  .final-cta-card { padding: var(--space-2xl) var(--space-lg); }
  .final-cta-actions { flex-direction: column; }
  .final-cta-actions .btn { width: 100%; }

  /* ── Slots section ── */
  .slots-section { padding: var(--space-2xl) var(--space-md); margin: var(--space-lg) 0; }
}


/* ================================================================
   30. MEDIA QUERIES – SMALL MOBILE (≤480px)
   ================================================================ */
@media (max-width: 480px) {

  /* ── Hero CTA card: full width ── */
  .hero-cta-card {
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--border-radius-md);
  }
  .hero-overlay { padding: var(--space-sm); }

  /* ── Slots: single column on very small screens ── */
  .slots-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); }

  /* ── Stat cards: 2×2 ── */
  .intro-stats { grid-template-columns: 1fr 1fr; }

  /* ── Feature grid: single column ── */
  .features-grid { grid-template-columns: 1fr; }

  /* ── Reduced font sizes ── */
  .hero-eur { font-size: var(--font-size-2xl); }
  .page-title { font-size: var(--font-size-xl); }

  /* ── Table section ── */
  .table-section { border-radius: var(--border-radius-md); }
}
