/* ============================================================
   ALEA CASINO — Main Stylesheet
   aleacasino.net | UK | v1.0
   ============================================================ */

/* ── 1. Google Fonts ───────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ── 2. CSS Custom Properties ──────────────────────────────── */
:root {
  --bg-primary:   #07080F;
  --bg-secondary: #0D1117;
  --bg-card:      #111827;
  --bg-card-hover:#141f30;
  --bg-header:    #09111e;
  --gold:         #C9A84C;
  --gold-light:   #E8C76D;
  --gold-dim:     rgba(201,168,76,0.15);
  --gold-border:  rgba(201,168,76,0.25);
  --text-primary: #FFFFFF;
  --text-muted:   #8B95A8;
  --text-dim:     #5a6475;
  --border:       rgba(255,255,255,0.07);
  --radius-sm:    6px;
  --radius-md:    10px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --shadow-card:  0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold:  0 0 24px rgba(201,168,76,0.25);
  --transition:   0.22s ease;
  --container:    1200px;
  --header-h:     70px;
}

/* ── 3. Reset + Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

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

ul, ol { list-style: none; }

/* ── 4. Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

.content-block h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 1.25rem; color: var(--gold-light); }
.content-block h2 { font-size: clamp(1.35rem, 2.5vw, 1.9rem); margin-top: 2.5rem; margin-bottom: 1rem; color: var(--text-primary); border-left: 3px solid var(--gold); padding-left: 0.75rem; }
.content-block h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); margin-top: 1.75rem; margin-bottom: 0.75rem; color: var(--gold-light); }
.content-block h4 { font-size: 1.05rem; margin-top: 1.5rem; margin-bottom: 0.5rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.85rem; }

.content-block p { margin-bottom: 1.1rem; color: var(--text-muted); }
.content-block p strong { color: var(--text-primary); }
.content-block p:last-child { margin-bottom: 0; }

.content-block ul,
.content-block ol {
  margin: 0.85rem 0 1.25rem 1.1rem;
  color: var(--text-muted);
}

.content-block ul { list-style: none; padding-left: 0; }
.content-block ul li {
  padding: 0.3rem 0 0.3rem 1.4rem;
  position: relative;
}
.content-block ul li::before {
  content: '▸';
  color: var(--gold);
  position: absolute;
  left: 0;
  font-size: 0.8em;
  top: 0.5rem;
}

.content-block ol { list-style: none; padding-left: 0; counter-reset: ol-counter; }
.content-block ol li {
  padding: 0.4rem 0 0.4rem 2.2rem;
  position: relative;
  counter-increment: ol-counter;
}
.content-block ol li::before {
  content: counter(ol-counter);
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--gold);
  color: #000;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
}

.content-block ul li strong,
.content-block ol li strong { color: var(--text-primary); }

.content-block blockquote {
  border-left: 3px solid var(--gold);
  padding: 0.75rem 1.25rem;
  margin: 1.25rem 0;
  background: var(--gold-dim);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-muted);
}

/* ── 5. Layout Utilities ───────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px)  { .container { padding: 0 2rem; } }
@media (min-width: 1280px) { .container { padding: 0 1.5rem; } }

.section { padding: 3rem 0; }
.section--lg { padding: 4.5rem 0; }

/* ── 6. Header ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--bg-header);
  border-bottom: 1px solid var(--gold-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo__name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.logo__name span { color: var(--gold); }

/* Nav */
.site-nav { display: none; }

@media (min-width: 1024px) {
  .site-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .site-nav a {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
  }

  .site-nav a:hover,
  .site-nav a.active {
    color: var(--text-primary);
    background: rgba(255,255,255,0.06);
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 17px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (min-width: 1024px) { .hamburger { display: none; } }

/* Mobile Nav Dropdown */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--bg-header);
  border-bottom: 1px solid var(--gold-border);
  z-index: 999;
  padding: 1rem 0;
}

.mobile-nav.open { display: block; }

.mobile-nav a {
  display: block;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), background var(--transition);
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--text-primary); background: rgba(255,255,255,0.04); }
.mobile-nav .btn--gold { margin: 1rem 1.5rem 0.5rem; display: block; text-align: center; }

/* ── 7. Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1;
}

.btn--gold {
  background: linear-gradient(135deg, #d4a83a, #c9a84c, #b8902e);
  color: #000;
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}

.btn--gold:hover {
  background: linear-gradient(135deg, #e8c76d, #d4a83a);
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.5);
}

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

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--gold-border);
  color: var(--gold-light);
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
}

.btn--outline:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  color: var(--gold-light);
}

.btn--lg {
  padding: 0.9rem 2.2rem;
  font-size: 1.05rem;
}

.btn--xl {
  padding: 1.05rem 2.75rem;
  font-size: 1.15rem;
  border-radius: var(--radius-lg);
}

/* ── 8. Hero Section ───────────────────────────────────────── */
.hero {
  margin-top: var(--header-h);
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,8,15,0.92) 0%,
    rgba(9,17,30,0.78) 40%,
    rgba(7,8,15,0.65) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 4rem 0 3rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.hero__eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 1.1rem;
  max-width: 700px;
}

