/* ============================================================
   STYLE.CSS – Yep Casino Bonus Code
   Domain: aachen-minicar.de | Language: DE | Geo: Germany
   Design: Dark cosmic luxury theme with gold accents
   ============================================================ */


/* ============================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   All colours, typography, spacing, and effects in one place.
   ============================================================ */
:root {
  /* === Colour Palette === */
  --clr-bg-primary:    #07091a;            /* Deep midnight – main page background */
  --clr-bg-secondary:  #0d1228;            /* Slightly lighter – alternate sections  */
  --clr-bg-card:       rgba(255,255,255,0.04);  /* Glassmorphism card fill */
  --clr-bg-card-hover: rgba(255,255,255,0.08);

  --clr-gold:       #ffd700;               /* Primary gold accent */
  --clr-gold-light: #ffe866;               /* Lighter gold for hover highlights */
  --clr-gold-dark:  #b8960c;              /* Deeper gold for shadows */
  --clr-gold-glow:  rgba(255,215,0,0.25); /* Soft gold glow */

  --clr-purple:  #8b5cf6;                 /* Purple – No Deposit badge */
  --clr-blue:    #3b82f6;                 /* Blue  – Freispiel badge */
  --clr-cyan:    #06b6d4;                 /* Cyan  – subtle highlights */

  --clr-text-primary:   #f0f4ff;           /* Near-white with slight blue tint */
  --clr-text-secondary: #8892b0;           /* Muted blue-grey for body copy */
  --clr-text-muted:     #4a5568;           /* Very muted for footer / small text */

  --clr-border:       rgba(255,215,0,0.15); /* Subtle gold border */
  --clr-border-hover: rgba(255,215,0,0.40); /* Brighter on hover */
  --clr-border-dim:   rgba(255,255,255,0.05);

  /* === Typography === */
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    'Open Sans',  -apple-system, BlinkMacSystemFont, sans-serif;

  --text-xs:   0.75rem;    /* 12 px */
  --text-sm:   0.875rem;   /* 14 px */
  --text-base: 1rem;       /* 16 px */
  --text-lg:   1.125rem;   /* 18 px */
  --text-xl:   1.25rem;    /* 20 px */
  --text-2xl:  1.5rem;     /* 24 px */
  --text-3xl:  1.875rem;   /* 30 px */
  --text-4xl:  2.25rem;    /* 36 px */
  --text-5xl:  3rem;       /* 48 px */

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

  /* === Layout === */
  --container-max:     1200px;
  --container-padding: 1.5rem;

  /* === Border radius === */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  /* === Shadows === */
  --shadow-sm:   0 2px  8px rgba(0,0,0,0.30);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.40);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.50);
  --shadow-gold: 0 0 20px rgba(255,215,0,0.25), 0 4px 20px rgba(0,0,0,0.40);
  --shadow-glow: 0 0 30px rgba(255,215,0,0.18);

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

  /* === Z-index layers === */
  --z-base:   0;
  --z-raised: 10;
  --z-header: 100;
  --z-toast:  400;
}


/* ============================================================
   2. RESET & BASE
   Normalise browser defaults; enforce border-box model.
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;  /* Prevent iOS auto-zoom */
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--clr-text-primary);
  background-color: var(--clr-bg-primary);
  /* Subtle three-tone radial cosmic gradients overlaid on the dark base */
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(139,92,246,0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(59,130,246,0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 80%, rgba(255,215,0,0.03) 0%, transparent 60%);
  min-height: 100vh;
  overflow-x: hidden;
}

img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Accessibility: skip-to-main link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: .5rem 1rem;
  background: var(--clr-gold);
  color: #000;
  font-weight: 700;
  z-index: var(--z-toast);
  transition: top var(--t-fast);
}
.skip-link:focus { top: 0; }


/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-text-primary);
}
p { color: var(--clr-text-secondary); line-height: 1.7; }
strong { color: var(--clr-text-primary); font-weight: 600; }
em { color: var(--clr-gold); font-style: normal; }

/* Utility: gold-coloured text */
.text--gold { color: var(--clr-gold); }

/* Inline text link (body copy references) */
.text-link {
  color: var(--clr-gold);
  text-decoration: underline;
  text-decoration-color: rgba(255,215,0,0.35);
  text-underline-offset: 3px;
  transition: color var(--t-fast), text-decoration-color var(--t-fast);
}
.text-link:hover, .text-link:focus-visible {
  color: var(--clr-gold-light);
  text-decoration-color: var(--clr-gold);
}


