/* ============================================================
   QUEEN CASINO ITALIA — style.css
   Merged: main + animations + responsive
   Removed: unused keyframes, dead utility classes, duplicate rules
   ============================================================ */

/* ── Custom properties ──────────────────────────────────────── */
:root {
  --clr-dark:    #0c1020;
  --clr-dark2:   #111827;
  --clr-dark3:   #1a2235;
  --clr-red:     #901600;
  --clr-red2:    #b01c00;
  --clr-gold:    #C9A227;
  --clr-gold2:   #F5D378;
  --clr-white:   #ffffff;
  --clr-light:   #e8eaf2;
  --clr-muted:   #8899aa;
  --clr-green:   #22c55e;

  --ff-serif:    'Playfair Display', Georgia, serif;
  --ff-sans:     'Manrope', system-ui, sans-serif;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-pill: 9999px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,.35);
  --shadow-md:   0 4px 24px rgba(0,0,0,.5);
  --shadow-lg:   0 8px 48px rgba(0,0,0,.7);
  --shadow-gold: 0 0 24px rgba(201,162,39,.35);
  --shadow-red:  0 0 24px rgba(144,22,0,.5);

  --transition:   0.35s cubic-bezier(.4,0,.2,1);
  --ticker-height: 40px;
  --nav-height:   80px;
  --section-max:  1280px;
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-sans);
  background: var(--clr-dark);
  color: var(--clr-white);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
  overflow-wrap: break-word;
}
h1 { font-size: clamp(2.2rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1rem; font-family: var(--ff-sans); }
p  { color: var(--clr-light); line-height: 1.75; margin-bottom: 1rem; }

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

/* ── Container ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--section-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Utility ─────────────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
.mb-8  { margin-bottom: 8px; }
.mb-32 { margin-bottom: 32px; }
.mt-24 { margin-top: 24px; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .5px;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
}
.btn:hover::after { background: rgba(255,255,255,.08); }

.btn-primary {
  background: var(--clr-red);
  color: var(--clr-white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--clr-red2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(144,22,0,.65);
}

.btn-gold {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold2), var(--clr-gold));
  color: #2a1800;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,162,39,.65);
}

.btn-outline {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(255,255,255,.3);
}
.btn-outline:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

.btn-sm  { padding: 10px 24px; font-size: .875rem; }
.btn-lg  { padding: 18px 44px; font-size: 1.125rem; }
.btn-icon { gap: 10px; }
.btn-full { width: 100%; }

.btn-primary:focus-visible,
.btn-gold:focus-visible {
  outline: 3px solid var(--clr-gold);
  outline-offset: 3px;
}

/* ── Navigation ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: var(--ticker-height); left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(12,16,32,.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201,162,39,.15);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(12,16,32,.97);
  box-shadow: 0 4px 32px rgba(0,0,0,.5);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img { height: 44px; width: auto; transition: opacity var(--transition); }
.nav-logo:hover img { opacity: .85; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu a {
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: .9375rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  transition: all var(--transition);
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--clr-gold);
  background: rgba(201,162,39,.08);
}

.nav-actions { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  transition: all var(--transition);
}
.hamburger:hover { background: rgba(201,162,39,.12); border-color: var(--clr-gold); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--clr-white);
  border-radius: 2px;
  margin: 3px 0;
  transition: all .35s ease;
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: calc(var(--ticker-height) + var(--nav-height));
  left: 0; right: 0;
  background: rgba(12,16,32,.98);
  border-bottom: 2px solid var(--clr-gold);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid transparent;
}
.mobile-nav-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-nav-actions .btn { flex: 1; justify-content: center; }

/* ── Ticker bar ─────────────────────────────────────────────── */
.ticker-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  height: var(--ticker-height);
  background: var(--clr-red);
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.ticker-inner {
  display: inline-flex;
  gap: 60px;
  animation: marquee 28s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: .5px;
}

/* ── Hero Section ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: calc(var(--nav-height) + var(--ticker-height));
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/bg-hero0392.svg') center/cover no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,16,32,.9) 0%, rgba(12,16,32,.6) 50%, rgba(12,16,32,.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}

.hero-text { max-width: 600px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(201,162,39,.12);
  border: 1px solid rgba(201,162,39,.3);
  border-radius: var(--radius-pill);
  font-size: .8125rem;
  font-weight: 700;
  color: var(--clr-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInDown .6s ease .1s both;
}

.hero-title {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  margin-bottom: 20px;
  line-height: 1.15;
  animation: fadeInUp .7s ease .2s both;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--clr-muted);
  margin-bottom: 32px;
  animation: fadeInUp .7s ease .35s both;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  animation: fadeInUp .7s ease .45s both;
}

/* CSS stars — replaces 5 separate SVG image requests */
.stars::before {
  content: '★★★★★';
  color: var(--clr-gold);
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.rating-text { font-size: .875rem; color: var(--clr-muted); }

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp .7s ease .55s both;
}

.hero-bonus-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  animation: fadeInRight .7s ease .3s both;
}
.hero-bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-red), var(--clr-gold), var(--clr-red));
}

