/* MafiaCasino — Global Styles (de-AT)
   Mafia-themed dark luxe with red accents */

:root {
  --bg-0: #0a0a0f;
  --bg-1: #12121a;
  --bg-2: #1a1a26;
  --bg-3: #232333;
  --bg-card: #1c1c28;
  --bg-card-hover: #232333;
  --bg-elevated: #2a2a3a;

  --text-0: #ffffff;
  --text-1: #e6e6ee;
  --text-2: #b4b4c0;
  --text-3: #8a8a98;
  --text-muted: #6a6a78;

  --accent: #f41340;
  --accent-hover: #ff2e57;
  --accent-glow: rgba(244, 19, 64, 0.4);
  --gold: #d4af37;
  --success: #2bbd5b;
  --warning: #f59e0b;

  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);

  --radius: 10px;
  --radius-lg: 16px;
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-card-hover: 0 8px 32px rgba(244, 19, 64, 0.15);

  --container-max: 1280px;
  --header-h: 64px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Georgia', 'Times New Roman', serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 2px; }

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-1);
  background-color: var(--bg-0);
  background-image:
    /* warm red spotlight top-center */
    radial-gradient(ellipse 1400px 800px at 50% -50px, rgba(244, 19, 64, 0.28), transparent 60%),
    /* gold spotlight right */
    radial-gradient(circle 900px at 100% 20%, rgba(212, 175, 55, 0.12), transparent 60%),
    /* deeper red glow bottom-left */
    radial-gradient(circle 900px at 0% 100%, rgba(244, 19, 64, 0.16), transparent 65%),
    /* vignette / corner darkening */
    radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.55) 100%),
    /* art-deco repeating pattern */
    url('/images/bg-pattern.svg'),
    /* base radial dark gradient with warm core */
    radial-gradient(ellipse at 50% 30%, #1f1722 0%, #14111a 35%, #0a0a10 70%, #050507 100%);
  background-attachment: fixed, fixed, fixed, fixed, fixed, fixed;
  background-size: auto, auto, auto, auto, 320px 320px, cover;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat, no-repeat;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Subtle film-grain noise overlay on top of everything */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('/images/bg-noise.svg');
  background-size: 160px 160px;
  background-repeat: repeat;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  mix-blend-mode: overlay;
}

/* Make sure content sits above the noise layer */
.main, .site-footer { position: relative; z-index: 1; }
.site-header { position: sticky; z-index: 100; }
.mobile-menu { z-index: 200; }
/* Body scroll lock when mobile menu open */
html.menu-open, body.menu-open {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: contain;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-0);
  line-height: 1.2;
  margin: 0 0 0.75em;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-top: 2rem; }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.4rem); margin-top: 1.5rem; }
h4 { font-size: 1.1rem; margin-top: 1.25rem; }

p { margin: 0 0 1rem; color: var(--text-1); }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--accent-hover); text-decoration: underline; }

ul, ol {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}
li { margin-bottom: 0.4rem; color: var(--text-1); }
li ul, li ol { margin-top: 0.4rem; }

strong, b { color: var(--text-0); font-weight: 700; }
em { color: var(--text-1); font-style: italic; }

blockquote {
  border-left: 3px solid var(--accent);
  padding: 0.5rem 1rem;
  margin: 1rem 0;
  background: rgba(244, 19, 64, 0.05);
  color: var(--text-2);
  font-style: italic;
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1rem 0;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
}
table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 0.95rem;
}
thead { background: var(--bg-elevated); }
th, td {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-1);
}
th { color: var(--text-0); font-weight: 700; font-family: var(--font-display); }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: rgba(255, 255, 255, 0.02); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  line-height: 1.2;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
  position: relative;
  background: linear-gradient(180deg, #ff2e57 0%, var(--accent) 50%, #c00a30 100%);
  color: var(--text-0);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 -1px 0 rgba(0, 0, 0, 0.3) inset,
    0 4px 14px var(--accent-glow),
    0 0 0 1px rgba(244, 19, 64, 0.3);
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn-primary:hover {
  background: linear-gradient(180deg, #ff4570 0%, var(--accent-hover) 50%, var(--accent) 100%);
  color: var(--text-0);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.25) inset,
    0 8px 24px var(--accent-glow),
    0 0 0 1px rgba(244, 19, 64, 0.5);
  transform: translateY(-2px);
}
.btn-primary:hover::before { transform: translateX(100%); }

.btn-outline {
  background: rgba(20, 20, 32, 0.6);
  color: var(--text-0);
  border: 1px solid rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(40, 30, 35, 0.85);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.18);
}

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }

/* Header / Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background:
    linear-gradient(180deg, rgba(15, 10, 18, 0.85), rgba(10, 8, 15, 0.95));
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(212, 175, 55, 0.08) inset;
}
.site-header::after {
  content: '';
  position: absolute;
  inset: auto 0 -1px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), rgba(244, 19, 64, 0.4), rgba(212, 175, 55, 0.4), transparent);
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: var(--header-h);
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img { height: 36px; width: auto; display: block; }

.nav-primary {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
  flex: 1;
}
.nav-primary li { margin: 0; }
.nav-primary a {
  position: relative;
  display: block;
  padding: 0.5rem 0.85rem;
  color: var(--text-2);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 6px;
  transition: all 0.2s;
}
.nav-primary a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transition: all 0.25s;
  transform: translateX(-50%);
  border-radius: 1px;
}
.nav-primary a:hover,
.nav-primary a.active {
  color: var(--text-0);
  background: rgba(244, 19, 64, 0.08);
  text-decoration: none;
}
.nav-primary a:hover::after,
.nav-primary a.active::after { width: 60%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.nav-cta .btn { padding: 0.55rem 1.1rem; font-size: 0.85rem; }

.burger {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.burger span {
  display: block;
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--text-0);
  border-radius: 2px;
  transition: all 0.25s;
}
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 28px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); top: 21px; }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); top: 21px; }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(20, 15, 25, 0.98), rgba(10, 8, 14, 0.99));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.mobile-menu.open { display: block; }
.mobile-menu-inner {
  height: 100%;
  overflow-y: auto;
  padding: 1.5rem 1.25rem 2rem;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu ul {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}
.mobile-menu li { margin: 0; border-bottom: 1px solid var(--border); }
.mobile-menu a {
  display: block;
  padding: 0.85rem 0.5rem;
  color: var(--text-1);
  font-weight: 600;
  font-size: 1rem;
}
.mobile-menu a:hover { color: var(--text-0); text-decoration: none; }
.mobile-menu .mobile-cta {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.mobile-menu .mobile-cta .btn { flex: 1; }
.mobile-menu .mobile-section-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 1.25rem 0 0.5rem 0.5rem;
}

/* Hero */
.hero {
  position: relative;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  max-width: 1280px;
}
.hero-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 6.5;
  overflow: hidden;
  background: linear-gradient(180deg, #1a0a14 0%, #0a0a0f 100%);
  border-radius: 0 0 18px 18px;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 8s ease-out;
}
.hero-image:hover img { transform: scale(1.06); }
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at left center, rgba(10, 10, 15, 0.92) 0%, rgba(10, 10, 15, 0.4) 50%, transparent 75%),
    linear-gradient(180deg, rgba(10, 10, 15, 0) 30%, rgba(10, 10, 15, 0.85) 100%);
  pointer-events: none;
}
/* Hero film-strip gold borders */
.hero-image::before {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 5%, var(--gold) 30%, var(--accent) 50%, var(--gold) 70%, transparent 95%);
  z-index: 2;
  opacity: 0.7;
}

/* Homepage banner — full-width Mafia banner image */
.hero--homepage { margin-bottom: 0; }
.hero-image--banner {
  aspect-ratio: 4 / 1;
  border-radius: 0 0 18px 18px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(244, 19, 64, 0.18),
    0 1px 0 rgba(212, 175, 55, 0.3) inset;
}
.hero-image--banner img {
  object-position: center center;
  transform: scale(1);
}
.hero-image--banner:hover img { transform: scale(1.02); }
/* Override the dark left overlay for banner — banner already has perfect lighting */
.hero-image--banner::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.45) 100%);
}

