/* ================================================================
   YEP CASINO REVIEW – MAIN STYLESHEET
   Domain: steinteppiche-tbt.de
   Language: German | Geo: Germany
   ================================================================ */

/* ================================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ================================================================ */
:root {
  /* --- Colour Palette --- */
  --color-bg-primary:    #080b18;       /* Deep dark background */
  --color-bg-secondary:  #0f1326;       /* Slightly lighter panels */
  --color-bg-card:       #131829;       /* Card backgrounds */
  --color-bg-card-hover: #1a2038;       /* Card hover state */
  --color-bg-glass:      rgba(255,255,255,0.06); /* Glassmorphism base */

  --color-gold:          #f5a623;       /* Primary gold accent */
  --color-gold-light:    #ffd166;       /* Light gold / highlights */
  --color-gold-dark:     #d48b18;       /* Dark gold / pressed state */

  --color-green:         #00c853;       /* CTA / positive indicators */
  --color-green-light:   #69f0ae;       /* Light green */

  --color-purple:        #7c4dff;       /* Secondary accent */
  --color-blue:          #2979ff;       /* Info / links */

  --color-text-primary:  #f0f2ff;       /* Main body text */
  --color-text-secondary:#9aa5c4;       /* Muted text / labels */
  --color-text-muted:    #5e6887;       /* Very muted text */

  --color-border:        rgba(255,255,255,0.1);  /* Subtle borders */
  --color-border-gold:   rgba(245,166,35,0.3);   /* Gold-tinted borders */

  /* --- Gradients --- */
  --gradient-gold:  linear-gradient(135deg, #f5a623 0%, #ffd166 50%, #f5a623 100%);
  --gradient-hero:  linear-gradient(135deg, #080b18 0%, #0f1a3a 50%, #1a0d35 100%);
  --gradient-card:  linear-gradient(145deg, #131829 0%, #1a2040 100%);
  --gradient-green: linear-gradient(135deg, #00c853 0%, #69f0ae 100%);
  --gradient-glow:  radial-gradient(ellipse at center, rgba(245,166,35,0.15) 0%, transparent 70%);

  /* --- Typography --- */
  --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;

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

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

  /* --- Shadows --- */
  --shadow-card:  0 8px 32px rgba(0,0,0,0.4);
  --shadow-gold:  0 4px 24px rgba(245,166,35,0.3);
  --shadow-green: 0 4px 20px rgba(0,200,83,0.4);

  /* --- Transitions --- */
  --transition-fast:   150ms ease;
  --transition-normal: 280ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:   450ms cubic-bezier(0.4, 0, 0.2, 1);

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

/* ================================================================
   2. RESET & BASE STYLES
   ================================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Enable smooth scrolling sitewide (respects user preference) */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

html {
  font-size: var(--font-size-base);
  /* Allow pinch-to-zoom on touch devices */
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  line-height: var(--line-height-base);
  overflow-x: hidden;
  /* Subtle background pattern for depth */
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(124, 77, 255, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(41, 121, 255, 0.08) 0%, transparent 50%);
}

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

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

a:hover {
  color: var(--color-gold-light);
}

ul, ol {
  list-style: none;
}

/* ================================================================
   3. ACCESSIBILITY UTILITIES
   ================================================================ */

/* Skip to main content link (visible on focus for keyboard users) */
.skip-link {
  position: fixed;
  top: -100px;
  left: var(--space-md);
  z-index: 9999;
  background: var(--color-gold);
  color: #000;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-weight: 700;
  transition: top var(--transition-fast);
}
.skip-link:focus {
  top: var(--space-md);
}

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

/* ================================================================
   4. LAYOUT CONTAINER
   ================================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--space-xl); }
}

/* ================================================================
   5. BUTTON SYSTEM
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

/* Shimmer animation on hover for all buttons */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.12) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn:hover::after {
  transform: translateX(100%);
}

/* Primary (green) button */
.btn-primary {
  background: var(--gradient-green);
  color: #000;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0,200,83,0.55);
  color: #000;
}
.btn-primary:active { transform: translateY(0); }

/* Gold button */
.btn-gold {
  background: var(--gradient-gold);
  color: #000;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(245,166,35,0.5);
  color: #000;
}
.btn-gold:active { transform: translateY(0); }

/* Outline button */
.btn-outline {
  background: transparent;
  color: var(--color-text-primary);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(245,166,35,0.08);
  transform: translateY(-2px);
}

/* Secondary button */
.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.14);
  color: var(--color-text-primary);
  transform: translateY(-2px);
}

/* Size variants */
.btn-large  { padding: 14px 32px; font-size: 1rem; }
.btn-xlarge { padding: 16px 40px; font-size: 1.1rem; }

/* Table inline button */
.btn-table {
  padding: 7px 16px;
  font-size: 0.8rem;
  background: var(--gradient-gold);
  color: #000;
  border-radius: var(--radius-full);
}
.btn-table:hover {
  transform: translateY(-1px);
  color: #000;
  box-shadow: var(--shadow-gold);
}

/* Slot play button */
.btn-slot-play {
  padding: 8px 20px;
  font-size: 0.85rem;
  background: var(--gradient-gold);
  color: #000;
  border-radius: var(--radius-full);
}

/* Category button */
.btn-category {
  padding: 10px 22px;
  font-size: 0.88rem;
  background: transparent;
  color: var(--color-gold);
  border: 1.5px solid var(--color-gold);
  border-radius: var(--radius-full);
}
.btn-category:hover {
  background: var(--color-gold);
  color: #000;
  transform: translateY(-2px);
}

/* App store buttons */
.btn-app {
  padding: 10px 20px;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.08);
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.btn-app:hover {
  background: rgba(255,255,255,0.14);
  color: var(--color-text-primary);
}

/* Hero-size buttons */
.btn-hero {
  padding: 10px 22px;
  font-size: 0.92rem;
}

/* ================================================================
   6. HEADER
   ================================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  /* Glassmorphism header */
  background: rgba(8, 11, 24, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  height: var(--header-height);
}

/* Logo */
.header-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Desktop nav */
.header-nav {
  display: none;
  flex: 1;
}
@media (min-width: 992px) {
  .header-nav { display: block; }
}

.header-nav ul {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.header-nav a {
  color: var(--color-text-secondary);
  font-size: 0.93rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
  padding-bottom: 2px;
}
/* Animated underline on nav items */
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
  transition: width var(--transition-normal);
}
.header-nav a:hover {
  color: var(--color-text-primary);
}
.header-nav a:hover::after {
  width: 100%;
}

/* Desktop CTA in header */
.header-cta {
  margin-left: auto;
  display: none;
}
@media (min-width: 992px) {
  .header-cta { display: inline-flex; }
}

/* Hamburger button */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: var(--space-sm);
  margin-left: auto;
  transition: border-color var(--transition-fast);
}
.hamburger:hover {
  border-color: var(--color-gold);
}
@media (min-width: 992px) {
  .hamburger { display: none; }
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

/* Hamburger active (X) state */
.hamburger.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile dropdown menu */
.mobile-menu {
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: rgba(8, 11, 24, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-md);
  transform: translateY(-110%);
  opacity: 0;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
  pointer-events: none;
}
.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 992px) {
  .mobile-menu { display: none; }
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.mobile-nav-link {
  display: block;
  padding: var(--space-sm) var(--space-md);
  color: var(--color-text-secondary);
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}
.mobile-nav-link:hover {
  background: rgba(255,255,255,0.06);
  color: var(--color-text-primary);
}

.mobile-cta {
  width: 100%;
  margin-top: var(--space-sm);
}

/* ================================================================
   7. HERO BANNER
   ================================================================ */
.hero-banner {
  position: relative;
  width: 100%;
  /* Minimum height so banner looks good even on slow loads */
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* The full-bleed banner image */
.hero-picture {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Dark gradient overlay on the image for readability */
.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(8,11,24,0.35) 0%,
    rgba(8,11,24,0.15) 40%,
    rgba(8,11,24,0.55) 100%
  );
}

/* Semi-transparent CTA overlay – centred on desktop and mobile */
.hero-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: var(--space-md) var(--space-md);
  /* Ensure overlay is visually centred over the banner */
  min-height: inherit;
}

.hero-overlay-inner {
  /* Semi-transparent glass card centred over the banner */
  background: rgba(8, 11, 24, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: var(--radius-xl);
  padding: 16px 28px;
  text-align: center;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
  /* Gold glow behind card */
  position: relative;
}

.hero-overlay-inner::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-xl) + 2px);
  background: var(--gradient-gold);
  z-index: -1;
  opacity: 0.3;
  filter: blur(12px);
}

