/* ============================================================
   FieryPlay – steakhaus-barbecue.de
   Dark Navy Casino Theme – styles.css
   ============================================================
   DISTINCT from hotel-five-seasons.de:
   • Violet / purple accent instead of burgundy/red glow
   • Dark navy-black backgrounds (#060710) vs dark brown-black
   • Full-viewport hero with LEFT-aligned CTA block
   • 4-column slot grids vs 5-column
   • Glassmorphism header (blur + border)
   • Feature category tiles section (unique)
   • Jackpot live-counter section (unique)
   • Provider logo ticker (unique)
   • Real SVG payment icons in footer
   ============================================================ */

/* ── CSS Custom Properties ─────────────────────────────── */
:root {
  /* Backgrounds – navy-black tones */
  --bg:          #060710;
  --bg-card:     #0e0c1e;
  --bg-alt:      #09091a;
  --bg-glass:    rgba(10, 8, 25, 0.88);

  /* Brand – Fire Red (shared FieryPlay identity) */
  --red:         #e81519;
  --red-neon:    #ff2535;
  --red-glow:    rgba(232, 21, 25, 0.45);

  /* Signature accent – Electric Violet */
  --violet:      #7b2dff;
  --violet-lt:   #a46bff;
  --violet-glow: rgba(123, 45, 255, 0.32);
  --violet-deep: #4a1ba0;

  /* Tertiary – Cyan spark */
  --cyan:        #00d4ff;
  --cyan-glow:   rgba(0, 212, 255, 0.25);

  /* Gold */
  --gold:        #f5b800;
  --gold-lt:     #ffd35a;
  --gold-glow:   rgba(245, 184, 0, 0.4);

  /* Text */
  --text:        #dcd8f5;
  --text-muted:  #7d7a9e;
  --white:       #ffffff;

  /* Borders */
  --border:      rgba(123, 45, 255, 0.16);
  --border-br:   rgba(123, 45, 255, 0.48);

  /* Radii */
  --r:    10px;
  --r-lg: 18px;
  --r-xl: 28px;

  /* Shadows */
  --s-card: 0 4px 32px rgba(0,0,0,0.65);
  --s-v:    0 0 22px var(--violet-glow);
  --s-r:    0 0 18px var(--red-glow);
  --s-gold: 0 0 14px var(--gold-glow);

  --font:  'Segoe UI', system-ui, -apple-system, sans-serif;
  --ease:  0.25s ease;
}

/* ── Base Reset ────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img  { display: block; max-width: 100%; height: auto; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; font-family: inherit; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Screen-reader only */
.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;
}

/* ── Buttons ──────────────────────────────────────────── */
/* Primary CTA – fire red (brand) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--red) 0%, #9e0010 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border-radius: var(--r);
  border: none;
  box-shadow: var(--s-r), 0 4px 16px rgba(0,0,0,0.45);
  transition: transform var(--ease), box-shadow var(--ease);
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--red-glow), 0 6px 22px rgba(0,0,0,0.5);
}

/* Gold / Bonus CTA */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  background: linear-gradient(135deg, var(--gold) 0%, #c78f00 100%);
  color: #1a1000;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.04em;
  border-radius: var(--r);
  border: none;
  box-shadow: var(--s-gold), 0 4px 16px rgba(0,0,0,0.45);
  transition: transform var(--ease), box-shadow var(--ease);
}
.btn-gold:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 36px var(--gold-glow), 0 6px 22px rgba(0,0,0,0.5);
}

/* Violet outline – secondary actions */
.btn-violet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  background: transparent;
  color: var(--violet-lt);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--r);
  border: 1px solid var(--border-br);
  box-shadow: var(--s-v);
  transition: background var(--ease), color var(--ease), box-shadow var(--ease);
  white-space: nowrap;
}
.btn-violet:hover {
  background: rgba(123, 45, 255, 0.15);
  color: var(--white);
  box-shadow: 0 0 30px var(--violet-glow);
}