/* ============================================================
   4. CONTAINER – max-width centred layout wrapper
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}


/* ============================================================
   5. BUTTONS
   Variants: primary (gold fill), secondary (glass),
             gold, outline, large, small, mini, play.
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: .75rem 1.75rem;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}
.btn:focus-visible {
  outline: 2px solid var(--clr-gold);
  outline-offset: 3px;
}

/* Primary – solid gold gradient */
.btn--primary {
  background: linear-gradient(135deg, var(--clr-gold) 0%, #e6a800 100%);
  color: #000;
  box-shadow: 0 4px 15px rgba(255,215,0,0.30);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: linear-gradient(135deg, var(--clr-gold-light) 0%, var(--clr-gold) 100%);
  box-shadow: 0 6px 25px rgba(255,215,0,0.50);
  transform: translateY(-2px);
}

/* Secondary – glass outline */
.btn--secondary {
  background: rgba(255,255,255,0.08);
  color: var(--clr-text-primary);
  border-color: rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
}
.btn--secondary:hover, .btn--secondary:focus-visible {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-2px);
}

/* Gold – same as primary, exposed as explicit class */
.btn--gold {
  background: linear-gradient(135deg, #ffd700 0%, #e6a800 100%);
  color: #000;
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover, .btn--gold:focus-visible {
  background: linear-gradient(135deg, var(--clr-gold-light) 0%, var(--clr-gold) 100%);
  box-shadow: 0 8px 30px rgba(255,215,0,0.50);
  transform: translateY(-2px);
}

/* Outline – transparent with gold border */
.btn--outline {
  background: transparent;
  color: var(--clr-gold);
  border-color: var(--clr-gold);
}
.btn--outline:hover, .btn--outline:focus-visible {
  background: var(--clr-gold-glow);
  box-shadow: 0 0 15px rgba(255,215,0,0.20);
  transform: translateY(-2px);
}

/* Size modifiers */
.btn--large { padding: 1rem 2.5rem; font-size: var(--text-base); }
.btn--small { padding: .5rem 1.25rem; font-size: var(--text-xs); }
.btn--mini  { padding: .35rem .9rem;  font-size: .7rem; }

/* Slot overlay play button */
.btn--play {
  background: linear-gradient(135deg, var(--clr-gold) 0%, #e6a800 100%);
  color: #000;
  padding: .6rem 1.5rem;
  font-size: var(--text-sm);
  border-radius: var(--r-full);
  font-weight: 700;
}
.btn--play:hover { transform: scale(1.06); box-shadow: var(--shadow-gold); }


/* ============================================================
   6. BADGES – small status/category labels
   ============================================================ */
.badge {
  display: inline-block;
  padding: .25rem .75rem;
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.badge--purple {
  background: rgba(139,92,246,0.18);
  color: #c4b5fd;
  border: 1px solid rgba(139,92,246,0.40);
}
.badge--blue {
  background: rgba(59,130,246,0.18);
  color: #93c5fd;
  border: 1px solid rgba(59,130,246,0.40);
}
.badge--gold {
  background: rgba(255,215,0,0.14);
  color: var(--clr-gold);
  border: 1px solid rgba(255,215,0,0.38);
}


/* ============================================================
   7. HEADER – sticky, blurred, with logo, nav, CTA, hamburger
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(7,9,26,0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
  transition: background var(--t-base), box-shadow var(--t-base);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: var(--sp-6);
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  text-decoration: none;
}
.header__logo-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
}
.header__logo-img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
.header__logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--clr-text-primary);
}
.header__logo-accent { color: var(--clr-gold); }

/* Desktop nav */
.nav__list {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}
.nav__link {
  display: block;
  padding: .5rem .9rem;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--clr-text-secondary);
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav__link:hover, .nav__link:focus-visible {
  color: var(--clr-gold);
  background: rgba(255,215,0,0.07);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

/* Hamburger toggle (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  padding: 7px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.hamburger:hover { background: rgba(255,255,255,0.14); }
.hamburger__line {
  display: block;
  width: 100%; height: 2px;
  background: var(--clr-text-primary);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
}
/* Animated ×  */
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  background: rgba(7,9,26,0.98);
  border-top: 1px solid var(--clr-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.mobile-nav.is-open { display: block; }

.mobile-nav__list { padding: var(--sp-4) 0; }
.mobile-nav__link {
  display: block;
  padding: var(--sp-4) var(--container-padding);
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--clr-text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color var(--t-fast), background var(--t-fast);
}
.mobile-nav__link:hover, .mobile-nav__link:focus-visible {
  color: var(--clr-gold);
  background: rgba(255,215,0,0.05);
}
.mobile-nav__cta {
  color: var(--clr-gold) !important;
  font-weight: 700;
  text-align: center;
  margin: var(--sp-4) var(--container-padding);
  background: linear-gradient(135deg, rgba(255,215,0,0.14), rgba(255,215,0,0.04));
  border-radius: var(--r-md);
  border-bottom: none !important;
}


/* ============================================================
   8. HERO BANNER
   Full-width <picture> + centred glassmorphism CTA overlay.
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Banner fills the full hero area */
.hero__picture {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__image {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Dark tinted veil over the banner image for readability */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,9,26,0.65) 0%,
    rgba(7,9,26,0.30) 50%,
    rgba(7,9,26,0.65) 100%
  );
  z-index: 1;
}

/* Overlay container – centres the CTA block */
.hero__overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-16) var(--container-padding);
}

/* ── Semi-transparent glassmorphism CTA block ──
   Centred on desktop AND mobile via flexbox parent */
.hero__cta-block {
  background: rgba(7,9,26,0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,215,0,0.38);
  border-radius: var(--r-xl);
  padding: 2.75rem 3rem;
  max-width: 600px;
  width: 100%;
  text-align: center;
  box-shadow:
    0 0 60px rgba(255,215,0,0.08),
    0 20px 60px rgba(0,0,0,0.50),
    inset 0 1px 0 rgba(255,255,255,0.06);
  animation: heroFadeIn .8s ease forwards;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Eyebrow badge */
.hero__badge {
  display: inline-block;
  padding: .3rem 1.2rem;
  background: linear-gradient(135deg, rgba(255,215,0,0.20), rgba(255,215,0,0.08));
  border: 1px solid rgba(255,215,0,0.42);
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--clr-gold);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}

/* H1 */
.hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--sp-4);
  text-shadow: 0 2px 20px rgba(0,0,0,0.50);
}
.hero__title-accent {
  color: var(--clr-gold);
  display: block;
  text-shadow: 0 0 30px rgba(255,215,0,0.40);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(240,244,255,0.85);
  line-height: 1.5;
  margin-bottom: var(--sp-6);
}

/* Bonus code display */
.hero__code-box {
  background: rgba(255,215,0,0.05);
  border: 1px solid rgba(255,215,0,0.28);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  margin-bottom: var(--sp-6);
}
.hero__code-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--clr-text-secondary);
  text-transform: uppercase;
  letter-spacing: .10em;
  margin-bottom: var(--sp-2);
}
.hero__code-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.hero__code-value {
  font-family: 'Courier New', Courier, monospace;
  font-size: var(--text-3xl);
  font-weight: 900;
  color: var(--clr-gold);
  letter-spacing: .22em;
  /* Pulsing glow draws attention to the code */
  animation: codeGlow 2.5s ease-in-out infinite;
}
@keyframes codeGlow {
  0%, 100% { text-shadow: 0 0 15px rgba(255,215,0,0.30); }
  50%       { text-shadow: 0 0 32px rgba(255,215,0,0.65), 0 0 64px rgba(255,215,0,0.18); }
}
.hero__copy-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: .5rem 1.2rem;
  background: rgba(255,215,0,0.14);
  border: 1px solid rgba(255,215,0,0.40);
  border-radius: var(--r-sm);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--clr-gold);
  letter-spacing: .05em;
  transition: background var(--t-fast), transform var(--t-fast);
}
.hero__copy-btn:hover, .hero__copy-btn:focus-visible {
  background: rgba(255,215,0,0.25);
  transform: scale(1.05);
}

