/* =========================================================
   Fiery Play Casino — Master Stylesheet
   Domain: fiery-play.de
   Design: Dark gold theme, flat/square buttons
   ========================================================= */

/* ---------------------------------------------------------
   1. CSS Custom Properties (Design Tokens)
   --------------------------------------------------------- */
:root {
  --color-bg:        #0b0b1d;
  --color-surface:   #141428;
  --color-surface2:  #1d1d3a;
  --color-border:    rgba(255, 215, 0, 0.28);
  --color-accent:    #FFD700;
  --color-accent-dim: rgba(255, 215, 0, 0.15);
  --color-accent-hover: #ffe84d;
  --color-text:      #e8e8f0;
  --color-text-muted: #9090b0;
  --color-text-dark: #0b0b1d;
  --color-success:   #2ecc71;
  --color-danger:    #e74c3c;

  --radius-btn: 4px;
  --radius-card: 8px;
  --radius-img: 10px;

  --shadow-gold: 0 0 18px rgba(255, 215, 0, 0.18);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.45);

  --header-bg: rgba(11, 11, 29, 0.97);
  --header-height: 68px;

  --slots-gap: 16px;

  --font-main: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-heading: 'Inter', 'Segoe UI', system-ui, sans-serif;

  --transition: 0.22s ease;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden; /* iOS: scroll containment must be on html, not only body */
  max-width: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-main);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100%;
}

/* Main column: clip any stray overflow from tables, transforms, etc. */
.page-content {
  overflow-x: hidden;
  max-width: 100%;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover, a:focus {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--color-accent);
}

/* ---------------------------------------------------------
   3. Typography Scale
   --------------------------------------------------------- */
h1 { font-size: clamp(1.75rem, 4vw, 2.6rem); font-weight: 800; }
h2 { font-size: clamp(1.35rem, 3vw, 1.9rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { margin-bottom: 0.9rem; }

/* ---------------------------------------------------------
   4. Layout Utilities
   --------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.25rem;
  min-width: 0; /* prevents flex/grid children from forcing wider than viewport */
}

.section {
  padding-block: 4rem;
}

.section--alt {
  background-color: var(--color-surface);
}

.section--alt2 {
  background-color: var(--color-surface2);
}

/* Section header with right-side accent bar */
.section-heading {
  border-right: 4px solid var(--color-accent);
  padding-right: 1rem;
  margin-bottom: 2rem;
  text-align: right;
}

/* Left-aligned variant for some sections */
.section-heading--left {
  border-right: none;
  border-left: 4px solid var(--color-accent);
  padding-right: 0;
  padding-left: 1rem;
  text-align: left;
}

.text-center { text-align: center; }
.text-accent  { color: var(--color-accent); }
.text-muted   { color: var(--color-text-muted); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------------------------------------------------------
   5. Buttons
   --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-btn);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover, .btn:focus {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

/* Primary gold button */
.btn--primary {
  background: var(--color-accent);
  color: var(--color-text-dark);
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.35);
}

.btn--primary:hover, .btn--primary:focus {
  background: var(--color-accent-hover);
  box-shadow: 0 6px 24px rgba(255, 215, 0, 0.5);
  color: var(--color-text-dark);
}

/* Outline button */
.btn--outline {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.btn--outline:hover, .btn--outline:focus {
  background: var(--color-accent-dim);
  color: var(--color-accent-hover);
}

/* Large CTA */
.btn--lg {
  padding: 1rem 2.75rem;
  font-size: 1.125rem;
}

/* Full width */
.btn--full {
  width: 100%;
}

/* CTA row wrapper */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-block: 2rem;
}

/* ---------------------------------------------------------
   6. Header / Navigation
   --------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  max-width: 100%;
  background: var(--header-bg);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  height: var(--header-height);
  overflow-x: hidden; /* nav links must not widen the viewport on narrow tablets */
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
  min-width: 0; /* allow flex children to shrink inside fixed header */
  width: 100%;
}

.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.site-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

/* Navigation */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-list a {
  display: block;
  padding: 0.45rem 0.85rem;
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-btn);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}

.nav-list a:hover, .nav-list a:focus {
  color: var(--color-accent);
  background: var(--color-accent-dim);
  text-decoration: none;
}

.header-cta {
  flex-shrink: 0;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-btn);
  background: transparent;
  border: 1px solid var(--color-border);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Page offset for fixed header */
.page-content {
  padding-top: var(--header-height);
}

/* ---------------------------------------------------------
   7. Hero / Banner
   --------------------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,11,29,0.45) 0%,
    rgba(11,11,29,0.68) 60%,
    rgba(11,11,29,0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 1.25rem;
  max-width: 760px;
}

.hero-badge {
  display: inline-block;
  background: var(--color-accent-dim);
  border: 1px solid var(--color-border);
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-btn);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
  margin-bottom: 1rem;
}

.hero h1 .accent {
  color: var(--color-accent);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(232,232,240,0.88);
  margin-bottom: 2rem;
  max-width: 580px;
  margin-inline: auto;
}

/* Hero stats bar */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.hero-stat {
  text-align: center;
}