/* ── HEADER ───────────────────────────────────────────── */
/* Glassmorphism – distinct from hotel's solid black header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 7, 16, 0.80);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease), border-color var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.7), 0 0 0 1px var(--border-br);
  border-bottom-color: var(--border-br);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 68px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo .flame { font-size: 1.2em; animation: flamePulse 2.5s ease-in-out infinite; }
.logo .fiery { color: var(--red); text-shadow: 0 0 10px var(--red-glow); }
.logo .play  { color: var(--white); }

/* Desktop nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.main-nav a {
  padding: 7px 11px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--r);
  letter-spacing: 0.01em;
  transition: color var(--ease), background var(--ease);
}
.main-nav a:hover {
  color: var(--text);
  background: rgba(123, 45, 255, 0.1);
}

/* Header right actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.lang-badge {
  padding: 5px 10px;
  background: rgba(123,45,255,0.12);
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--violet-lt);
  letter-spacing: 0.06em;
}
.btn-login {
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r);
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color var(--ease), background var(--ease);
}
.btn-login:hover {
  border-color: var(--violet-lt);
  background: rgba(123,45,255,0.08);
}
.btn-register {
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-deep) 100%);
  border-radius: var(--r);
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--white);
  border: none;
  box-shadow: var(--s-v);
  transition: transform var(--ease), box-shadow var(--ease);
}
.btn-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 26px var(--violet-glow);
}

/* Mobile hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--text);
  font-size: 1.3rem;
  padding: 6px 10px;
  line-height: 1;
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 24px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background var(--ease), color var(--ease);
}
.mobile-nav a:hover {
  background: rgba(123,45,255,0.1);
  color: var(--violet-lt);
}
.mobile-auth {
  display: flex;
  gap: 12px;
  padding: 16px 24px;
}
.mobile-auth a { padding: 10px 20px !important; border: none !important; }
.mobile-auth .btn-register { display: flex; justify-content: center; }

/* ── HERO ─────────────────────────────────────────────── */
/* Full viewport height + LEFT-aligned CTA block
   Distinct from hotel-five-seasons.de's centered block */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 580px;
  max-height: 860px;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
/* Directional gradient: dark on left, fades right */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(6,7,16,0.94) 0%,
    rgba(6,7,16,0.68) 48%,
    rgba(6,7,16,0.28) 100%
  );
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 max(5vw, 24px);
}
.hero-cta {
  max-width: 540px;
  padding: 44px 48px;
  background: rgba(10, 8, 25, 0.70);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-br);
  border-radius: var(--r-xl);
  box-shadow: var(--s-v), 0 20px 64px rgba(0,0,0,0.55);
  animation: fadeSlideIn 0.7s ease both;
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(123,45,255,0.22);
  border: 1px solid var(--border-br);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--violet-lt);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-cta h1 {
  font-size: clamp(1.85rem, 3.2vw, 2.7rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 10px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}
.hero-cta h1 em {
  font-style: normal;
  color: var(--gold);
  text-shadow: var(--s-gold);
}
.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.hero-sub strong { color: var(--text); }
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── FEATURE TILES ────────────────────────────────────── */
/* UNIQUE SECTION – 4 large game-category clickable tiles */
.feature-tiles-section {
  padding: 52px 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.tiles-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.tiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feat-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 22px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  min-height: 155px;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
/* Each tile gets its own gradient accent */
.feat-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--tile-grad, linear-gradient(135deg, rgba(123,45,255,0.14) 0%, transparent 60%));
  pointer-events: none;
  transition: opacity var(--ease);
}
.feat-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--s-v), 0 8px 28px rgba(0,0,0,0.45);
  border-color: var(--border-br);
}
.feat-tile:hover::before { opacity: 1.6; }
.tile-icon {
  font-size: 2.3rem;
  line-height: 1;
  margin-bottom: 14px;
  position: relative;
}
.feat-tile h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
  position: relative;
}
.tile-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  position: relative;
}
.tile-caret {
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(123,45,255,0.15);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 0.8rem;
  color: var(--violet-lt);
  opacity: 0;
  transition: opacity var(--ease), transform var(--ease);
}
.feat-tile:hover .tile-caret {
  opacity: 1;
  transform: translateX(3px);
}