/* CTA button row */
.hero__buttons {
  display: flex;
  gap: var(--sp-3);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-5);
}

/* Micro trust indicators */
.hero__trust {
  display: flex;
  gap: var(--sp-5);
  justify-content: center;
  flex-wrap: wrap;
}
.hero__trust-item {
  font-size: var(--text-xs);
  color: rgba(240,244,255,0.60);
  font-weight: 500;
}


/* ============================================================
   9. BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: var(--sp-3) 0;
}
.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.breadcrumbs__link {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--text-sm);
  color: var(--clr-text-secondary);
  transition: color var(--t-fast);
}
.breadcrumbs__link:hover, .breadcrumbs__link:focus-visible { color: var(--clr-gold); }
.breadcrumbs__separator { color: var(--clr-text-muted); font-size: var(--text-sm); user-select: none; }
.breadcrumbs__current { font-size: var(--text-sm); color: var(--clr-gold); font-weight: 600; }


/* ============================================================
   10. SECTIONS – generic section spacing and alternate BG
   ============================================================ */
.section { padding: var(--sp-20) 0; position: relative; }

/* Alternate dark sections break up the visual monotony */
.section--dark {
  background: var(--clr-bg-secondary);
  border-top:    1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* Centred heading block used at the top of most sections */
.section__header {
  text-align: center;
  margin-bottom: var(--sp-12);
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.section__heading {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: 800;
  margin-bottom: var(--sp-4);
}
.section__subheading {
  font-size: var(--text-lg);
  color: var(--clr-text-secondary);
  line-height: 1.6;
}
.section__text {
  font-size: var(--text-base);
  color: var(--clr-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}

/* Centred CTA beneath section content */
.section__cta-center { text-align: center; margin-top: var(--sp-10); }


/* ============================================================
   11. INTRO – two-column grid: content + sticky security card
   ============================================================ */
.section--intro { /* keeps light background */ }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--sp-12);
  align-items: start;
}

/* Key-stats row beneath the intro copy */
.intro-highlights {
  display: flex;
  gap: var(--sp-5);
  margin: var(--sp-8) 0;
  flex-wrap: wrap;
}
.intro-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--sp-5) var(--sp-6);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  flex: 1;
  min-width: 120px;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.intro-highlight:hover {
  border-color: var(--clr-border-hover);
  box-shadow: var(--shadow-glow);
}
.intro-highlight__number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 900;
  color: var(--clr-gold);
  line-height: 1;
  margin-bottom: var(--sp-1);
}
.intro-highlight__label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--clr-text-secondary);
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: center;
}