.hero-stat__number {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.hero-stat__label {
  display: block;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}

/* ---------------------------------------------------------
   8. Feature Cards (Why play here)
   --------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--color-surface2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.5rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
  border-color: var(--color-accent);
}

.feature-card__icon {
  font-size: 2rem;
  margin-bottom: 0.9rem;
  display: block;
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ---------------------------------------------------------
   9. Slots Grid
   --------------------------------------------------------- */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--slots-gap);
}

.slot-item {
  position: relative;
  border-radius: var(--radius-img);
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.slot-item:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-gold);
}

.slot-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.slot-item:hover img {
  transform: scale(1.08);
}

.slot-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,11,29,0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0.75rem;
}

.slot-item:hover .slot-item__overlay {
  opacity: 1;
}

.slot-item__overlay .btn {
  font-size: 0.75rem;
  padding: 0.4rem 1rem;
}

/* ---------------------------------------------------------
   10. Bonus Cards
   --------------------------------------------------------- */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.bonus-card {
  background: var(--color-surface2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
}

.bonus-card:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.bonus-card__type {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.bonus-card__amount {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.35rem;
  line-height: 1;
}

.bonus-card__desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.bonus-card__terms {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

/* ---------------------------------------------------------
   11. Spielangebot Table
   --------------------------------------------------------- */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.data-table thead {
  background: var(--color-surface2);
}

.data-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 700;
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-border);
  white-space: nowrap;
}

.data-table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.data-table tbody tr:hover td {
  background: var(--color-accent-dim);
}

.data-table .count {
  color: var(--color-accent);
  font-weight: 700;
}

/* ---------------------------------------------------------
   12. Provider Logos
   --------------------------------------------------------- */
.providers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.provider-tag {
  background: var(--color-surface2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-btn);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.provider-tag:hover {
  background: var(--color-accent-dim);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* ---------------------------------------------------------
   13. Payment Section
   --------------------------------------------------------- */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 1rem;
}

.payment-item {
  background: var(--color-surface2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.payment-item:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-gold);
}

.payment-item img {
  max-height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.9) saturate(0.8);
  transition: filter var(--transition);
}

.payment-item:hover img {
  filter: brightness(1) saturate(1);
}

/* Payment text labels (fallback) */
.payment-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-align: center;
}

/* ---------------------------------------------------------
   14. Info / Security Section
   --------------------------------------------------------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-card__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: var(--color-accent-dim);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.info-card__body h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.info-card__body p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ---------------------------------------------------------
   15. Intro / About section with side image
   --------------------------------------------------------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-section__img {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.split-section__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 420px;
}

/* Bullet list with accent dots */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.93rem;
  color: var(--color-text);
}

.check-list li::before {
  content: '✦';
  color: var(--color-accent);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.3rem;
}

/* ---------------------------------------------------------
   16. Footer
   --------------------------------------------------------- */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding-block: 3rem 1.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  max-width: 340px;
  line-height: 1.6;
  margin: 0;
}

.footer-links-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a,
.footer-links .footer-legal-text {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
  text-decoration: none;
}

.footer-links a:hover, .footer-links a:focus {
  color: var(--color-accent);
}

/* Footer payment logos */
.footer-payments {
  margin-bottom: 2rem;
}

.footer-payments h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.footer-pay-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.footer-pay-item {
  background: var(--color-surface2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-btn);
  padding: 0.4rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  min-width: 60px;
}

.footer-pay-item img {
  max-height: 24px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.85) grayscale(0.2);
  transition: filter var(--transition);
}

.footer-pay-item:hover img {
  filter: brightness(1) grayscale(0);
}

/* Footer bottom bar */
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  max-width: 600px;
  text-align: center;
  line-height: 1.5;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--color-text-muted);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