.hero-card-kicker { font-size: .8125rem; color: var(--clr-muted); }
.hero-card-copy   { font-size: .9rem; color: var(--clr-muted); margin: 12px 0; }

.hero-mini-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
  font-size: .9rem;
  color: var(--clr-light);
}
.hero-mini-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bonus-amount {
  font-family: var(--ff-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.bonus-spins {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--clr-light);
  margin-top: 8px;
}
.bonus-cta  { margin-top: 24px; }
.bonus-terms { font-size: .75rem; color: var(--clr-muted); margin-top: 12px; }

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  z-index: 1;
}

/* ── Section shared ──────────────────────────────────────────── */
section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header-left { text-align: left; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 16px;
}
.section-tag::before,
.section-tag::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--clr-gold);
  opacity: .5;
}

.section-title   { margin-bottom: 16px; }
.section-desc    { color: var(--clr-muted); max-width: 600px; margin: 0 auto; font-size: 1.0625rem; }
.section-desc-left { margin: 0; }

/* ── Stats ───────────────────────────────────────────────────── */
.stats-section { padding: 60px 0; }
.stats-row {
  display: flex;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255,255,255,.02);
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--clr-gold);
}
.stat-label { font-size: .8125rem; color: var(--clr-muted); margin-top: 4px; }

/* ── Games ───────────────────────────────────────────────────── */
.games-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-size: .9rem;
  font-weight: 600;
  color: var(--clr-muted);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: all var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  color: var(--clr-white);
  background: var(--clr-red);
  border-color: var(--clr-red);
}

.slider-wrapper { position: relative; overflow: hidden; padding-bottom: 20px; }
.slider-track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.slider-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.15);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all var(--transition);
}
.slider-btn:hover { background: rgba(201,162,39,.15); border-color: var(--clr-gold); }
.slider-btn:disabled { opacity: .35; cursor: not-allowed; }

.slider-dots { display: flex; gap: 8px; align-items: center; }
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.dot.active { width: 24px; border-radius: 4px; background: var(--clr-red); }

/* ── Game Card ───────────────────────────────────────────────── */
.game-card {
  flex-shrink: 0;
  width: calc((100% - 24px*3) / 4);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--clr-dark2);
  border: 1px solid rgba(255,255,255,.08);
  transition: all var(--transition);
  min-width: 200px;
}
.game-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,162,39,.3);
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.game-card-thumb { position: relative; aspect-ratio: 1/1; overflow: hidden; }
.game-card-thumb img { width: 100%; height: 100%; object-fit: cover; }

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12,16,32,.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.game-card:hover .game-card-overlay { opacity: 1; }

.game-play-btn {
  padding: 12px 24px;
  background: var(--clr-red);
  color: var(--clr-white);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: .9rem;
  box-shadow: var(--shadow-red);
}

.game-card-info { padding: 16px; }
.game-card-name { font-size: 1rem; font-weight: 700; color: var(--clr-white); margin-bottom: 4px; }
.game-card-provider { font-size: .8125rem; color: var(--clr-muted); }

.game-card-rtp {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(34,197,94,.9);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: .7rem;
  font-weight: 700;
}
.game-card-hot {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--clr-red);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: .7rem;
  font-weight: 800;
}

.games-cta { text-align: center; margin-top: 48px; }

/* ── Providers ───────────────────────────────────────────────── */
.providers-section { background: var(--clr-dark2); }
.providers-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.provider-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-md);
  padding: 20px 12px;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.provider-card:hover {
  border-color: rgba(201,162,39,.25);
  background: rgba(201,162,39,.05);
}
.provider-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--clr-light);
  word-break: break-word;
}