/* Security card – sticky so it stays visible while user reads */
.security-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  position: sticky;
  top: 90px;
  box-shadow: var(--shadow-md);
}
.security-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--clr-border);
}
.security-card__list { display: flex; flex-direction: column; gap: var(--sp-5); }
.security-card__item { display: flex; gap: var(--sp-3); align-items: flex-start; }
.security-card__icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.security-card__item p { font-size: var(--text-sm); color: var(--clr-text-secondary); margin: 0; line-height: 1.4; }
.security-card__item strong { display: block; font-size: var(--text-sm); margin-bottom: 2px; }


/* ============================================================
   12. BONUS TYPES TABLE
   Responsive: scrollable wrapper on desktop,
   card-per-row layout on mobile (via data-label + CSS).
   ============================================================ */
.table-wrapper {
  overflow-x: auto;          /* horizontal scroll on narrow screens */
  -webkit-overflow-scrolling: touch;
  border-radius: var(--r-md);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-md);
}
.bonus-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--clr-bg-card);
  font-size: var(--text-sm);
}
/* Column headers */
.bonus-table thead th {
  padding: var(--sp-4) var(--sp-5);
  text-align: left;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--clr-text-secondary);
  text-transform: uppercase;
  letter-spacing: .08em;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--clr-border);
  white-space: nowrap;
}
/* Data rows */
.bonus-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background var(--t-fast);
}
.bonus-table tbody tr:last-child { border-bottom: none; }
.bonus-table tbody tr:hover { background: rgba(255,215,0,0.04); }
.bonus-table tbody td {
  padding: var(--sp-4) var(--sp-5);
  color: var(--clr-text-secondary);
  vertical-align: middle;
}


/* ============================================================
   13. SLOTS GRID – 6-per-row auto-fit grid of game cards
   ============================================================ */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--sp-5);
  margin-bottom: var(--sp-4);
}

.slot-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.slot-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: var(--clr-border-hover);
}

.slot-card__image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}
.slot-card__image {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.slot-card:hover .slot-card__image { transform: scale(1.08); }

/* Play button overlay – fades in on hover */
.slot-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,9,26,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-base);
}
.slot-card:hover .slot-card__overlay,
.slot-card:focus-within .slot-card__overlay { opacity: 1; }

.slot-card__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-3) var(--sp-4);
  gap: var(--sp-2);
}
.slot-card__name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--clr-text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}
.slot-card__badge {
  font-size: .65rem;
  font-weight: 700;
  color: var(--clr-gold);
  background: rgba(255,215,0,0.10);
  border: 1px solid rgba(255,215,0,0.24);
  padding: .15rem .5rem;
  border-radius: var(--r-full);
  white-space: nowrap;
  flex-shrink: 0;
}


/* ============================================================
   14. CHANNEL CARDS – Newsletter / VIP / Partners
   ============================================================ */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.channel-card {
  position: relative;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}
.channel-card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-border-hover);
  box-shadow: var(--shadow-md);
}