.hero-badge {
  display: inline-block;
  background: var(--gradient-gold);
  color: #000;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.hero-title {
  font-size: clamp(1.1rem, 3.5vw, 1.7rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

/* Animated gradient text */
.gradient-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: textShine 3s linear infinite;
}
@keyframes textShine {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-subtitle {
  font-size: clamp(0.82rem, 2vw, 0.97rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}
.hero-subtitle strong {
  color: var(--color-gold-light);
}

.hero-cta-group {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.hero-disclaimer {
  font-size: 0.7rem;
  color: var(--color-text-muted);
}

/* ================================================================
   8. BREADCRUMBS
   ================================================================ */
.breadcrumbs {
  background: var(--color-bg-secondary);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-sm) 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 0.82rem;
}

.breadcrumb-item a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}
.breadcrumb-item a:hover {
  color: var(--color-gold);
}

.breadcrumb-separator {
  color: var(--color-text-muted);
}

.breadcrumb-current {
  color: var(--color-gold);
  font-weight: 600;
}

/* ================================================================
   9. SECTION DEFAULTS
   ================================================================ */
section {
  padding: var(--space-2xl) 0;
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  margin-bottom: var(--space-md);
}

.title-accent {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
}

.subsection-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-text-primary);
}

/* ================================================================
   10. RATING OVERVIEW CARD
   ================================================================ */