/* ── SEARCH PANEL ─────────────────────────────────────── */
/* Violet-glass style – distinct from hotel's plain dark glass */
.search-panel {
  padding: 36px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.search-glass {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  box-shadow: var(--s-v);
}
.search-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.search-input-wrap {
  position: relative;
  flex: 1;
  min-width: 200px;
}
.search-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 0.85rem;
}
.search-input-wrap input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--text);
  font-size: 0.88rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--ease);
}
.search-input-wrap input::placeholder { color: var(--text-muted); }
.search-input-wrap input:focus { border-color: var(--violet); }
.search-dropdowns { display: flex; gap: 8px; }
.dropdown-link {
  padding: 10px 16px;
  background: rgba(123,45,255,0.08);
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--violet-lt);
  transition: background var(--ease), border-color var(--ease);
}
.dropdown-link:hover {
  background: rgba(123,45,255,0.2);
  border-color: var(--border-br);
}
.category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.cat-btn {
  padding: 7px 16px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--ease);
}
.cat-btn:hover, .cat-btn.active {
  background: rgba(123,45,255,0.15);
  border-color: var(--violet);
  color: var(--violet-lt);
  box-shadow: var(--s-v);
}
.promo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.promo-btn {
  padding: 7px 16px;
  background: rgba(232,21,25,0.08);
  border: 1px solid rgba(232,21,25,0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,90,100,0.9);
  transition: all var(--ease);
}
.promo-btn:hover {
  background: rgba(232,21,25,0.18);
  border-color: var(--red);
  color: var(--white);
  box-shadow: var(--s-r);
}

/* ── SLOT SECTIONS ────────────────────────────────────── */
.slot-section {
  padding: 52px 0;
}
.slot-section.bg-alt { background: var(--bg-alt); }

/* Section heading: left-aligned with gradient bar accent
   Distinct from hotel's centered headings */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}
.section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.01em;
}
/* Violet gradient left-bar (distinct from hotel) */
.section-heading::before {
  content: '';
  display: block;
  width: 4px;
  height: 1.15em;
  background: linear-gradient(180deg, var(--violet) 0%, var(--red) 100%);
  border-radius: 3px;
  flex-shrink: 0;
}
.see-all-link {
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--violet-lt);
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color var(--ease), background var(--ease);
}
.see-all-link:hover {
  border-color: var(--border-br);
  background: rgba(123,45,255,0.12);
}

/* 4-column grid – distinct from hotel's 5-column */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.slot-card {
  display: block;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  position: relative;
}
.slot-card:hover {
  transform: translateY(-5px) scale(1.025);
  box-shadow: var(--s-v);
  border-color: var(--violet);
}
.slot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.slot-card:hover img { transform: scale(1.06); }

/* ── TEXT SECTIONS ────────────────────────────────────── */
.text-section {
  padding: 68px 0;
}
.text-section.alt { background: var(--bg-alt); }
.text-centered {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
/* Centered heading variant (no bar) */
.heading-center {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}
.violet-rule {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  border-radius: 2px;
  margin: 14px auto 28px;
}
.text-centered p {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 16px;
}
.cta-wrap { margin-top: 28px; }

/* Two-column text block */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.col-copy p {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 16px;
}
.feature-list-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--s-v);
}
.feature-list-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--violet-lt);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.feature-list-card ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.feature-list-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.5;
}
.feature-list-card li::before {
  content: '▸';
  color: var(--violet-lt);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ── PROMO BANNER ─────────────────────────────────────── */
.promo-banner {
  position: relative;
  overflow: hidden;
  min-height: 340px;
}
.promo-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Cool blue-violet overlay – distinct from hotel's warm overlay */
.promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(6,7,16,0.94) 0%,
    rgba(10,8,25,0.65) 50%,
    rgba(6,7,16,0.88) 100%
  );
}
.promo-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 340px;
  padding: 52px 24px;
}
.promo-tag {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(123,45,255,0.22);
  border: 1px solid var(--border-br);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--violet-lt);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.promo-content h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}
.promo-content p {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 28px;
  line-height: 1.65;
}
.promo-arrows {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  z-index: 3;
}
.promo-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  background: rgba(10,8,25,0.65);
  border: 1px solid var(--border-br);
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--violet-lt);
  pointer-events: all;
  transition: background var(--ease), box-shadow var(--ease);
}
.promo-arrow:hover {
  background: rgba(123,45,255,0.25);
  box-shadow: var(--s-v);
}

/* ── JACKPOT COUNTER ─────────────────────────────────── */
/* UNIQUE SECTION – animated live jackpot rising number */
.jackpot-section {
  padding: 72px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Subtle radial glow background */
.jackpot-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 320px;
  background: radial-gradient(ellipse, rgba(123,45,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.jackpot-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  position: relative;
}
.jackpot-headline {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
  position: relative;
}
.jackpot-display {
  position: relative;
  margin-bottom: 10px;
}
.jackpot-number {
  display: block;
  font-size: clamp(3.8rem, 9vw, 7.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 45%, #d48000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 22px var(--gold-glow));
  font-variant-numeric: tabular-nums;
  position: relative;
}
.jackpot-eur {
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 36px;
  position: relative;
}
.jackpot-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
/* Pulsing ring decoration */
.jackpot-section::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 320px; height: 320px;
  border: 1px solid rgba(245,184,0,0.08);
  border-radius: 50%;
  animation: ringPulse 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ringPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1);   opacity: 0.4; }
  50%       { transform: translate(-50%, -50%) scale(1.08); opacity: 0.1; }
}