.hero__title .gold { color: var(--gold); }

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 540px;
  line-height: 1.5;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.hero__bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.06));
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1.4rem;
  margin-bottom: 2rem;
}

.hero__bonus-badge .value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
}

.hero__bonus-badge .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ── 9. Trust Badges ───────────────────────────────────────── */
.trust-bar {
  background: rgba(13,17,23,0.95);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--border);
  padding: 0.875rem 0;
  position: relative;
  z-index: 2;
}

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  align-items: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}

.trust-badge__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.trust-badge .rating { color: var(--gold); font-weight: 700; }

/* ── 10. Slots Grid ────────────────────────────────────────── */
.slots-section {
  background: var(--bg-secondary);
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--text-primary);
}

.section-title span { color: var(--gold); }

.section-count {
  font-size: 0.85rem;
  color: var(--text-dim);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

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

@media (min-width: 576px)  { .slots-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px)  { .slots-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
@media (min-width: 1024px) { .slots-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }

.slot-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  aspect-ratio: 3/4;
}

.slot-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-border);
  box-shadow: var(--shadow-card), 0 0 0 1px var(--gold-border);
}

.slot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.slot-card:hover img { transform: scale(1.06); }

.slot-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.85rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.slot-card:hover .slot-card__overlay { opacity: 1; }

.slot-card__name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.slot-card__btn {
  display: block;
  background: var(--gold);
  color: #000;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  transition: background var(--transition);
}

.slot-card__btn:hover { background: var(--gold-light); color: #000; }

/* Always-visible bottom info on mobile */
.slot-card__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  padding: 1.5rem 0.75rem 0.6rem;
}

.slot-card__provider {
  font-size: 0.65rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── 11. Content Block (SEO) ───────────────────────────────── */
.seo-section {
  padding: 3.5rem 0 4rem;
}

.content-block {
  max-width: 100%;
}

/* ── 12. Tables ────────────────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.25rem 0 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-border);
  position: relative;
}

.table-wrap::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 32px;
  background: linear-gradient(to left, var(--bg-secondary), transparent);
  pointer-events: none;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  opacity: 0;
  transition: opacity var(--transition);
}

.table-wrap.has-overflow::after { opacity: 1; }

.content-block table,
table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.content-block table thead,
table thead {
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.08));
}

.content-block table th,
table th {
  padding: 0.85rem 1rem;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-border);
  white-space: nowrap;
}

.content-block table td,
table td {
  padding: 0.8rem 1rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.content-block table tr:last-child td,
table tr:last-child td { border-bottom: none; }

.content-block table tr:hover td,
table tr:hover td { background: rgba(255,255,255,0.02); }

.content-block table td strong,
table td strong { color: var(--text-primary); font-weight: 600; }

/* ── 13. CTA Section / Banner ──────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.03));
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  margin: 2.5rem 0;
}

.cta-section h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 0.75rem;
  border: none !important;
  padding: 0 !important;
  margin-top: 0 !important;
}

.cta-section p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 1.75rem;
}

.cta-section .btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Legacy — kept for safety */
.cta-image-wrap {
  display: none;
}

/* CTA overlaid on image */
.cta-hero {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin: 2.5rem 0;
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-gold);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.cta-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,8,15,0.88) 0%, rgba(9,17,30,0.75) 60%, rgba(7,8,15,0.82) 100%);
  z-index: 1;
}

.cta-hero__body {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2.5rem 2rem;
  width: 100%;
}

.cta-hero__body h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 0.75rem;
  border: none !important;
  padding: 0 !important;
  margin-top: 0 !important;
  color: var(--text-primary);
}

.cta-hero__body p {
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 1.75rem;
}

.cta-hero__body .btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ── 14. Steps List ────────────────────────────────────────── */
.steps-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.steps-list li {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-bottom: 0.75rem;
  transition: border-color var(--transition);
}

.steps-list li:hover { border-color: var(--gold-border); }

.steps-list__num {
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  background: linear-gradient(135deg, var(--gold), #b8902e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: #000;
  margin-top: 0.1rem;
}

.steps-list__body strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.steps-list__body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── 15. Testimonials ──────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin: 1.5rem 0;
}

@media (min-width: 640px)  { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  transition: border-color var(--transition);
}

.testimonial-card:hover { border-color: var(--gold-border); }

.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}

.testimonial-card__text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.875rem;
  font-style: italic;
}

.testimonial-card__author {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 600;
}

/* ── 16. Metric Cards ──────────────────────────────────────── */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
  text-align: center;
}

.metric-card__value {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.metric-card__label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── 17. Feature Grid ──────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  margin: 1.5rem 0;
}

@media (min-width: 640px)  { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(4, 1fr); } }

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: border-color var(--transition), transform var(--transition);
}

.feature-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-2px);
}

.feature-card__icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  display: block;
}

.feature-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.feature-card__desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── 18. FAQ ───────────────────────────────────────────────── */
.faq-list {
  margin: 1.5rem 0;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 0.625rem;
  overflow: hidden;
}