.section-overview {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.rating-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card), var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

/* Gold glow in corner */
.rating-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.rating-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

.rating-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-wrap: wrap;
}

.star {
  font-size: 1.4rem;
  color: var(--color-text-muted);
  line-height: 1;
}
.star.filled { color: var(--color-gold); }
.star.half {
  /* Half-star via clip-path trick */
  background: linear-gradient(to right, var(--color-gold) 50%, var(--color-text-muted) 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rating-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-left: var(--space-xs);
}

/* 6-column highlights grid */
.rating-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

@media (min-width: 576px) {
  .rating-highlights { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 992px) {
  .rating-highlights { grid-template-columns: repeat(6, 1fr); }
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}
.highlight-item:hover {
  background: rgba(255,255,255,0.07);
}

.highlight-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.highlight-item strong {
  display: block;
  font-size: 0.78rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.highlight-item span {
  font-size: 0.88rem;
  color: var(--color-text-primary);
  font-weight: 500;
}

.rating-cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

/* ================================================================
   11. INTRO / ABOUT SECTION
   ================================================================ */
.section-intro {
  background: var(--color-bg-secondary);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 992px) {
  .intro-grid { grid-template-columns: 1fr 1fr; }
}

.intro-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.intro-text p {
  color: var(--color-text-secondary);
  font-size: 0.97rem;
}

.intro-text strong {
  color: var(--color-text-primary);
}

/* 4-feature grid */
.intro-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.feature-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-normal);
}

.feature-card:hover {
  border-color: var(--color-border-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.feature-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--color-gold-light);
}

.feature-card p {
  font-size: 0.83rem;
  color: var(--color-text-secondary);
}

/* ================================================================
   12. BONUS SECTION
   ================================================================ */
.section-bonuses {
  background: var(--color-bg-primary);
  position: relative;
  overflow: hidden;
}

/* Decorative glow behind section */
.section-bonuses::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(245,166,35,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Promo banner at top of bonus section */
.bonus-promo-banner {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(245,166,35,0.12) 0%, rgba(245,166,35,0.04) 100%);
  border: 1.5px solid var(--color-border-gold);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.bonus-promo-banner::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(245,166,35,0.2), transparent 70%);
  pointer-events: none;
}