/* ---------------------------------------------------------
   17. Cookie Consent Banner
   --------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  z-index: 9999;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
  padding: 1rem 1rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner.is-hidden {
  transform: translateY(100%);
  pointer-events: none;
}

.cookie-banner__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.85rem;
  align-items: stretch;
  justify-content: flex-start;
}

@media (min-width: 600px) {
  .cookie-banner__inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
  }
}

.cookie-banner__text {
  flex: 1 1 auto;
  min-width: 0; /* critical: prevents flex item from forcing horizontal page scroll */
  font-size: 0.87rem;
  color: var(--color-text-muted);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.cookie-banner__text a {
  color: var(--color-accent);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

@media (max-width: 599px) {
  .cookie-banner__actions {
    flex-direction: column;
    width: 100%;
  }

  .cookie-banner__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ---------------------------------------------------------
   18. Back to Top Button
   --------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  color: var(--color-text-dark);
  border: none;
  border-radius: var(--radius-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(255,215,0,0.4);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  pointer-events: none;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--color-accent-hover);
}

/* ---------------------------------------------------------
   19. Breadcrumbs (policy pages)
   --------------------------------------------------------- */
.breadcrumbs {
  padding: 1rem 0 0.5rem;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.breadcrumb-list li + li::before {
  content: '›';
  color: var(--color-text-muted);
}

.breadcrumb-list a {
  color: var(--color-accent);
  text-decoration: none;
}

.breadcrumb-list a:hover {
  text-decoration: underline;
}

.breadcrumb-list [aria-current="page"] {
  color: var(--color-text);
}

/* ---------------------------------------------------------
   20. Policy Page Layout
   --------------------------------------------------------- */
.policy-page {
  max-width: 860px;
  margin-inline: auto;
  padding-block: 3rem 5rem;
}

.policy-page h1 {
  margin-bottom: 0.5rem;
}

.policy-page .last-updated {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.policy-page h2 {
  font-size: 1.25rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-accent);
  border-left: 3px solid var(--color-accent);
  padding-left: 0.75rem;
}

.policy-page h3 {
  font-size: 1.05rem;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.policy-page p, .policy-page li {
  font-size: 0.92rem;
  color: var(--color-text);
  line-height: 1.75;
}

.policy-page ul, .policy-page ol {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-page ul li, .policy-page ol li {
  margin-bottom: 0.4rem;
}

/* ---------------------------------------------------------
   21. Divider / Separator
   --------------------------------------------------------- */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
  margin-block: 1rem;
}

/* Gold glow divider */
.divider--glow {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0.35;
  margin-block: 0;
}

/* ---------------------------------------------------------
   22. Highlight / Callout Boxes
   --------------------------------------------------------- */
.callout {
  background: var(--color-accent-dim);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-btn);
  padding: 1.25rem 1.5rem;
  font-size: 0.9rem;
  margin-block: 1.5rem;
}

.callout strong {
  color: var(--color-accent);
}

/* ---------------------------------------------------------
   23. Responsive: Tablet (≤ 900px)
   --------------------------------------------------------- */
@media (max-width: 900px) {
  .slots-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .split-section__img {
    order: -1;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

/* ---------------------------------------------------------
   24. Responsive: Tablet / mobile nav (≤ 992px)
   Hamburger earlier — horizontal nav + logo + CTA overflows ~700–900px viewports
   --------------------------------------------------------- */
@media (max-width: 992px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    background: var(--header-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 1.25rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding var(--transition);
    padding-block: 0;
  }

  .site-nav.is-open {
    max-height: 400px;
    padding-block: 1rem;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .nav-list a {
    padding: 0.65rem 0.5rem;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
  }

  .header-cta {
    display: none;
  }
}

/* ---------------------------------------------------------
   25. Responsive: Mobile (≤ 680px)
   --------------------------------------------------------- */
@media (max-width: 680px) {
  /* Long German CTA labels must not force horizontal scroll */
  .btn {
    white-space: normal;
    text-align: center;
  }

  .slots-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  /* Decorative rows use inline style repeat(6,1fr) — match main grid density on phones */
  .slots-grid[style*="repeat(6"] {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .hero {
    min-height: 420px;
  }

  .hero-stats {
    gap: 1rem;
  }

  .hero-stat__number {
    font-size: 1.3rem;
  }

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

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

  .section {
    padding-block: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-disclaimer {
    text-align: center;
  }

  .data-table th,
  .data-table td {
    padding: 0.65rem 0.85rem;
    font-size: 0.82rem;
  }

  .back-to-top {
    bottom: 5rem;
    right: 1rem;
  }
}

/* ---------------------------------------------------------
   25. Responsive: Small Mobile (≤ 400px)
   --------------------------------------------------------- */
@media (max-width: 400px) {
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .slots-grid[style*="repeat(6"] {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

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

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

  .btn--lg {
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
  }
}

/* ---------------------------------------------------------
   26. Focus visible styles (accessibility)
   --------------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------------------------------------------------------
   27. Scrollbar styling (Webkit)
   --------------------------------------------------------- */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-surface);
}
::-webkit-scrollbar-thumb {
  background: var(--color-surface2);
  border-radius: 4px;
  border: 1px solid var(--color-border);
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255,215,0,0.3);
}

/* ---------------------------------------------------------
   28. Print styles
   --------------------------------------------------------- */
@media print {
  .site-header, .cookie-banner, .back-to-top {
    display: none;
  }
  .page-content {
    padding-top: 0;
  }
  body {
    background: #fff;
    color: #000;
  }
}