.faq-item summary,
.faq-q {
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background var(--transition);
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover,
.faq-q:hover { background: rgba(255,255,255,0.03); }

.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 400;
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-a {
  padding: 0 1.25rem 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  border-top: 1px solid var(--border);
  padding-top: 0.875rem;
}

/* ── 19. Responsible Gambling Banner ───────────────────────── */
.rg-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.rg-section h3 {
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  font-family: 'Outfit', sans-serif;
}

.rg-section p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.rg-section a { color: var(--gold); }

/* ── 20. Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--gold-border);
  padding: 3rem 0 2rem;
}

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

@media (min-width: 768px) {
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
}

.footer-brand__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.875rem;
  line-height: 1.65;
}

.footer-nav h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-nav ul { list-style: none; padding: 0; }

.footer-nav ul li { margin-bottom: 0.5rem; }

.footer-nav ul li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-nav ul li a:hover { color: var(--text-primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.75rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-badge .age {
  background: var(--gold);
  color: #000;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  flex-shrink: 0;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

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

/* ── 21. Popup Banner (Fixed Bottom) ───────────────────────── */
.popup-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 2000;
  background: linear-gradient(90deg, #09111e, #0d1a2e);
  border-top: 2px solid var(--gold);
  box-shadow: 0 -4px 32px rgba(201,168,76,0.25);
  padding: 0.75rem 1rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

/* Mobile: two rows */
.popup-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.5rem 0.5rem;
  max-width: var(--container);
  margin: 0 auto;
}

.popup-banner__text {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.popup-banner__icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.popup-banner__headline {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--text-primary);
  line-height: 1.3;
}

.popup-banner__sub {
  font-size: 0.68rem;
  color: var(--text-muted);
  line-height: 1.3;
  grid-column: 1;
  grid-row: 2;
}

.popup-close {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
}

.popup-banner__actions {
  grid-column: 1 / -1;
  grid-row: 3;
}

.popup-banner__actions .btn--gold {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}

/* Desktop: single row */
@media (min-width: 640px) {
  .popup-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: nowrap;
  }

  /* text block: icon + headline/sub stacked */
  .popup-banner__text {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
  }

  .popup-banner__text > div,
  .popup-banner__text > .popup-banner__headline {
    min-width: 0;
  }

  .popup-banner__icon { font-size: 1.6rem; }

  .popup-banner__headline {
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* sub text: inline after icon+headline block */
  .popup-banner__sub {
    display: block;
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 0.72rem;
  }

  /* actions: just the button, before close */
  .popup-banner__actions {
    flex-shrink: 0;
    order: 3;
  }

  .popup-banner__actions .btn--gold {
    display: inline-flex;
    width: auto;
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  /* close button always last on the right */
  .popup-close {
    order: 4;
    align-self: center;
    flex-shrink: 0;
  }
}

.popup-close {
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  font-size: 1.4rem;
  padding: 0.25rem;
  line-height: 1;
  transition: color var(--transition);
}

.popup-close:hover { color: var(--text-primary); }

/* ── 22. Page Hero Variations ──────────────────────────────── */
.page-hero {
  margin-top: var(--header-h);
  position: relative;
  height: clamp(280px, 40vh, 440px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,8,15,0.93) 0%, rgba(9,17,30,0.75) 60%, rgba(7,8,15,0.6) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 2rem 1.25rem;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 768px)  { .page-hero__content { padding-left: 2rem; padding-right: 2rem; } }
@media (min-width: 1280px) { .page-hero__content { padding-left: 1.5rem; padding-right: 1.5rem; } }

.page-hero__label {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 0.875rem;
}

.page-hero__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.875rem;
  line-height: 1.15;
}

.page-hero__title .gold { color: var(--gold); }

.page-hero__sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

/* ── 23. Breadcrumb ────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 0.875rem;
}

.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--text-dim); }
.breadcrumb .current { color: var(--text-muted); }

/* ── 24. Bonus Box (highlight offer) ──────────────────────── */
.bonus-highlight {
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04));
  border: 1.5px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.bonus-highlight::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(201,168,76,0.15), transparent 70%);
}

.bonus-highlight__amount {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

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

.bonus-highlight__terms {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 1rem;
}

/* Promo Code */
.promo-code {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,0,0,0.4);
  border: 1.5px dashed var(--gold-border);
  border-radius: var(--radius-md);
  padding: 0.6rem 1.25rem;
  font-family: 'Outfit', monospace;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin: 1rem 0;
}

.promo-code__label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

/* ── 25. Utils ─────────────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: revert; } }

/* Header CTA button — compact on mobile, full size on desktop */
.btn--header-cta {
  padding: 0.45rem 0.85rem;
  font-size: 0.78rem;
  border-radius: var(--radius-sm);
}

@media (min-width: 1024px) {
  .btn--header-cta {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
  }
}

/* ── 26. Scroll to top ─────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  z-index: 1500;
  width: 42px; height: 42px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  font-size: 1rem;
  color: var(--gold);
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover { transform: translateY(-2px); }
