/* Color palette */
:root {
  --color-bg: #050b18;
  --color-bg-alt: #0b1224;
  --color-primary: #10b981;
  --color-primary-soft: rgba(16, 185, 129, 0.12);
  --color-accent: #f5b301;
  --color-text: #e5e7eb;
  --color-text-muted: #9ca3af;
  --color-border-subtle: rgba(148, 163, 184, 0.4);
  --color-danger: #f97373;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.75);
  --radius-xl: 18px;
}

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

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top, #020617 0, #020617 35%, #030712 100%);
  color: var(--color-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-main {
  flex: 1 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(
      to bottom,
      rgba(15, 23, 42, 0.96),
      rgba(15, 23, 42, 0.9),
      rgba(15, 23, 42, 0.8)
    );
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-block {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  flex-shrink: 0;
  border-radius: 10px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 18px;
}

.logo-subtitle {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav-link {
  position: relative;
  padding: 4px 0;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transition: width 0.2s ease;
}

.nav-link:hover {
  color: #f9fafb;
}

.nav-link.is-active {
  color: #f9fafb;
}

.nav-link.is-active::after {
  width: 22px;
}

.nav-badge {
  padding: 4px 8px;
  font-size: 11px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #a7f3d0;
}

.nav-cta {
  padding: 7px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #022c22;
  box-shadow: 0 12px 30px rgba(22, 163, 74, 0.45);
  transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.1s ease;
}

.nav-cta:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(22, 163, 74, 0.6);
}

.nav-cta:active {
  transform: translateY(0);
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.45);
}

.menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.9);
  color: var(--color-text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-text);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-text);
}

.menu-toggle span::before {
  top: -5px;
}

.menu-toggle span::after {
  top: 5px;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.12), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(245, 158, 11, 0.12), transparent 55%),
    url("assets/images/hero-bg-uk-casino.png") center/cover no-repeat;
  opacity: 0.25;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 20px 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 10px 4px 4px;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, rgba(250, 204, 21, 0.15), #020617);
  border: 1px solid rgba(148, 163, 184, 0.5);
  margin-bottom: 16px;
}

.hero-kicker-pill {
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: rgba(16, 185, 129, 0.1);
  color: #bbf7d0;
}

.hero-kicker-text {
  font-size: 12px;
  color: var(--color-text-muted);
}

.hero-title {
  font-size: clamp(30px, 4vw, 40px);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 12px;
}

.hero-title span {
  background: linear-gradient(135deg, #34d399, #facc15);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 480px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--color-text-muted);
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
}

.hero-rating-badge {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.15), #020617);
  font-size: 12px;
}

.hero-rating-badge strong {
  color: #e5e7eb;
}

.hero-rating-stars {
  display: flex;
  gap: 2px;
  color: #facc15;
}

.hero-card {
  position: relative;
  border-radius: 24px;
  background: radial-gradient(circle at 0 0, #0f172a 0, #020617 70%);
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-soft);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.hero-card-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
}

.hero-card-pill {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.45);
  color: #bbf7d0;
}

.hero-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}

.hero-card-main {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-card-logo {
  width: 34px;
  height: 34px;
  border-radius: 13px;
  background: conic-gradient(
    from 180deg at 50% 50%,
    #facc15,
    #f97316,
    #ef4444,
    #22c55e,
    #38bdf8,
    #facc15
  );
  padding: 2px;
}

.hero-card-logo-inner {
  width: 100%;
  height: 100%;
  border-radius: 11px;
  background: #020617;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.06em;
}

.hero-card-info {
  display: flex;
  flex-direction: column;
}

.hero-card-name {
  font-size: 14px;
  font-weight: 600;
}

.hero-card-tagline {
  font-size: 11px;
  color: var(--color-text-muted);
}

.hero-card-score {
  text-align: right;
}

.hero-card-score-label {
  font-size: 11px;
  color: var(--color-text-muted);
}

.hero-card-score-value {
  font-size: 18px;
  font-weight: 700;
}

.hero-card-score-value span {
  font-size: 12px;
  color: var(--color-text-muted);
}

.hero-card-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 10px 0 12px;
}

.hero-card-metric {
  padding: 8px 9px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(31, 41, 55, 0.9);
}