/* Featured (VIP) card – gold border + subtle gradient */
.channel-card--featured {
  border-color: rgba(255,215,0,0.40);
  background: linear-gradient(135deg, rgba(255,215,0,0.06) 0%, rgba(7,9,26,0.50) 100%);
  box-shadow: 0 0 30px rgba(255,215,0,0.08);
}
/* "Empfohlen" pill anchored to top-centre */
.channel-card__badge {
  position: absolute;
  top: -11px; left: 50%;
  transform: translateX(-50%);
  padding: .2rem 1rem;
  background: linear-gradient(135deg, var(--clr-gold) 0%, #e6a800 100%);
  color: #000;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  white-space: nowrap;
}

.channel-card__icon  { font-size: 2.5rem; margin-bottom: var(--sp-4); display: block; }
.channel-card__title { font-size: var(--text-xl); font-weight: 700; margin-bottom: var(--sp-3); color: var(--clr-text-primary); }
.channel-card__text  { font-size: var(--text-sm); color: var(--clr-text-secondary); line-height: 1.6; margin-bottom: var(--sp-6); }


/* ============================================================
   15. ACTIVATION STEPS – numbered vertical list with connector
   ============================================================ */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 750px;
  margin: 0 auto;
}
/* Vertical gold line connecting step circles */
.steps-list::before {
  content: '';
  position: absolute;
  left: 32px; top: 44px; bottom: 44px;
  width: 2px;
  background: linear-gradient(to bottom, var(--clr-gold), transparent);
  opacity: .28;
}

.step {
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
  padding: var(--sp-5) 0;
  position: relative;
}
.step__number {
  width: 64px; height: 64px; min-width: 64px;
  background: linear-gradient(135deg, rgba(255,215,0,0.14), rgba(255,215,0,0.04));
  border: 2px solid rgba(255,215,0,0.38);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-xl); font-weight: 900;
  color: var(--clr-gold);
  flex-shrink: 0;
  position: relative; z-index: 1;
  transition: background var(--t-base), box-shadow var(--t-base);
}
.step:hover .step__number {
  background: linear-gradient(135deg, rgba(255,215,0,0.24), rgba(255,215,0,0.10));
  box-shadow: 0 0 18px rgba(255,215,0,0.30);
}
.step__content { padding-top: var(--sp-3); flex: 1; }
.step__title { font-size: var(--text-lg); font-weight: 700; margin-bottom: var(--sp-2); }
.step__text  { font-size: var(--text-base); color: var(--clr-text-secondary); line-height: 1.6; }

/* Pro-tip callout box */
.activation-tip {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  background: rgba(255,215,0,0.05);
  border: 1px solid rgba(255,215,0,0.24);
  border-left: 4px solid var(--clr-gold);
  border-radius: var(--r-md);
  padding: var(--sp-5) var(--sp-6);
  margin-top: var(--sp-8);
  max-width: 750px; margin-left: auto; margin-right: auto;
}
.activation-tip__icon { font-size: 1.5rem; flex-shrink: 0; }
.activation-tip p { color: var(--clr-text-secondary); line-height: 1.6; margin: 0; }


/* ============================================================
   16. NO DEPOSIT BONUS SECTION
   Eye-catching two-column card with floating amount graphic.
   ============================================================ */
.section--no-deposit {
  background: linear-gradient(135deg, rgba(7,9,26,0.96) 0%, rgba(28,18,48,0.96) 100%);
  overflow: hidden;
}
/* Background glow behind the card */
.section--no-deposit::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,215,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.no-deposit-card {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--sp-10);
  align-items: center;
  background: var(--clr-bg-card);
  border: 1px solid rgba(255,215,0,0.30);
  border-radius: var(--r-xl);
  padding: var(--sp-10) var(--sp-12);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-gold);
}
/* Glowing gradient border effect */
.no-deposit-card::before {
  content: '';
  position: absolute; inset: -1px;
  background: linear-gradient(135deg, rgba(255,215,0,0.38), transparent 45%, rgba(255,215,0,0.18) 100%);
  border-radius: var(--r-xl);
  z-index: -1;
}

.no-deposit-card__label {
  display: inline-block;
  padding: .3rem 1rem;
  background: rgba(255,215,0,0.14);
  border: 1px solid rgba(255,215,0,0.32);
  border-radius: var(--r-full);
  font-size: var(--text-xs); font-weight: 700;
  color: var(--clr-gold);
  text-transform: uppercase; letter-spacing: .10em;
  margin-bottom: var(--sp-4);
}
.no-deposit-card__title {
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
  font-weight: 800;
  margin-bottom: var(--sp-4);
  line-height: 1.2;
}
.no-deposit-card__text {
  color: var(--clr-text-secondary);
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
}
.no-deposit-card__features {
  display: flex; flex-direction: column; gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}
.no-deposit-card__features li {
  color: var(--clr-text-secondary);
  font-size: var(--text-sm); font-weight: 500;
}
.no-deposit-card__buttons { display: flex; gap: var(--sp-3); flex-wrap: wrap; }