/* ── Bonus ───────────────────────────────────────────────────── */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.bonus-card {
  background: var(--clr-dark2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
}
.bonus-card-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
}
.bonus-card-title  { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.bonus-card-amount {
  font-family: var(--ff-serif);
  font-size: 2.5rem;
  color: var(--clr-gold);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1;
  display: block;
}
.bonus-card-desc { font-size: .9375rem; color: var(--clr-muted); margin-bottom: 24px; flex-grow: 1; }
.bonus-card-ribbon {
  position: absolute;
  top: 20px; right: -35px;
  background: var(--clr-red);
  color: #fff;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
}

/* ── Payments ────────────────────────────────────────────────── */
.payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.payment-name { font-size: .85rem; margin-top: 8px; }
.payment-copy { font-size: .75rem; color: var(--clr-muted); margin-top: 4px; }
.payment-mark {
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  color: var(--clr-gold);
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { max-width: 850px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  background: rgba(255,255,255,.02);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  text-align: left;
  gap: 20px;
  font-size: 1.0625rem;
  font-weight: 600;
}
.faq-icon {
  width: 32px; height: 32px;
  min-width: 32px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer-inner { padding: 0 30px 24px; color: var(--clr-muted); line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-item.open .faq-icon   { background: var(--clr-red); transform: rotate(45deg); }

/* ── Content text blocks (getContentText) ────────────────────── */
#brand,
main > section:not([class]):not([id]) {
  padding: 64px 0;
}

#brand .container,
main > section:not([class]):not([id]) .container {
  max-width: 860px;
}

#brand h2,
main > section:not([class]):not([id]) h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--clr-white);
  margin-bottom: 16px;
}

#brand h3,
main > section:not([class]):not([id]) h3 {
  font-family: var(--ff-serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--clr-white);
  margin-bottom: 12px;
  margin-top: 32px;
}

#brand p,
main > section:not([class]):not([id]) p {
  color: var(--clr-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

#brand strong,
main > section:not([class]):not([id]) strong {
  color: var(--clr-white);
}

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: #060b18;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 40px;
}
.footer-brand p { font-size: .9375rem; color: var(--clr-muted); margin-top: 16px; }

.footer-col h4  { font-size: 1rem; font-weight: 700; margin-bottom: 20px; font-family: var(--ff-sans); }
.footer-links   { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--clr-muted); font-size: .9375rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--clr-gold); }

.footer-social  { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.social-link:hover { background: rgba(201,162,39,.15); border-color: var(--clr-gold); }

.footer-newsletter p { font-size: .9rem; color: var(--clr-muted); margin-bottom: 16px; }
.newsletter-form {
  display: flex;
  gap: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-pill);
  padding: 6px 6px 6px 16px;
}
.newsletter-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--clr-white);
  font-size: .9rem;
  min-width: 0;
}
.newsletter-form input::placeholder { color: var(--clr-muted); }

.footer-middle {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  margin-bottom: 32px;
}
.footer-payments {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--clr-muted);
  font-size: .8125rem;
}
.payment-icon {
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-text { font-size: .875rem; font-weight: 600; color: var(--clr-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.05);
  gap: 24px;
  flex-wrap: wrap;
}
.footer-badges { display: flex; align-items: center; gap: 16px; }
.footer-badge  { opacity: .85; }
.footer-copy   { font-size: .875rem; color: var(--clr-muted); }

.footer-disclaimer {
  font-size: .8125rem;
  color: var(--clr-muted);
  line-height: 1.6;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.05);
  margin-top: 24px;
  text-align: center;
}

/* ── Scroll to top ───────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-red);
  color: var(--clr-white);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  z-index: 990;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover { background: var(--clr-red2); transform: translateY(-2px); }

/* ── Shimmer button effect ──────────────────────────────────── */
.btn-shimmer { position: relative; overflow: hidden; }
.btn-shimmer::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transform: skewX(-20deg);
}
.btn-shimmer:hover::before { animation: shimmerPass .6s ease; }

/* ── Keyframes (only used ones) ─────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes shimmerPass {
  from { left: -100%; }
  to   { left: 150%; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(144,22,0,.5); }
  50%       { box-shadow: 0 0 0 14px rgba(144,22,0,0); }
}
@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,162,39,.45); }
  50%       { box-shadow: 0 0 0 14px rgba(201,162,39,0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes rippleAnim {
  to { transform: scale(120); opacity: 0; }
}

/* ── Animation utility classes (only used in HTML) ──────────── */
.animate-pulse      { animation: pulse 2.5s ease-in-out infinite; }
.animate-pulse-gold { animation: pulseGold 2.5s ease-in-out infinite; }

/* ── Scroll-triggered reveal ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-left.revealed { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

.stagger-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.stagger-children.revealed > *:nth-child(1)  { opacity: 1; transform: none; transition-delay: 0s; }
.stagger-children.revealed > *:nth-child(2)  { opacity: 1; transform: none; transition-delay: .1s; }
.stagger-children.revealed > *:nth-child(3)  { opacity: 1; transform: none; transition-delay: .2s; }
.stagger-children.revealed > *:nth-child(4)  { opacity: 1; transform: none; transition-delay: .3s; }
.stagger-children.revealed > *:nth-child(5)  { opacity: 1; transform: none; transition-delay: .4s; }
.stagger-children.revealed > *:nth-child(6)  { opacity: 1; transform: none; transition-delay: .5s; }
.stagger-children.revealed > *:nth-child(7)  { opacity: 1; transform: none; transition-delay: .6s; }
.stagger-children.revealed > *:nth-child(8)  { opacity: 1; transform: none; transition-delay: .7s; }
.stagger-children.revealed > *:nth-child(9)  { opacity: 1; transform: none; transition-delay: .8s; }
.stagger-children.revealed > *:nth-child(10) { opacity: 1; transform: none; transition-delay: .9s; }
.stagger-children.revealed > *:nth-child(11) { opacity: 1; transform: none; transition-delay: 1s; }
.stagger-children.revealed > *:nth-child(12) { opacity: 1; transform: none; transition-delay: 1.1s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── XL ─────────────────────────────────────────────────────── */
@media (max-width: 1280px) {
  :root { --section-max: 1100px; }
  .hero-content { gap: 48px; }
  .footer-top { grid-template-columns: 1.8fr 1fr 1fr 1.4fr; gap: 48px; }
  .game-card  { width: calc((100% - 24px*2) / 3); }
}