.promo-badge-wrap {
  flex-shrink: 0;
}

.promo-badge {
  display: inline-block;
  background: var(--gradient-gold);
  color: #000;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  writing-mode: horizontal-tb;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,166,35,0.4); }
  50%       { box-shadow: 0 0 0 8px rgba(245,166,35,0); }
}

.promo-content {
  flex: 1;
  min-width: 200px;
}

.promo-content h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.promo-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-gold);
  margin-bottom: 4px;
}

.promo-detail {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

/* --- BONUS TABLE --- */
/* Wrapper makes table horizontally scrollable on very small screens */
.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  margin-bottom: var(--space-xl);
  /* Indicate scrollability to user via subtle shadow */
  box-shadow: inset -8px 0 12px -8px rgba(0,0,0,0.2);
}

.bonus-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--gradient-card);
  min-width: 600px;
}

.bonus-table thead tr {
  background: rgba(245,166,35,0.1);
  border-bottom: 2px solid var(--color-border-gold);
}

.bonus-table th {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-gold);
  white-space: nowrap;
}

.bonus-table td {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--color-border);
  font-size: 0.93rem;
  color: var(--color-text-primary);
  vertical-align: middle;
}

.bonus-table tbody tr {
  transition: background var(--transition-fast);
}

.bonus-table tbody tr:hover {
  background: rgba(255,255,255,0.04);
}

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

/* Coloured dot indicating bonus type */
.table-bonus-name {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
}

.bonus-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.bonus-dot--gold   { background: var(--color-gold); box-shadow: 0 0 6px var(--color-gold); }
.bonus-dot--purple { background: var(--color-purple); box-shadow: 0 0 6px var(--color-purple); }
.bonus-dot--blue   { background: var(--color-blue); box-shadow: 0 0 6px var(--color-blue); }
.bonus-dot--green  { background: var(--color-green); box-shadow: 0 0 6px var(--color-green); }

.bonus-value { color: var(--color-gold-light); }

.min-dep {
  display: inline-block;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 2px 10px;
  font-size: 0.82rem;
  color: var(--color-text-secondary);
}

/* --- MOBILE TABLE ADAPTATION ---
   On narrow screens, each row becomes a card with labels.
   The data-label attribute on each <td> provides the column name. */
@media (max-width: 640px) {
  .table-wrapper {
    box-shadow: none;
    border: none;
    background: transparent;
  }

  .bonus-table { min-width: unset; }

  .bonus-table thead {
    /* Hide column headers – labels come from data-label */
    display: none;
  }

  .bonus-table tbody,
  .bonus-table tr,
  .bonus-table td {
    display: block;
    width: 100%;
  }

  .bonus-table tbody tr {
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    padding: var(--space-md);
    overflow: hidden;
  }

  .bonus-table td {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    text-align: right;
  }

  .bonus-table td:last-child { border-bottom: none; }

  /* Inject column label before each cell value */
  .bonus-table td::before {
    content: attr(data-label);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    text-align: left;
    flex-shrink: 0;
  }
}

.bonus-cta-wrap {
  display: flex;
  justify-content: center;
}

/* ================================================================
   13. GAMES SECTION
   ================================================================ */
.section-games {
  background: var(--color-bg-secondary);
}

/* Game categories – 4-column grid */
.game-categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 576px) {
  .game-categories { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
  .game-categories { grid-template-columns: repeat(4, 1fr); }
}

.category-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-gold);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

/* Featured category card gets gold border + glow */
.category-card--featured {
  border-color: var(--color-border-gold);
  background: linear-gradient(145deg, #1a1a2e 0%, #1f1a38 100%);
}

.category-card--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(245,166,35,0.08), transparent 70%);
  pointer-events: none;
}