/* Decorative bonus amount graphic (right column) */
.bonus-showcase {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: var(--sp-3);
  padding: var(--sp-8);
  background: linear-gradient(135deg, rgba(255,215,0,0.10), rgba(255,215,0,0.03));
  border: 2px solid rgba(255,215,0,0.30);
  border-radius: var(--r-xl);
  text-align: center;
  box-shadow: 0 0 35px rgba(255,215,0,0.10);
}
.bonus-showcase__amount {
  font-family: var(--font-heading);
  font-size: 4.5rem; font-weight: 900;
  color: var(--clr-gold); line-height: 1;
  text-shadow: 0 0 30px rgba(255,215,0,0.50);
  animation: floatUpDown 3s ease-in-out infinite;
}
@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.bonus-showcase__text {
  font-family: var(--font-heading);
  font-size: var(--text-xl); font-weight: 700;
  color: var(--clr-text-primary);
  text-transform: uppercase; letter-spacing: .10em;
}
.bonus-showcase__code {
  font-family: 'Courier New', Courier, monospace;
  font-size: var(--text-lg); font-weight: 900;
  color: var(--clr-gold); letter-spacing: .14em;
  background: rgba(255,215,0,0.10);
  padding: .4rem 1.1rem;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,215,0,0.28);
}
.bonus-showcase__req {
  font-size: var(--text-sm); color: var(--clr-text-secondary); font-weight: 500;
}


/* ============================================================
   17. CONDITIONS GRID – 4-column info cards
   ============================================================ */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
.condition-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  text-align: center;
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}
.condition-card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-border-hover);
  box-shadow: var(--shadow-glow);
}
.condition-card__icon  { font-size: 2rem; display: block; margin-bottom: var(--sp-3); }
.condition-card__title {
  font-size: var(--text-sm); font-weight: 700;
  color: var(--clr-text-secondary);
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: var(--sp-2);
}
.condition-card__value {
  font-family: var(--font-heading);
  font-size: var(--text-3xl); font-weight: 900;
  color: var(--clr-gold); line-height: 1;
  margin-bottom: var(--sp-3);
}
.condition-card__text {
  font-size: var(--text-sm); color: var(--clr-text-muted); line-height: 1.5; margin: 0;
}


/* ============================================================
   18. TIPS GRID – 2×2 card grid
   ============================================================ */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}
.tip-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  position: relative; overflow: hidden;
  transition: transform var(--t-base), border-color var(--t-base);
}
.tip-card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-border-hover);
}
/* Large watermark number – purely decorative */
.tip-card__number {
  position: absolute; top: var(--sp-5); right: var(--sp-5);
  font-family: var(--font-heading); font-size: 4.5rem; font-weight: 900;
  color: rgba(255,215,0,0.05); line-height: 1; user-select: none;
}
.tip-card__title { font-size: var(--text-xl); font-weight: 700; color: var(--clr-gold); margin-bottom: var(--sp-3); }
.tip-card__text  { font-size: var(--text-sm); color: var(--clr-text-secondary); line-height: 1.7; margin: 0; }


/* ============================================================
   19. FAQ ACCORDION
   Accessible expand/collapse with ARIA attributes.
   ============================================================ */
.faq-list {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: var(--sp-3);
}
.faq-item {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-fast);
}
/* Open item gets a gold border */
.faq-item:has(.faq-item__question[aria-expanded="true"]) { border-color: rgba(255,215,0,0.40); }