/* Hero band below banner — CTA + subtitle area */
.hero-band {
  position: relative;
  margin: -1px auto 0;
  padding: 1.75rem 1.25rem 2rem;
  max-width: 1280px;
  background:
    radial-gradient(ellipse 800px 200px at 50% 0%, rgba(244, 19, 64, 0.18), transparent 70%),
    linear-gradient(180deg, rgba(28, 20, 28, 0.85) 0%, rgba(15, 12, 18, 0.85) 100%);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-top: 0;
  border-radius: 0 0 16px 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
}
.hero-band .container { width: 100%; }
.hero-band-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--text-0);
  margin: 0 0 0.5rem;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6), 0 0 24px rgba(244, 19, 64, 0.2);
}
.hero-band-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  margin: 0.75rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), var(--accent), var(--gold), transparent);
  border-radius: 1px;
}
.hero-band-subtitle {
  font-size: 1.05rem;
  color: var(--text-1);
  max-width: 720px;
  margin: 0.85rem auto 1.5rem;
  line-height: 1.5;
}
.hero-band .hero-cta { justify-content: center; }
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 1.25rem;
  z-index: 2;
}
.hero-overlay .container { width: 100%; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.4rem 0.9rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 19, 64, 0.1));
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 999px;
  margin-bottom: 1rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.hero-title {
  color: var(--text-0);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7), 0 0 30px rgba(244, 19, 64, 0.15);
  max-width: 720px;
  font-weight: 800;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-1);
  margin-bottom: 1.75rem;
  max-width: 580px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
  line-height: 1.5;
}
.hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Main content */
.main { padding: 2rem 0 3rem; }
.content {
  position: relative;
  max-width: 920px;
  margin: 2rem auto 0;
  padding: 2rem 2.25rem 2.5rem;
  background:
    linear-gradient(180deg, rgba(28, 28, 40, 0.92) 0%, rgba(20, 20, 32, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 30px 60px -20px rgba(0, 0, 0, 0.6),
    0 8px 24px -8px rgba(244, 19, 64, 0.15);
  z-index: 2;
}
/* Gold top accent line on content card */
.content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), rgba(244, 19, 64, 0.5), transparent);
}
/* Decorative diamond top-right */
.content::after {
  content: '';
  position: absolute;
  top: -7px;
  right: 2rem;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, var(--accent), #d4af37);
  transform: rotate(45deg);
  box-shadow: 0 0 12px rgba(244, 19, 64, 0.5);
}
.content > * + * { margin-top: 0.5rem; }

/* Drop cap for first paragraph */
.content > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 700;
  float: left;
  line-height: 0.9;
  margin: 0.25rem 0.6rem 0 0;
  color: var(--accent);
  text-shadow: 0 2px 8px rgba(244, 19, 64, 0.3);
}

/* Headings inside content card — left red border bar */
.content h2 {
  position: relative;
  padding: 0.25rem 0 0.25rem 1rem;
  margin-top: 2.25rem;
  margin-bottom: 1rem;
  border-left: 3px solid var(--accent);
  background: linear-gradient(90deg, rgba(244, 19, 64, 0.08), transparent 50%);
  border-radius: 2px;
}
.content h3 {
  position: relative;
  margin-top: 1.5rem;
  padding-left: 0.85rem;
  border-left: 2px solid var(--gold);
}
.content h2::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 1rem;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

/* Paragraphs and lists with subtle bg block */
.content p { font-size: 1.02rem; line-height: 1.7; color: var(--text-1); }
.content ul, .content ol {
  background: rgba(255, 255, 255, 0.02);
  border-left: 2px solid rgba(212, 175, 55, 0.25);
  padding: 0.85rem 1rem 0.85rem 2.25rem;
  border-radius: 6px;
  margin: 1rem 0;
}
.content li { margin-bottom: 0.4rem; }
.content li::marker { color: var(--gold); }