/* BELIEBT badge on featured card */
.category-badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: var(--gradient-gold);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.category-icon {
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.category-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.category-card p {
  font-size: 0.87rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  flex: 1;
}

/* --- Slots Grid ---
   Responsive grid of slot game thumbnails */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

@media (min-width: 480px) {
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .slots-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1100px) {
  .slots-grid { grid-template-columns: repeat(6, 1fr); }
}

.slot-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

/* Image container with hover overlay */
.slot-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.slot-image-wrap:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

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

.slot-image-wrap:hover .slot-image {
  transform: scale(1.08);
}

/* Play button overlay – appears on hover */
.slot-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,11,24,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.slot-image-wrap:hover .slot-overlay,
.slot-image-wrap:focus-within .slot-overlay {
  opacity: 1;
}

.slot-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-align: center;
  line-height: 1.3;
}

.games-cta-wrap {
  display: flex;
  justify-content: center;
}

/* ================================================================
   14. PAYMENT METHODS SECTION
   ================================================================ */
.section-payments {
  background: var(--color-bg-primary);
}

/* Responsive grid that auto-fills columns based on available space */
.payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: var(--space-md);
}

.payment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-sm);
  transition: all var(--transition-normal);
  cursor: default;
}

.payment-item:hover {
  border-color: var(--color-border-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.payment-item img {
  height: 40px;
  width: auto;
  object-fit: contain;
  /* Slightly brighten dark SVG logos */
  filter: brightness(1.1);
}

.payment-item span {
  font-size: 0.72rem;
  color: var(--color-text-secondary);
  font-weight: 500;
  text-align: center;
}

/* ================================================================
   15. SECURITY SECTION
   ================================================================ */
.section-security {
  background: var(--color-bg-secondary);
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 992px) {
  .security-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

.security-features p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

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

.security-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast);
}

.security-list li:hover {
  border-color: var(--color-green);
}

.security-check {
  font-size: 1.1rem;
  color: var(--color-green);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

.security-list strong {
  display: block;
  font-size: 0.93rem;
  color: var(--color-text-primary);
  margin-bottom: 2px;
}

.security-list p {
  font-size: 0.83rem;
  color: var(--color-text-secondary);
  margin: 0;
}

/* Mobile App card */
.app-card {
  background: var(--gradient-card);
  border: 1.5px solid var(--color-border-gold);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.app-card::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(245,166,35,0.12), transparent 70%);
  pointer-events: none;
}

.app-icon {
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: var(--space-md);
}

.app-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.app-card > p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  font-size: 0.93rem;
}

.app-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
  text-align: left;
}

.app-features li {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  padding: 4px 0;
}

.app-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================================================
   16. SUPPORT SECTION
   ================================================================ */
.section-support {
  background: var(--color-bg-primary);
  padding: var(--space-xl) 0;
}

.support-banner {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(41,121,255,0.12) 0%, rgba(124,77,255,0.08) 100%);
  border: 1.5px solid rgba(41,121,255,0.25);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}

.support-content h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.support-content p {
  color: var(--color-text-secondary);
  max-width: 500px;
  margin-bottom: var(--space-lg);
  font-size: 0.93rem;
}

.support-channels {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.support-channel {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1.3rem;
}

.support-channel div strong {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-primary);
}

.support-channel div span,
.support-channel div a {
  font-size: 0.82rem;
  color: var(--color-text-secondary);
}

/* ================================================================
   17. FAQ SECTION
   ================================================================ */
.section-faq {
  background: var(--color-bg-secondary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: var(--color-border-gold);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-question:hover { color: var(--color-gold); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-gold);
  flex-shrink: 0;
  transition: transform var(--transition-normal);
  line-height: 1;
}

/* Rotate icon when open */
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-secondary);
  font-size: 0.93rem;
  line-height: 1.65;
  animation: fadeSlideDown 0.25s ease;
}

