:root {
  --bg-deep: #050A15;
  --bg-primary: #0A1225;
  --bg-elevated: #0F1A33;
  --bg-card: #132040;
  --bg-card-hover: #182850;
  --bg-glass: rgba(13, 22, 45, 0.75);
  --accent: #C8A24D;
  --accent-light: #E4C76B;
  --accent-dim: rgba(200, 162, 77, 0.10);
  --accent-glow: rgba(200, 162, 77, 0.25);
  --text: #EDE9E0;
  --text-secondary: #8B97AD;
  --text-muted: #546178;
  --border: rgba(200, 162, 77, 0.10);
  --border-accent: rgba(200, 162, 77, 0.25);
  --success: #3DAA6D;
  --danger: #D94F4F;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-card: 0 8px 32px rgba(0,0,0,0.35);
  --shadow-elevated: 0 16px 48px rgba(0,0,0,0.45);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--accent-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea { font-family: inherit; }

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

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(5, 10, 21, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem;
}

.site-logo { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; }
.site-logo svg { width: 36px; height: 36px; flex-shrink: 0; }
.site-logo-text {
  font-size: 1.1rem; font-weight: 700; color: var(--text);
  letter-spacing: -0.02em; white-space: nowrap;
}
.site-logo-text span { color: var(--accent); }

.nav-main { display: flex; align-items: center; gap: 0.25rem; }
.nav-main a {
  padding: 0.5rem 0.9rem; font-size: 0.875rem; font-weight: 500;
  color: var(--text-secondary); border-radius: var(--radius-sm);
  transition: all var(--transition); white-space: nowrap;
}
.nav-main a:hover, .nav-main a.active { color: var(--text); background: var(--accent-dim); }

.header-badge {
  display: flex; align-items: center; gap: 0.4rem;
  background: rgba(200, 162, 77, 0.12); border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm); padding: 0.3rem 0.7rem;
  font-size: 0.75rem; font-weight: 700; color: var(--accent);
}

.nav-toggle {
  display: none; background: none; border: none; color: var(--text);
  width: 40px; height: 40px; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; }

/* ── HERO ── */
.hero {
  position: relative; padding: 10rem 0 6rem; overflow: hidden;
  background: linear-gradient(165deg, var(--bg-deep) 0%, #0C1832 40%, #111F42 70%, var(--bg-deep) 100%);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/hero-bg.svg') center/cover no-repeat;
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background: url('../images/pattern-grid.svg') repeat;
  background-size: 80px 80px;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
}
.hero-content { max-width: 700px; }
.hero-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--accent-dim); border: 1px solid var(--border-accent);
  border-radius: 100px; padding: 0.4rem 1rem; font-size: 0.8rem;
  font-weight: 600; color: var(--accent); margin-bottom: 1.5rem;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.15; margin-bottom: 1.25rem; letter-spacing: -0.03em; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 2rem; max-width: 560px; }

/* ── SECTIONS ── */
.section {
  padding: 5rem 0; position: relative;
  background-image: url('../images/pattern-grid.svg');
  background-size: 80px 80px;
}
.section--alt {
  background-color: var(--bg-primary);
  background-image: url('../images/showcase-glow.svg'), url('../images/pattern-grid.svg');
  background-size: cover, 80px 80px;
  background-position: center, 0 0;
  background-repeat: no-repeat, repeat;
}
.section + .section { border-top: 1px solid var(--border); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 700; margin-bottom: 0.75rem; letter-spacing: -0.02em; }
.section-header p { color: var(--text-secondary); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent);
  margin-bottom: 0.75rem;
}

/* ── CASINO SHOWCASE ── */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.casino-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--border);
  transition: all var(--transition); display: flex; flex-direction: column;
}
.casino-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevated), 0 0 40px rgba(200,162,77,0.08); border-color: var(--border-accent); }

.casino-card--featured { grid-column: span 2; }

.casino-card__banner {
  height: 120px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.casino-card__banner::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to top, var(--bg-card), transparent);
  pointer-events: none;
}
.casino-card--featured .casino-card__banner { height: 150px; }

.casino-card__logo {
  width: 96px; height: 96px; border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1; background: rgba(255,255,255,0.95);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25), 0 0 40px rgba(255,255,255,0.08);
  overflow: hidden; padding: 10px;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}