.hero-card-metric-label {
  font-size: 10px;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.hero-card-metric-value {
  font-size: 12px;
  font-weight: 600;
}

.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.hero-card-footnote {
  font-size: 10px;
  color: var(--color-text-muted);
}

.hero-card-cta {
  padding: 6px 10px;
  font-size: 11px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #022c22;
  font-weight: 600;
}

.hero-card-cta span {
  font-size: 13px;
}

/* Layout blocks */

.section-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 26px 20px 40px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 18px;
}

.section-title-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.section-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
}

.section-title {
  font-size: 20px;
  letter-spacing: -0.03em;
}

.section-description {
  font-size: 13px;
  color: var(--color-text-muted);
}

.section-note {
  font-size: 11px;
  color: var(--color-text-muted);
}

/* Casino list */

.casino-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.casino-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 14px 14px 10px;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.9),
    rgba(15, 23, 42, 0.85)
  );
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    border-color 0.12s ease, background 0.12s ease;
}

.casino-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.85);
  border-color: rgba(56, 189, 248, 0.7);
  background: radial-gradient(circle at 0 0, #020617, #020617 40%, #0b1224);
}

.casino-logo {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  background: radial-gradient(circle at 0 0, #1f2937, #020617);
  border: 1px solid rgba(148, 163, 184, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.casino-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  border-radius: 14px;
}

.casino-logo-fallback {
  background: none;
}

.casino-logo-initials {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.08em;
  color: #020617;
}

.casino-logo-style-primary {
  background: linear-gradient(135deg, #22c55e, #0ea5e9);
}
.casino-logo-style-gold {
  background: linear-gradient(135deg, #facc15, #f97316);
}
.casino-logo-style-royal {
  background: linear-gradient(135deg, #4f46e5, #ec4899);
}
.casino-logo-style-silver {
  background: linear-gradient(135deg, #9ca3af, #e5e7eb);
}

.casino-main {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.5fr);
  gap: 14px;
  align-items: center;
}

.casino-title-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 4px;
}

.casino-name {
  font-weight: 600;
  font-size: 15px;
}

.casino-tag {
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
}

.casino-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 4px;
}

.casino-badge {
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(55, 65, 81, 0.95);
  font-size: 10px;
  color: var(--color-text-muted);
}

.casino-description {
  font-size: 12px;
  color: var(--color-text-muted);
}

.casino-metrics {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.casino-rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.casino-rating-score {
  font-size: 13px;
  font-weight: 600;
}

.casino-rating-stars {
  font-size: 11px;
  color: #facc15;
}

.casino-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 11px;
  color: var(--color-text-muted);
}

.casino-cta-pill {
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 11px;
}

.casino-cta-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.casino-visit-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #022c22;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.4);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.casino-visit-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(22, 163, 74, 0.55);
}

.casino-visit-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(22, 163, 74, 0.35);
}

.casino-visit-btn span {
  font-size: 15px;
}

.casino-cta-note {
  font-size: 10px;
  color: var(--color-text-muted);
  text-align: center;
}

.casino-card-safe {
  border-inline-start: 3px solid #22c55e;
}

.casino-card-highlight {
  border-inline-start: 3px solid #f97316;
}

.casino-card-premium {
  border-inline-start: 3px solid #38bdf8;
}

/* Dynamic sections (games, FAQ, regulators, disclaimers) */

.dynamic-sections {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.content-card {
  border-radius: var(--radius-xl);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.55);
  padding: 16px 16px 14px;
  box-shadow: var(--shadow-soft);
}

.content-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.content-card-title {
  font-size: 15px;
  letter-spacing: -0.03em;
}

.badge-soft {
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: var(--color-text-muted);
}

.content-card-body {
  font-size: 13px;
  color: var(--color-text-muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.pill {
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 11px;
}

.faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(51, 65, 85, 0.9);
  padding: 9px 10px;
}

.faq-q {
  font-size: 13px;
  font-weight: 600;
}

.faq-a {
  font-size: 12px;
  margin-top: 3px;
}

.regulator-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.regulator-card {
  border-radius: 13px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 9px 9px 8px;
  background: radial-gradient(circle at 0 0, #020617, #020617 40%, #020617);
}

.regulator-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.regulator-icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  overflow: hidden;
}

.regulator-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.regulator-name {
  font-size: 12px;
  font-weight: 600;
}

.regulator-tagline {
  font-size: 11px;
  color: var(--color-text-muted);
}

.regulator-body {
  font-size: 11px;
  color: var(--color-text-muted);
}

.regulator-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  margin-top: 4px;
}

.disclaimer-text {
  font-size: 11px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.disclaimer-text strong {
  color: #f9fafb;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid var(--color-danger);
  color: var(--color-danger);
  font-weight: 700;
  font-size: 11px;
  margin-right: 6px;
}

/* Static pages content */

.page-hero-compact {
  padding: 34px 20px 20px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.page-hero-title {
  font-size: clamp(26px, 3.6vw, 32px);
  letter-spacing: -0.04em;
  margin: 0 0 8px;
}

.page-hero-subtitle {
  max-width: 640px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 20px 40px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.page-content h2 {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: #e5e7eb;
}

.page-content h3 {
  margin-top: 16px;
  margin-bottom: 6px;
  font-size: 14px;
  color: #e5e7eb;
}

.page-content p {
  margin: 0 0 10px;
  line-height: 1.7;
}

.page-content ul {
  margin: 8px 0 10px 20px;
  padding: 0;
}

.page-content li {
  margin-bottom: 6px;
}

.muted-box {
  margin-top: 16px;
  padding: 10px 11px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  background: radial-gradient(circle at 50% -40px, #0b1120, #020617);
  color: var(--color-text-muted);
  margin-top: 24px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 20px 16px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr) minmax(0, 1.2fr);
  gap: 18px;
  font-size: 12px;
}

.footer-logo-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-nav-title {
  font-size: 12px;
  font-weight: 600;
  color: #e5e7eb;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: var(--color-text-muted);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-badge {
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

/* Age gate */

.age-gate-backdrop {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), #020617);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
}

.age-gate-backdrop.is-visible {
  display: flex;
}

.age-gate-dialog {
  max-width: 420px;
  width: 100%;
  border-radius: 22px;
  padding: 20px 18px 16px;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(248, 113, 113, 0.7);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85);
}

.age-gate-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.age-gate-title {
  font-size: 17px;
  letter-spacing: -0.03em;
}

.age-gate-body {
  font-size: 13px;
  color: var(--color-text-muted);
}

.age-gate-body p {
  margin: 0 0 8px;
}

.age-gate-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 12px;
}

.btn {
  border-radius: 999px;
  padding: 7px 14px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  font-size: 13px;
  cursor: pointer;
}

.btn-primary {
  border-color: transparent;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #022c22;
  font-weight: 600;
}

.btn-danger-outline {
  border-color: rgba(248, 113, 113, 0.8);
  color: var(--color-danger);
}

.age-gate-note {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 6px;
}

.age-gate-note a {
  text-decoration: underline;
}

/* Cookie banner */

.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  max-width: 640px;
  margin: 0 auto;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 12px 13px 11px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.75);
  display: none;
  z-index: 50;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner-inner {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.cookie-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #facc15, #f97316);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.cookie-content {
  flex: 1;
  font-size: 12px;
  color: var(--color-text-muted);
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.btn-ghost {
  border-radius: 999px;
  padding: 5px 10px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: transparent;
  color: #e5e7eb;
  font-size: 11px;
  cursor: pointer;
}

.btn-accept {
  border: none;
  padding: 6px 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #022c22;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}

/* Utility */

.link-inline {
  color: #38bdf8;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.label-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 7px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 10px;
  color: var(--color-text-muted);
}

.label-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
}

@media (max-width: 880px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: -1;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
  }
}

@media (max-width: 720px) {
  .header-inner {
    padding-inline: 16px;
  }

  .nav-links,
  .nav-badge,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav.is-open .nav-links {
    display: flex;
    position: absolute;
    inset-inline: 0;
    top: 58px;
    padding: 8px 18px 10px;
    background: rgba(15, 23, 42, 0.98);
    border-bottom: 1px solid rgba(148, 163, 184, 0.6);
    flex-direction: column;
    gap: 8px;
  }

  .main-nav.is-open .nav-badge,
  .main-nav.is-open .nav-cta {
    display: inline-flex;
  }

  .hero-inner {
    padding-inline: 16px;
  }

  .section-shell {
    padding-inline: 16px;
  }

  .casino-card {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
  }

  .casino-cta-col {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: center;
  }

  .casino-visit-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 14px;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .cookie-banner-inner {
    flex-direction: column;
  }

  .cookie-actions {
    flex-direction: row;
    justify-content: flex-end;
  }
}

@media (max-width: 520px) {
  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .regulator-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