/* ── WINNERS ──────────────────────────────────────────── */
/* Violet-toned – distinct from hotel's red-toned winners */
.winners-section {
  padding: 52px 0;
  background: linear-gradient(135deg, #080a28 0%, var(--bg) 65%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.winners-layout {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 32px;
  align-items: center;
}
.winners-left h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 24px;
}
.winners-left h2 .w-icon { font-size: 1.5rem; }
.winners-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.winner-card {
  display: block;
  padding: 16px 18px;
  background: rgba(123,45,255,0.09);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}
.winner-card:hover {
  border-color: var(--border-br);
  box-shadow: var(--s-v);
  background: rgba(123,45,255,0.18);
}
.win-amount {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}
.win-info {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.winners-trophy {
  display: flex;
  align-items: center;
  justify-content: center;
}
.trophy-icon {
  font-size: clamp(5rem, 9vw, 7rem);
  filter: drop-shadow(0 0 20px var(--gold-glow));
  animation: trophyPulse 3s ease-in-out infinite;
}
@keyframes trophyPulse {
  0%, 100% { filter: drop-shadow(0 0 14px var(--gold-glow)); }
  50%       { filter: drop-shadow(0 0 36px rgba(245,184,0,0.65)); }
}

/* ── PROVIDER TICKER ──────────────────────────────────── */
/* UNIQUE SECTION – infinite horizontal scrolling provider logos */
.provider-ticker {
  padding: 40px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.ticker-label {
  text-align: center;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 26px;
}
.ticker-wrap {
  position: relative;
  overflow: hidden;
  /* Fade edges */
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.ticker-track {
  display: flex;
  gap: 36px;
  align-items: center;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.prov-logo {
  display: flex;
  align-items: center;
  height: 32px;
  opacity: 0.45;
  filter: grayscale(100%) brightness(1.8);
  flex-shrink: 0;
  transition: opacity var(--ease), filter var(--ease);
}
.prov-logo img {
  height: 24px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  display: block;
}
.prov-logo:hover {
  opacity: 0.85;
  filter: none;
}

/* ── JACKPOT CTA SECTION ──────────────────────────────── */
.jackpot-cta-section {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}
.jackpot-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.jackpot-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,7,16,0.9) 0%,
    rgba(14,12,30,0.78) 50%,
    rgba(6,7,16,0.9) 100%
  );
}
.jackpot-cta-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 300px;
  padding: 52px 24px;
}
.jackpot-cta-body h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
}
.jackpot-cta-body p {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 28px;
  line-height: 1.65;
}
.jackpot-btn-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── SEO SECTION ──────────────────────────────────────── */
.seo-section {
  padding: 76px 0;
  position: relative;
  overflow: hidden;
}
.seo-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.05;
  filter: blur(2px);
  display: block;
}
.seo-inner { position: relative; z-index: 1; }
.seo-main-heading {
  text-align: center;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 6px;
}
.seo-tagline {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}
.violet-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  border-radius: 2px;
  margin: 18px auto 44px;
}
/* 4 info blocks in a 2×2 grid */
.seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 44px;
}
.seo-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  transition: box-shadow var(--ease);
}
.seo-block:hover { box-shadow: var(--s-v); }
.seo-block h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--violet-lt);
  margin-bottom: 12px;
}
.seo-block p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}
/* CTA strip */
.cta-strip {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 36px 0;
}
/* Casino data table */
.casino-table-wrap {
  overflow-x: auto;
  margin: 44px 0;
  border-radius: var(--r-lg);
}
.casino-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--r-lg);
  overflow: hidden;
  font-size: 0.88rem;
}
.casino-table th {
  text-align: left;
  padding: 15px 20px;
  background: rgba(123,45,255,0.14);
  color: var(--violet-lt);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--border);
}
.casino-table td {
  padding: 13px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text-muted);
  vertical-align: top;
  line-height: 1.5;
}
.casino-table td:first-child { color: var(--text); font-weight: 600; }
.casino-table tr:last-child td { border-bottom: none; }
.casino-table tr:hover td { background: rgba(123,45,255,0.05); }