/* ── LG ─────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  section { padding: 80px 0; }
  .nav-menu, .nav-actions { display: none; }
  .hamburger { display: flex; }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-text  { max-width: 100%; margin: 0 auto; }
  .hero-rating, .hero-ctas { justify-content: center; }
  .hero-bonus-card { max-width: 480px; margin: 0 auto; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }

  .game-card { width: calc((100% - 24px) / 2); }
  .providers-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}

/* ── MD ─────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --nav-height: 68px; }
  html { font-size: 15px; }
  section { padding: 64px 0; }
  .container { padding: 0 20px; }

  .btn    { padding: 13px 26px; font-size: .9375rem; }
  .btn-lg { padding: 16px 36px; font-size: 1rem; }

  .hero { min-height: auto; }
  .hero-content { padding: 60px 0; gap: 40px; }
  .hero-bonus-card { padding: 24px; }
  .bonus-amount { font-size: 2.5rem; }

  .section-header { margin-bottom: 40px; }

  .stats-row { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat-item:last-child { border-bottom: none; }

  .game-card { width: calc((100% - 16px) / 2); }
  .slider-track { gap: 16px; }
  .games-filter { gap: 8px; }
  .filter-btn   { padding: 8px 16px; font-size: .8125rem; }

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

  .faq-question    { padding: 18px 20px; font-size: .9375rem; }
  .faq-answer-inner { padding: 0 20px 18px; }

  .footer-top    { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand  { grid-column: auto; }
  .footer-links  { align-items: center; }
  .footer-social { justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 20px; }
  .footer-badges { justify-content: center; }
  .footer-payments { gap: 12px; }

  .scroll-top { bottom: 20px; right: 20px; width: 44px; height: 44px; }
  .hero-wave svg { height: 80px; }
  .ticker-item { font-size: .8125rem; }

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

/* ── SM ─────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  :root { --nav-height: 60px; }
  html { font-size: 14px; }
  section { padding: 56px 0; }
  .container { padding: 0 16px; }

  .nav-logo img { height: 36px; }
  .mobile-nav   { padding: 20px 16px; }

  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-content   { padding: 48px 0; }

  .game-card { width: 100%; }

  .providers-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number  { font-size: 1.75rem; }
  .faq-question { padding: 16px; }
  .faq-answer-inner { padding: 0 16px 16px; }

  .bonus-card   { padding: 28px 20px; }
  .bonus-card-amount { font-size: 2rem; }

  .newsletter-form {
    flex-direction: column;
    padding: 12px;
    border-radius: var(--radius-md);
    gap: 10px;
  }
  .newsletter-form input { padding: 4px 0; }

  .section-tag { font-size: .75rem; }
  .payments-grid { grid-template-columns: 1fr; }
  .bonus-cards   { grid-template-columns: 1fr; }
}

/* ── XS ─────────────────────────────────────────────────────── */
@media (max-width: 360px) {
  html { font-size: 13px; }
  .bonus-amount { font-size: 1.75rem; }
  .bonus-spins  { font-size: 1.1rem; }
  .game-card    { border-radius: var(--radius-sm); }
}

/* ── Touch devices ───────────────────────────────────────────── */
@media (hover: none) {
  .game-card-overlay {
    opacity: 1;
    background: rgba(12,16,32,.45);
  }
}

/* ── Landscape phones ────────────────────────────────────────── */
@media (max-width: 767px) and (orientation: landscape) {
  .hero { min-height: auto; }
  .hero-content { padding: 40px 0; }
  :root { --nav-height: 56px; }
}

/* ── Reduced motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }
  .stagger-children > * { opacity: 1 !important; transform: none !important; }
}

/* ── Print ───────────────────────────────────────────────────── */
@media print {
  .site-header, .mobile-nav, .scroll-top,
  .ticker-bar, .hero-wave, .slider-nav { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  a    { color: #000; }
  section { padding: 20pt 0; page-break-inside: avoid; }
}