.faq-answer a {
  color: var(--color-gold);
}

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

/* ================================================================
   18. FINAL CTA SECTION
   ================================================================ */
.section-final-cta {
  background: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
}

.final-cta-box {
  position: relative;
  background: linear-gradient(135deg, rgba(245,166,35,0.1) 0%, rgba(124,77,255,0.08) 100%);
  border: 2px solid var(--color-border-gold);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  overflow: hidden;
}

/* Animated floating particles in the CTA box */
.final-cta-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.final-cta-particles span {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle 6s ease-in-out infinite;
}

.final-cta-particles span:nth-child(1) {
  width: 8px; height: 8px;
  background: var(--color-gold);
  top: 20%; left: 10%;
  animation-delay: 0s;
}
.final-cta-particles span:nth-child(2) {
  width: 5px; height: 5px;
  background: var(--color-purple);
  top: 70%; left: 25%;
  animation-delay: 1.2s;
}
.final-cta-particles span:nth-child(3) {
  width: 10px; height: 10px;
  background: var(--color-green);
  top: 30%; right: 15%;
  animation-delay: 2.4s;
}
.final-cta-particles span:nth-child(4) {
  width: 6px; height: 6px;
  background: var(--color-gold-light);
  bottom: 20%; right: 30%;
  animation-delay: 0.8s;
}
.final-cta-particles span:nth-child(5) {
  width: 4px; height: 4px;
  background: var(--color-blue);
  top: 50%; left: 50%;
  animation-delay: 3.5s;
}

@keyframes floatParticle {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0); }
  20%       { opacity: 0.8; }
  50%       { opacity: 0.4; transform: translateY(-30px) scale(1); }
  80%       { opacity: 0; transform: translateY(-60px) scale(0.5); }
}

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

.final-cta-content h2 {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.final-cta-content > p {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  max-width: 520px;
  margin: 0 auto var(--space-xl);
}

.final-cta-content strong {
  color: var(--color-gold-light);
}

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

.disclaimer-text {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.disclaimer-text a {
  color: var(--color-text-secondary);
}

/* ================================================================
   19. FOOTER
   ================================================================ */
.site-footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  padding: var(--space-2xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 576px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  margin-bottom: var(--space-md);
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.footer-badges {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.footer-badge {
  display: inline-block;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-secondary);
  letter-spacing: 0.04em;
}

.footer-nav h3,
.footer-legal-links h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.footer-nav ul,
.footer-legal-links ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-nav a,
.footer-legal-links a {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.footer-nav a:hover,
.footer-legal-links a:hover {
  color: var(--color-gold);
}

/* Footer bottom bar */
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.footer-disclaimer strong { color: var(--color-text-secondary); }

.footer-disclaimer a {
  color: var(--color-text-secondary);
}

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

/* ================================================================
   20. BACK TO TOP BUTTON
   ================================================================ */
.back-to-top {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--gradient-gold);
  color: #000;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  transition: all var(--transition-normal);
  /* Initially hidden via JS */
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(245,166,35,0.5);
}

/* ================================================================
   21. FOCUS STYLES (Accessibility)
   ================================================================ */
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: 3px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

/* ================================================================
   22. SCROLLBAR STYLING (WebKit)
   ================================================================ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--color-bg-secondary); }
::-webkit-scrollbar-thumb {
  background: rgba(245,166,35,0.3);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(245,166,35,0.6);
}

/* ================================================================
   23. PRINT STYLES
   ================================================================ */
@media print {
  .site-header,
  .hero-banner,
  .back-to-top,
  .btn,
  .site-footer { display: none !important; }
  body { background: #fff; color: #000; }
  .container { max-width: 100%; }
}

/* ================================================================
   24. HIGH-CONTRAST MODE SUPPORT
   ================================================================ */
@media (forced-colors: active) {
  .btn { border: 2px solid ButtonText; }
  .gradient-text, .title-accent { -webkit-text-fill-color: unset; }
}