/* Mobile stacked cards (replaces table) */
.table-mobile { display: none; flex-direction: column; gap: 10px; }
.tm-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.tm-card .tm-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
}
.tm-card .tm-value {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: right;
}
/* Highlight cards */
.highlight-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 40px 0;
}
.hl-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--violet);
  border-radius: var(--r);
  padding: 22px 18px;
  transition: box-shadow var(--ease);
}
.hl-card:hover { box-shadow: var(--s-v); }
.hl-card .hl-icon { font-size: 1.8rem; margin-bottom: 10px; }
.hl-card h4 {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.hl-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── FOOTER ───────────────────────────────────────────── */
/* Different layout: 3-col grid, real SVG payment icons */
.site-footer {
  position: relative;
  background: #04050c;
  border-top: 1px solid var(--border);
  overflow: hidden;
  padding: 56px 0 32px;
}
.footer-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.04;
  display: block;
}
.footer-inner { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.footer-brand .logo { margin-bottom: 16px; font-size: 1.4rem; }
.footer-brand p {
  font-size: 0.81rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.footer-contact {
  font-size: 0.81rem;
  color: var(--text-muted);
}
.footer-contact a {
  color: var(--violet-lt);
  transition: color var(--ease);
}
.footer-contact a:hover { color: var(--white); }
.footer-col h4 {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
/* Real SVG payment icons (distinct from hotel's text badges) */
.payment-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.pay-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r);
  filter: grayscale(50%) brightness(1.3);
  transition: filter var(--ease), border-color var(--ease);
}
.pay-icon:hover {
  filter: none;
  border-color: var(--border-br);
}
.pay-icon img { height: 20px; width: auto; display: block; }
.legal-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.legal-nav a {
  font-size: 0.84rem;
  color: var(--text-muted);
  transition: color var(--ease);
}
.legal-nav a:hover { color: var(--violet-lt); }
/* Footer bottom bar */
.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bar p {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.age-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: rgba(232,21,25,0.14);
  border: 2px solid rgba(232,21,25,0.38);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--red-neon);
  flex-shrink: 0;
}

/* ── LEGAL PAGES ──────────────────────────────────────── */
.breadcrumb {
  padding: 16px 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--violet-lt); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { margin: 0 6px; }
.legal-page {
  padding: 40px 0 60px;
}
.legal-page h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 24px;
}
.legal-page h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--violet-lt);
  margin: 28px 0 10px;
}
.legal-page p, .legal-page li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal-page ul { padding-left: 20px; margin-bottom: 12px; }
.legal-cta {
  margin-top: 32px;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-align: center;
}
.legal-cta p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ── ANIMATIONS ───────────────────────────────────────── */
@keyframes flamePulse {
  0%, 100% { text-shadow: 0 0 8px var(--red-glow); }
  50%       { text-shadow: 0 0 18px var(--red-glow), 0 0 28px rgba(255,80,0,0.4); }
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1100px) {
  .tiles-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { gap: 32px; }
}

@media (max-width: 900px) {
  .main-nav, .lang-badge { display: none; }
  .menu-toggle { display: block; }
  .hero-content { padding: 0 24px; }
  .hero-cta { max-width: 100%; }
  .slot-grid { grid-template-columns: repeat(3, 1fr); }
  .winners-cards { grid-template-columns: repeat(2, 1fr); }
  .seo-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .highlight-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .hero { max-height: 700px; min-height: 520px; }
  .hero-cta { padding: 28px 20px; }
  .tiles-grid { gap: 10px; }
  .feat-tile { padding: 18px 14px; min-height: 120px; }
  .tile-icon { font-size: 2rem; margin-bottom: 10px; }
  .feat-tile h3 { font-size: 0.98rem; }
  .slot-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .winners-layout { grid-template-columns: 1fr; }
  .winners-trophy { display: none; }
  .winners-cards { grid-template-columns: 1fr; }
  .highlight-cards { grid-template-columns: 1fr; }
  .casino-table { display: none; }
  .table-mobile { display: flex; }
  .cta-strip { flex-direction: column; align-items: center; }
  .jackpot-btn-row { flex-direction: column; align-items: center; }
  .footer-bar { flex-direction: column; align-items: flex-start; }
  .search-input-wrap { min-width: 100%; order: -1; }
}

@media (max-width: 420px) {
  .tiles-grid { grid-template-columns: 1fr 1fr; }
  .slot-grid { grid-template-columns: repeat(2, 1fr); }
}