/* Stronger table styling inside content */
.content .table-wrap {
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}
.content thead { background: linear-gradient(180deg, #2a1a22, #1a0f15); }
.content th { color: var(--gold); border-bottom: 1px solid rgba(212, 175, 55, 0.2); }

/* Blockquote inside content */
.content blockquote {
  background: linear-gradient(90deg, rgba(244, 19, 64, 0.08), rgba(244, 19, 64, 0.02));
  border-left: 4px solid var(--accent);
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  margin: 1.25rem 0;
}

/* Strong elements */
.content strong { color: var(--gold); }

/* Card grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}
.card h3 { margin-top: 0; font-size: 1.1rem; }
.card p { color: var(--text-2); font-size: 0.95rem; }
.card .btn { margin-top: auto; align-self: flex-start; }
.card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}

/* Promo banner */
.promo-banner {
  background: linear-gradient(135deg, #2a0a14 0%, #1a0a1a 100%);
  border: 1px solid rgba(244, 19, 64, 0.3);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}
.promo-banner h3 { margin-top: 0; color: var(--text-0); }
.promo-banner .badge {
  display: inline-block;
  background: var(--gold);
  color: var(--bg-0);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

/* CTA inline — make it a feature block */
.cta-inline {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  padding: 1.5rem;
  background:
    radial-gradient(ellipse at center, rgba(244, 19, 64, 0.18) 0%, transparent 60%),
    linear-gradient(135deg, rgba(40, 15, 25, 0.7), rgba(20, 10, 15, 0.7));
  border: 1px solid rgba(244, 19, 64, 0.25);
  border-radius: 12px;
  overflow: hidden;
}
.cta-inline::before, .cta-inline::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 70%);
  pointer-events: none;
}
.cta-inline::before { top: -40px; left: -40px; }
.cta-inline::after { bottom: -40px; right: -40px; background: radial-gradient(circle, rgba(244, 19, 64, 0.25), transparent 70%); }
.cta-inline .btn { position: relative; z-index: 1; }

/* Image section */
.section-image {
  width: 100%;
  border-radius: var(--radius-lg);
  margin: 1.5rem 0;
  display: block;
}

/* FAQ */
.faq details, .content details {
  background: linear-gradient(180deg, rgba(40, 30, 40, 0.5), rgba(20, 15, 25, 0.5));
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius);
  padding: 0;
  margin-bottom: 0.6rem;
  transition: all 0.25s;
}
.faq details[open], .content details[open] {
  background: linear-gradient(180deg, rgba(50, 30, 40, 0.7), rgba(25, 15, 22, 0.7));
  border-color: rgba(244, 19, 64, 0.4);
  box-shadow: 0 6px 18px rgba(244, 19, 64, 0.12);
}
.faq summary, .content details summary {
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--text-0);
  list-style: none;
  position: relative;
  padding-right: 2.75rem;
}
.faq summary::-webkit-details-marker, .content details summary::-webkit-details-marker { display: none; }
.faq summary::after, .content details summary::after {
  content: '+';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
  background: rgba(244, 19, 64, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  transition: all 0.25s;
}
.faq details[open] summary::after, .content details[open] summary::after {
  content: '−';
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateY(-50%) rotate(180deg);
}
.faq .faq-body { padding: 0 1.25rem 1.25rem; color: var(--text-2); }

/* Compliance footer block on each page */
.compliance-notice {
  position: relative;
  margin: 2.5rem 0 0;
  padding: 1.25rem 1.25rem 1.25rem 4rem;
  background: linear-gradient(135deg, rgba(244, 19, 64, 0.06), rgba(212, 175, 55, 0.04));
  border: 1px solid rgba(244, 19, 64, 0.25);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.55;
}
.compliance-notice::before {
  content: '18+';
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), #b00a30);
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(244, 19, 64, 0.4);
}
.compliance-notice strong { color: var(--gold); display: block; margin-bottom: 0.25rem; }