.faq-item__question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  background: none; border: none; cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: var(--text-base); font-weight: 600;
  color: var(--clr-text-primary);
  transition: color var(--t-fast), background var(--t-fast);
}
.faq-item__question:hover, .faq-item__question:focus-visible {
  color: var(--clr-gold);
  background: rgba(255,215,0,0.04);
}
.faq-item__question:focus-visible { outline: 2px solid var(--clr-gold); outline-offset: -2px; }
.faq-item__question span { flex: 1; }
.faq-item__icon {
  flex-shrink: 0;
  color: var(--clr-text-secondary);
  transition: transform var(--t-base), color var(--t-base);
}
.faq-item__question[aria-expanded="true"] .faq-item__icon {
  transform: rotate(180deg);
  color: var(--clr-gold);
}
.faq-item__answer {
  padding: 0 var(--sp-6) var(--sp-5);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.faq-item__answer p {
  font-size: var(--text-base); color: var(--clr-text-secondary);
  line-height: 1.7; margin: 0; padding-top: var(--sp-4);
}
/* Toggled by JS via hidden attribute */
.faq-item__answer[hidden] { display: none; }


/* ============================================================
   20. PAYMENT METHODS GRID
   ============================================================ */
.payments-grid {
  display: flex; flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center; align-items: center;
  margin-bottom: var(--sp-6);
}
.payment-item {
  display: flex; align-items: center; justify-content: center;
  padding: var(--sp-3) var(--sp-5);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  min-width: 100px; height: 60px;
  transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.payment-item:hover {
  border-color: var(--clr-border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.payment-item img {
  max-height: 32px; width: auto;
  opacity: .82;
  filter: brightness(.9) saturate(.75);
  transition: opacity var(--t-fast), filter var(--t-fast);
}
.payment-item:hover img { opacity: 1; filter: brightness(1) saturate(1); }

.payments-note {
  text-align: center;
  font-size: var(--text-sm); color: var(--clr-text-muted);
}


/* ============================================================
   21. FOOTER
   ============================================================ */
.footer {
  background: rgba(4,6,14,0.96);
  border-top: 1px solid var(--clr-border);
  padding: var(--sp-16) 0 var(--sp-8);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-10);
}

/* Brand column */
.footer__brand { display: flex; flex-direction: column; gap: var(--sp-4); }
.footer__logo  { display: flex; align-items: center; gap: var(--sp-3); }
.footer__logo img { width: 42px; height: 42px; border-radius: var(--r-sm); }
.footer__logo-text { font-family: var(--font-heading); font-size: var(--text-xl); font-weight: 700; }
.footer__logo-text strong { color: var(--clr-gold); }
.footer__brand-text { font-size: var(--text-sm); color: var(--clr-text-muted); line-height: 1.6; }
.footer__trust { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.footer__trust-badge {
  padding: .2rem .6rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-full);
  font-size: var(--text-xs); color: var(--clr-text-muted);
}

/* Nav columns */
.footer__nav-title {
  font-size: var(--text-sm); font-weight: 700;
  color: var(--clr-text-primary);
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--clr-border);
}
.footer__nav-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__link { font-size: var(--text-sm); color: var(--clr-text-muted); transition: color var(--t-fast); }
.footer__link:hover, .footer__link:focus-visible { color: var(--clr-gold); }

/* Contact column */
.footer__contact li { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--text-sm); color: var(--clr-text-muted); }
.footer__contact-icon { font-size: 1rem; }
.footer__age-warning {
  display: flex; align-items: center; gap: var(--sp-2);
  margin-top: var(--sp-4);
  padding: var(--sp-3) var(--sp-4);
  background: rgba(248,113,113,0.08);
  border: 1px solid rgba(248,113,113,0.20);
  border-radius: var(--r-md);
  font-size: var(--text-sm); color: #f87171;
}
.footer__age-badge {
  font-family: var(--font-heading); font-size: var(--text-base); font-weight: 900;
  color: #f87171; border: 2px solid #f87171;
  border-radius: var(--r-sm); padding: 0 .4rem; line-height: 1.4; flex-shrink: 0;
}

/* Bottom bar */
.footer__bottom {
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: var(--sp-3);
}
.footer__disclaimer { font-size: var(--text-xs); color: var(--clr-text-muted); line-height: 1.6; max-width: 900px; }
.footer__copyright  { font-size: var(--text-xs); color: var(--clr-text-muted); }


/* ============================================================
   22. TOAST – "Code kopiert!" notification
   ============================================================ */
.toast {
  position: fixed;
  bottom: var(--sp-8); left: 50%;
  transform: translateX(-50%) translateY(16px);
  display: flex; align-items: center; gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-6);
  background: rgba(15,20,40,0.96);
  border: 1px solid rgba(255,215,0,0.40);
  border-radius: var(--r-full);
  box-shadow: var(--shadow-lg);
  z-index: var(--z-toast);
  backdrop-filter: blur(20px);
  opacity: 0;
  transition: opacity var(--t-base), transform var(--t-base);
  pointer-events: none;
}
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast__icon    { font-size: 1.1rem; }
.toast__message { font-family: var(--font-heading); font-size: var(--text-sm); font-weight: 700; color: var(--clr-gold); }


/* ============================================================
   23. BACK-TO-TOP BUTTON
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: var(--sp-8); right: var(--sp-8);
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(255,215,0,0.90), rgba(230,168,0,0.90));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #000;
  box-shadow: 0 4px 15px rgba(255,215,0,0.30);
  z-index: var(--z-raised);
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-base), transform var(--t-fast), box-shadow var(--t-fast);
}
.back-to-top:not([hidden]) { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(255,215,0,0.50); }


/* ============================================================
   24. SCROLL-IN ANIMATIONS
   JS adds .animate-on-scroll + .is-visible via IntersectionObserver.
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .60s ease, transform .60s ease;
}
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
/* Stagger helpers */
.anim-d1 { transition-delay: .10s; }
.anim-d2 { transition-delay: .20s; }
.anim-d3 { transition-delay: .30s; }
.anim-d4 { transition-delay: .40s; }