.casino-card:hover .casino-card__logo {
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 60px rgba(200,162,77,0.12);
  transform: scale(1.04);
}
.casino-card--featured .casino-card__logo { width: 116px; height: 116px; padding: 12px; }
.casino-card__logo img {
  width: 100%; height: 100%; object-fit: contain;
  border-radius: var(--radius-md);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
}

.casino-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.casino-card__name { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.3rem; }
.casino-card--featured .casino-card__name { font-size: 1.35rem; }
.casino-card__tagline { font-size: 0.85rem; color: var(--accent); font-weight: 600; margin-bottom: 0.75rem; }
.casino-card__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.tag {
  font-size: 0.72rem; font-weight: 600; padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm); background: var(--accent-dim);
  color: var(--accent-light); border: 1px solid var(--border);
  white-space: nowrap;
}
.tag--green { background: rgba(61,170,109,0.1); color: #5FCF8E; border-color: rgba(61,170,109,0.2); }
.casino-card__desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 1.25rem; flex: 1; }
.casino-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: auto; }

/* ── BRAND COLORS ── */
[data-brand="mr-green"] .casino-card__banner { background: linear-gradient(135deg, #00843D, #00C853); }
[data-brand="unibet"] .casino-card__banner { background: linear-gradient(135deg, #0D7A5F, #14A67A); }
[data-brand="betsson"] .casino-card__banner { background: linear-gradient(135deg, #E65100, #FF8F00); }
[data-brand="danske-spil"] .casino-card__banner { background: linear-gradient(135deg, #B71C1C, #E53935); }
[data-brand="tivoli"] .casino-card__banner { background: linear-gradient(135deg, #880E4F, #C2185B); }
[data-brand="spildansknu"] .casino-card__banner { background: linear-gradient(135deg, #4A148C, #7B1FA2); }
[data-brand="bet25"] .casino-card__banner { background: linear-gradient(135deg, #0D47A1, #2196F3); }
[data-brand="tombola"] .casino-card__banner { background: linear-gradient(135deg, #BF360C, #F4511E); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.65rem 1.5rem; font-size: 0.875rem; font-weight: 600;
  border-radius: var(--radius-md); border: none;
  transition: all var(--transition); text-decoration: none; white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #0A0E18; box-shadow: 0 4px 16px rgba(200,162,77,0.25);
}
.btn--primary:hover { box-shadow: 0 6px 24px rgba(200,162,77,0.4); transform: translateY(-1px); color: #0A0E18; }
.btn--outline {
  background: transparent; color: var(--accent);
  border: 1px solid var(--border-accent);
}
.btn--outline:hover { background: var(--accent-dim); color: var(--accent-light); }
.btn--sm { padding: 0.45rem 1rem; font-size: 0.8rem; }
.btn--lg { padding: 0.85rem 2rem; font-size: 1rem; }

.age-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(217, 79, 79, 0.15); border: 2px solid var(--danger);
  font-size: 0.7rem; font-weight: 800; color: var(--danger); flex-shrink: 0;
}

/* ── DISCLOSURE BAR ── */
.disclosure-bar {
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem 2rem;
  margin-top: 3rem; display: flex; align-items: flex-start; gap: 1rem;
}
.disclosure-bar__icon {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%;
  background: var(--accent-dim); display: flex; align-items: center; justify-content: center;
}
.disclosure-bar__icon svg { width: 20px; height: 20px; color: var(--accent); }
.disclosure-bar p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; }

/* ── TRUST GRID ── */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.trust-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: all var(--transition); text-align: center;
}
.trust-item:hover { border-color: var(--border-accent); transform: translateY(-2px); box-shadow: 0 0 40px rgba(200,162,77,0.06); }
.trust-item__icon {
  width: 56px; height: 56px; margin: 0 auto 1.25rem;
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  background: var(--accent-dim);
}
.trust-item__icon svg { width: 28px; height: 28px; color: var(--accent); }
.trust-item h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.trust-item p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* ── RG BANNER ── */
.rg-banner {
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
  border: 1px solid rgba(61, 170, 109, 0.2); border-radius: var(--radius-xl);
  padding: 3rem; display: flex; align-items: center; gap: 2.5rem;
  box-shadow: 0 0 80px rgba(61, 170, 109, 0.06), 0 8px 32px rgba(0,0,0,0.2);
}
.rg-banner__visual {
  flex-shrink: 0; width: 100px; height: 100px; border-radius: 50%;
  background: rgba(61, 170, 109, 0.1); border: 2px solid rgba(61, 170, 109, 0.3);
  display: flex; align-items: center; justify-content: center;
}
.rg-banner__visual svg { width: 48px; height: 48px; color: var(--success); }
.rg-banner__content h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.5rem; }
.rg-banner__content p { color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.65; }
.rg-banner__links { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.rg-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 0.9rem; border-radius: var(--radius-sm);
  background: rgba(61, 170, 109, 0.08); border: 1px solid rgba(61, 170, 109, 0.2);
  font-size: 0.82rem; font-weight: 600; color: #5FCF8E;
  transition: all var(--transition);
}
.rg-link:hover { background: rgba(61, 170, 109, 0.15); color: #7DEFA8; }
.rg-link img {
  width: 28px; height: 28px; object-fit: contain;
  border-radius: var(--radius-sm); background: rgba(255,255,255,0.9);
  padding: 3px; box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  margin-bottom: 0.75rem; overflow: hidden; background: var(--bg-card);
}
.faq-question {
  width: 100%; background: none; border: none; color: var(--text);
  padding: 1.25rem 1.5rem; font-size: 1rem; font-weight: 600;
  text-align: left; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; transition: all var(--transition);
}
.faq-question:hover { background: var(--accent-dim); }
.faq-question svg { width: 20px; height: 20px; color: var(--text-muted); transition: transform var(--transition); flex-shrink: 0; margin-left: 1rem; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: all 0.4s ease; }
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 1.25rem; }
.faq-answer p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7; }

/* ── FOOTER ── */
.site-footer {
  background: var(--bg-primary);
  background-image: url('../images/footer-bg.svg');
  background-size: cover;
  background-position: top center;
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand p { font-size: 0.88rem; color: var(--text-secondary); margin-top: 1rem; line-height: 1.65; }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.9rem; color: var(--text-secondary); padding: 0.3rem 0; transition: color var(--transition); }
.footer-col a:hover { color: var(--accent-light); }

.footer-regulators {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem;
  padding: 2.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  justify-content: center;
}
.footer-regulators a {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.85rem; font-weight: 600; color: var(--text-muted);
  padding: 0.75rem 1.25rem; border-radius: var(--radius-lg);
  background: var(--bg-elevated); border: 1px solid var(--border);
  transition: all var(--transition);
}
.footer-regulators a:hover {
  border-color: var(--border-accent); color: var(--text-secondary);
  box-shadow: 0 4px 20px rgba(200,162,77,0.08);
  transform: translateY(-1px);
}
.footer-regulators a svg { width: 36px; height: 36px; flex-shrink: 0; }
.footer-regulators a img {
  width: 44px; height: 44px; object-fit: contain; flex-shrink: 0;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.9);
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12), 0 0 20px rgba(255,255,255,0.04);
}

.footer-compliance {
  padding: 2rem 0; display: flex; flex-direction: column; gap: 1rem;
  font-size: 0.82rem; color: var(--text-muted); line-height: 1.65;
}
.footer-compliance__row { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.footer-compliance .age-badge { width: 32px; height: 32px; font-size: 0.65rem; }

.footer-bottom {
  border-top: 1px solid var(--border); padding: 1.5rem 0 3rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: var(--text-muted);
}

/* ── PAGE HEADER ── */
.page-hero {
  padding: 9rem 0 4rem;
  background: linear-gradient(165deg, var(--bg-deep), var(--bg-primary) 60%, var(--bg-elevated) 100%);
  background-image: url('../images/page-hero-bg.svg'), linear-gradient(165deg, var(--bg-deep), var(--bg-primary) 60%, var(--bg-elevated) 100%);
  background-size: cover, cover;
  background-position: center, center;
  position: relative;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; margin-bottom: 0.75rem; letter-spacing: -0.02em; }
.page-hero p { color: var(--text-secondary); font-size: 1.1rem; max-width: 620px; }

/* ── CONTENT ── */
.content-block { max-width: 800px; margin: 0 auto; }
.content-block h2 { font-size: 1.5rem; font-weight: 700; margin: 2.5rem 0 1rem; color: var(--text); }
.content-block h3 { font-size: 1.2rem; font-weight: 600; margin: 2rem 0 0.75rem; color: var(--text); }
.content-block p { color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.75; }
.content-block ul, .content-block ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.content-block ul { list-style: disc; }
.content-block ol { list-style: decimal; }
.content-block li { color: var(--text-secondary); margin-bottom: 0.4rem; line-height: 1.65; }
.content-block a { color: var(--accent-light); text-decoration: underline; text-underline-offset: 2px; }
.content-block a:hover { color: var(--accent); }
.content-block strong { color: var(--text); font-weight: 600; }

.info-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; margin: 1.5rem 0;
}
.info-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.75rem; }

/* ── CONTACT GRID ── */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.contact-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; text-align: center;
  transition: all var(--transition);
}
.contact-card:hover { border-color: var(--border-accent); }
.contact-card__icon {
  width: 52px; height: 52px; margin: 0 auto 1rem;
  border-radius: 50%; background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center;
}
.contact-card__icon svg { width: 24px; height: 24px; color: var(--accent); }
.contact-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; }
.contact-card p { font-size: 0.88rem; color: var(--text-secondary); }

/* ── REVIEW STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; counter-reset: step; }
.step-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; counter-increment: step;
  position: relative; transition: all var(--transition);
}
.step-card:hover { border-color: var(--border-accent); }
.step-card::before {
  content: counter(step); position: absolute; top: -12px; left: 1.5rem;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent); color: var(--bg-deep);
  font-size: 0.75rem; font-weight: 800; display: flex; align-items: center;
  justify-content: center;
}
.step-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; margin-top: 0.5rem; }
.step-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* ── AGE GATE ── */
.age-gate {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(5, 10, 21, 0.97);
  backdrop-filter: blur(24px);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
}
.age-gate__box {
  background: var(--bg-elevated); border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl); padding: 3rem; max-width: 460px;
  width: 100%; text-align: center; box-shadow: var(--shadow-elevated);
}
.age-gate__icon {
  width: 72px; height: 72px; margin: 0 auto 1.5rem; border-radius: 50%;
  background: rgba(217, 79, 79, 0.12); border: 2px solid var(--danger);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; font-weight: 900; color: var(--danger);
}
.age-gate__box h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.75rem; }
.age-gate__box p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 2rem; line-height: 1.6; }
.age-gate__actions { display: flex; gap: 1rem; justify-content: center; }
.age-gate__actions .btn { min-width: 140px; }
.age-gate__exit { margin-top: 1.5rem; font-size: 0.82rem; color: var(--text-muted); }
.age-gate__exit a { color: var(--text-muted); text-decoration: underline; }

/* ── COOKIE CONSENT ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: var(--bg-elevated); border-top: 1px solid var(--border-accent);
  padding: 1.5rem 0; box-shadow: 0 -8px 32px rgba(0,0,0,0.4);
  transform: translateY(100%); transition: transform 0.5s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; gap: 1.5rem;
}
.cookie-inner p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; flex: 1; }
.cookie-inner a { color: var(--accent-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }

/* ── SUPPORT RESOURCE ── */
.resource-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.resource-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: all var(--transition);
}
.resource-card:hover { border-color: var(--border-accent); }
.resource-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.resource-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.resource-card h3 img {
  width: 40px; height: 40px; object-fit: contain;
  border-radius: var(--radius-md); background: rgba(255,255,255,0.9);
  padding: 4px; box-shadow: 0 2px 10px rgba(0,0,0,0.1), 0 0 16px rgba(255,255,255,0.04);
}

/* ── LICENSE TABLE ── */
.license-table {
  width: 100%; border-collapse: collapse;
  background: var(--bg-card); border-radius: var(--radius-lg);
  overflow: hidden; margin: 1.5rem 0;
}
.license-table th, .license-table td { padding: 1rem 1.25rem; text-align: left; border-bottom: 1px solid var(--border); }
.license-table th { background: var(--bg-elevated); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); }
.license-table td { font-size: 0.9rem; color: var(--text-secondary); }
.license-table tr:last-child td { border-bottom: none; }

/* ── CARD DISCLAIMER ── */
.casino-card__disclaimer {
  font-size: 0.72rem; color: var(--text-muted); line-height: 1.5;
  padding-top: 0.75rem; margin-top: 0.75rem;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
}
.casino-card__disclaimer a { color: var(--text-muted); text-decoration: underline; text-underline-offset: 2px; }
.casino-card__disclaimer a:hover { color: var(--accent-light); }
.casino-card__disclaimer .age-badge--sm {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(217, 79, 79, 0.12); border: 1.5px solid var(--danger);
  font-size: 0.55rem; font-weight: 800; color: var(--danger); flex-shrink: 0;
}

/* ── RG NOTICE STRIPS ── */
.rg-strip {
  background: var(--bg-elevated); border: 1px solid rgba(61, 170, 109, 0.15);
  border-radius: var(--radius-md); padding: 1rem 1.5rem;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6;
}
.rg-strip--center { justify-content: center; text-align: center; }
.rg-strip .age-badge--sm {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(217, 79, 79, 0.12); border: 1.5px solid var(--danger);
  font-size: 0.6rem; font-weight: 800; color: var(--danger); flex-shrink: 0;
}
.rg-strip a { color: var(--accent-light); text-decoration: underline; text-underline-offset: 2px; }
.rg-strip a:hover { color: var(--accent); }
.rg-strip svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--success); }
.rg-strip img {
  width: 28px; height: 28px; object-fit: contain; flex-shrink: 0;
  border-radius: var(--radius-sm); background: rgba(255,255,255,0.9);
  padding: 3px; box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* ── FLOATING RG RIBBON ── */
.rg-ribbon {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: rgba(10, 18, 37, 0.95); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(61, 170, 109, 0.2);
  padding: 0.6rem 0; font-size: 0.75rem; text-align: center;
  color: var(--text-muted); transition: transform 0.4s ease;
}
.rg-ribbon span { margin: 0 0.75rem; }
.rg-ribbon a { color: var(--text-secondary); text-decoration: underline; }
.rg-ribbon .age-badge--xs {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(217, 79, 79, 0.12); border: 1.5px solid var(--danger);
  font-size: 0.5rem; font-weight: 800; color: var(--danger);
  vertical-align: middle;
}
.rg-ribbon.hidden-ribbon { transform: translateY(100%); }

/* ── INLINE DISCLAIMER TAG ── */
.disclaimer-inline {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; color: var(--text-muted); margin-top: 0.5rem;
}
.disclaimer-inline svg { width: 14px; height: 14px; }

/* ── PAGE HERO RG NOTE ── */
.page-hero__rg {
  margin-top: 1.25rem; display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: var(--text-muted);
}
.page-hero__rg .age-badge--sm {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(217, 79, 79, 0.12); border: 1.5px solid var(--danger);
  font-size: 0.55rem; font-weight: 800; color: var(--danger); flex-shrink: 0;
}

/* ── HIDDEN ── */
.hidden { display: none !important; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .casino-card--featured { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-main { 
    position: fixed; inset: 0; top: 72px; z-index: 899;
    background: var(--bg-primary); flex-direction: column;
    align-items: stretch; padding: 1rem;
    transform: translateX(100%); transition: transform var(--transition);
    border-left: 1px solid var(--border);
  }
  .nav-main.open { transform: translateX(0); }
  .nav-main a { padding: 0.9rem 1rem; font-size: 1rem; }
  .nav-toggle { display: flex; }
  .header-badge { display: none; }

  .hero { padding: 8rem 0 4rem; }
  .hero h1 { font-size: 2rem; }
  .section { padding: 3.5rem 0; }

  .showcase-grid { grid-template-columns: 1fr; }

  .rg-banner { flex-direction: column; text-align: center; padding: 2rem; }
  .rg-banner__links { justify-content: center; }

  .disclosure-bar { flex-direction: column; text-align: center; }
  .disclosure-bar__icon { margin: 0 auto; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .footer-regulators { justify-content: center; }

  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-actions { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .age-gate__box { padding: 2rem 1.5rem; }
  .age-gate__actions { flex-direction: column; }
  .age-gate__actions .btn { width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
}