/* Site footer */
.site-footer {
  position: relative;
  background:
    linear-gradient(180deg, rgba(15, 12, 18, 0.5), rgba(8, 6, 12, 0.95)),
    var(--bg-1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), rgba(244, 19, 64, 0.6), rgba(212, 175, 55, 0.5), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-col h4 {
  position: relative;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  margin-top: 0;
  padding-bottom: 0.5rem;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  color: var(--text-2);
  font-size: 0.9rem;
}
.footer-col a:hover { color: var(--text-0); text-decoration: none; }

/* Regulators */
.regulators {
  position: relative;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  padding: 2rem 0;
  margin: 2rem 0;
  background: linear-gradient(180deg, rgba(20, 15, 22, 0.4), rgba(15, 10, 18, 0.4));
}
.regulators-title {
  position: relative;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 1.25rem;
}
.regulators-title::before, .regulators-title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.regulators-title::before { right: calc(50% + 130px); }
.regulators-title::after { left: calc(50% + 130px); transform: scaleX(-1); }
.regulators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
}
.regulator-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 0.6rem;
  background: linear-gradient(180deg, #ffffff, #f3f3f6);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.25s;
  text-decoration: none;
  min-height: 96px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
}
.regulator-btn:hover {
  background: linear-gradient(180deg, #ffffff, #ffffff);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--gold);
  text-decoration: none;
}
.regulator-btn img {
  max-height: 40px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.regulator-btn .reg-name {
  font-size: 0.72rem;
  color: #1a1a26;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
/* GGL has a white logo on transparent — needs dark tile */
.regulator-btn.dark-bg {
  background: linear-gradient(180deg, #1c1c28, #11111a);
  border-color: rgba(212, 175, 55, 0.3);
}
.regulator-btn.dark-bg:hover {
  background: linear-gradient(180deg, #2a2a3a, #1a1a28);
  border-color: var(--gold);
}
.regulator-btn.dark-bg .reg-name { color: var(--gold); }

/* Footer bottom */
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-3);
}
.footer-bottom p { margin: 0; color: var(--text-3); }
.footer-bottom .age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.footer-rg-line { display: flex; gap: 0.75rem; align-items: center; }

/* Responsive — mobile first refinements */
@media (max-width: 1024px) {
  .nav-primary { display: none; }
  .burger { display: block; }
  .nav-cta .btn-secondary { display: none; }
}

@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .container { padding: 0 1rem; }
  .content { padding: 1.5rem 1rem 2rem; margin-top: 1.5rem; }
  .content > p:first-of-type::first-letter { font-size: 2.8rem; }
  .nav-logo img { height: 32px; }
  .nav-cta .btn { padding: 0.45rem 0.9rem; font-size: 0.8rem; }
  .hero-image { aspect-ratio: 16 / 9; }
  .hero-image img { object-position: center 25%; }
  .hero-image--banner { aspect-ratio: 4 / 1; border-radius: 0 0 12px 12px; }
  .hero-image--banner img { object-fit: cover; object-position: center center; }
  .hero-overlay { padding: 1.25rem 1rem; align-items: flex-start; justify-content: flex-end; }
  .hero-title { font-size: 1.6rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-band { padding: 1.25rem 1rem 1.5rem; }
  .hero-band-title { font-size: 1.4rem; }
  .hero-band-subtitle { font-size: 0.95rem; }
  .hero-band .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-band .hero-cta .btn { width: 100%; }
  .promo-banner { padding: 1.25rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .regulators-grid { grid-template-columns: repeat(2, 1fr); }
  .regulators-title::before, .regulators-title::after { display: none; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
  table { font-size: 0.85rem; min-width: 360px; }
  th, td { padding: 0.5rem 0.75rem; }
  .compliance-notice { padding: 1rem 1rem 1rem 3.5rem; }
  .compliance-notice::before { width: 34px; height: 34px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-image { aspect-ratio: 16 / 10; }
  .hero-image img { object-position: center 30%; }
  .hero-image--banner { aspect-ratio: 4 / 1; }
  .hero-cta { width: 100%; flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}

/* Print */
@media print {
  .site-header, .site-footer, .nav-cta, .burger, .mobile-menu, .cta-inline, .hero-cta { display: none !important; }
  body { background: white; color: black; }
}

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Skip-to-content link — visible on keyboard focus */
.sr-skip:focus,
.sr-skip:focus-visible {
  position: fixed !important;
  top: 0.5rem;
  left: 0.5rem;
  width: auto;
  height: auto;
  padding: 0.6rem 1rem;
  margin: 0;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 6px;
  clip: auto;
  white-space: nowrap;
  z-index: 9999;
  box-shadow: 0 4px 14px rgba(244, 19, 64, 0.5);
}