/* ============================================================
   25. MEDIA QUERIES
   Mobile-first: 1024 px tablet, 768 px mobile, 480 px small.
   ============================================================ */

/* ── Tablet (≤ 1024 px) ── */
@media (max-width: 1024px) {
  /* Intro: stack to single column */
  .intro-grid { grid-template-columns: 1fr; }
  .intro-grid__security { position: static; }

  /* Conditions: 2-column */
  .conditions-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer: 2-column */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .footer__brand { grid-column: 1 / -1; }
}

/* ── Mobile (≤ 768 px) ── */
@media (max-width: 768px) {

  :root { --container-padding: 1rem; }
  .section { padding: var(--sp-12) 0; }

  /* Header: hide desktop nav, show hamburger */
  .nav { display: none; }
  .hamburger { display: flex; }
  .header__actions .btn--small { display: none; }

  /* Hero */
  .hero { min-height: 420px; }
  .hero__cta-block { padding: 1.75rem 1.5rem; margin: 0 var(--sp-4); }
  .hero__buttons  { flex-direction: column; align-items: stretch; }
  .hero__trust    { flex-direction: column; gap: var(--sp-2); align-items: center; }
  .hero__overlay  { padding: var(--sp-12) var(--sp-4); }

  /* Intro highlights: wrap freely */
  .intro-highlights { gap: var(--sp-3); }
  .intro-highlight  { min-width: 100px; }

  /* ── RESPONSIVE TABLE ──
     Each <tr> becomes an independent labelled card.
     Hidden <thead> prevents duplicate labels.
     data-label on each <td> is shown via ::before pseudo-element. */
  .bonus-table thead { display: none; }
  .bonus-table tbody, .bonus-table tr { display: block; }
  .bonus-table tr {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--r-md);
    margin-bottom: var(--sp-4);
    padding: var(--sp-4);
  }
  .bonus-table tr:last-child { margin-bottom: 0; }
  .bonus-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--sp-3) var(--sp-2);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: var(--text-sm);
  }
  .bonus-table td:last-child { border-bottom: none; justify-content: flex-end; padding-top: var(--sp-4); }
  /* Inject cell label from data attribute */
  .bonus-table td[data-label]::before {
    content: attr(data-label);
    font-weight: 700; color: var(--clr-text-secondary);
    font-size: var(--text-xs); text-transform: uppercase;
    letter-spacing: .06em; flex-shrink: 0; margin-right: var(--sp-4);
  }
  /* No label for the action cell */
  .bonus-table td[data-label="Aktion"]::before { display: none; }

  /* Slots: 2 columns */
  .slots-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
  /* On touch, always show overlay */
  .slot-card__overlay { opacity: 1; background: rgba(7,9,26,0.40); }

  /* Channels: single column */
  .channels-grid { grid-template-columns: 1fr; gap: var(--sp-5); }

  /* Steps: smaller circle */
  .steps-list::before { left: 28px; }
  .step__number { width: 56px; height: 56px; min-width: 56px; font-size: var(--text-base); }

  /* No-deposit card: stack */
  .no-deposit-card {
    grid-template-columns: 1fr;
    padding: var(--sp-8) var(--sp-6);
    gap: var(--sp-6);
  }
  .no-deposit-card__right { display: flex; justify-content: center; }
  .bonus-showcase { padding: var(--sp-6); width: 100%; max-width: 260px; }
  .bonus-showcase__amount { font-size: 3.5rem; }

  /* Conditions: 2 columns */
  .conditions-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }

  /* Tips: single column */
  .tips-grid { grid-template-columns: 1fr; gap: var(--sp-4); }

  /* FAQ */
  .faq-item__question { padding: var(--sp-4); font-size: var(--text-sm); }

  /* Footer: single column */
  .footer__grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer__brand { grid-column: auto; }

  .back-to-top { bottom: var(--sp-5); right: var(--sp-5); }
}

/* ── Small mobile (≤ 480 px) ── */
@media (max-width: 480px) {
  .hero__cta-block { padding: 1.5rem 1.2rem; margin: 0 var(--sp-3); }
  .hero__title { font-size: 1.75rem; }
  .hero__code-value { font-size: var(--text-2xl); letter-spacing: .14em; }

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

  .conditions-grid { grid-template-columns: 1fr; }

  .intro-highlights { flex-direction: column; }
  .intro-highlight  { flex-direction: row; justify-content: flex-start; gap: var(--sp-4); }
}
