:root {
  --brand: #146b5c;
  --brand-dark: #0f5247;
  --brand-soft: #1a8875;
  --text: #14221f;
  --muted: #4a5c57;
  --surface: #ffffff;
  --surface-soft: #f4f8f7;
  --border: #d5e0dc;
  --shadow: 0 8px 24px rgba(20, 43, 38, 0.08);
  --radius: 12px;
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--surface-soft);
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 55% at 5% -5%, rgba(20, 107, 92, 0.13), transparent 52%),
    radial-gradient(ellipse 70% 45% at 95% 15%, rgba(15, 82, 71, 0.11), transparent 48%),
    radial-gradient(ellipse 55% 40% at 50% 105%, rgba(26, 136, 117, 0.07), transparent 55%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 48px,
      rgba(20, 107, 92, 0.018) 48px,
      rgba(20, 107, 92, 0.018) 49px
    );
}

@keyframes rise-fade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes blob-drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-14px, 12px) scale(1.06);
  }
}

@keyframes card-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes safer-pan {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

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

a {
  color: var(--brand-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--brand);
}

.layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.28s var(--ease-smooth), background 0.28s ease;
}

.site-header--scrolled {
  box-shadow: 0 8px 28px rgba(20, 43, 38, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.site-brand:hover {
  color: var(--brand-dark);
}

.site-brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  transition: transform 0.3s var(--ease-smooth);
  box-shadow: 0 2px 8px rgba(20, 107, 92, 0.2);
}

.site-brand:hover img {
  transform: scale(1.06) rotate(-3deg);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  align-items: center;
  justify-content: flex-end;
}

.site-nav a {
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: none;
  padding: 0.25rem 0;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--brand), var(--brand-soft));
  transition: width 0.28s var(--ease-smooth);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--brand-dark);
  font-weight: 600;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.page-ribbon {
  height: 4px;
  border-radius: 4px;
  margin: 0 0 1.25rem;
  background: linear-gradient(90deg, var(--brand-dark), var(--brand), var(--brand-soft), rgba(20, 107, 92, 0.35));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset;
}

.hero-block {
  position: relative;
  margin: 0 0 1.5rem;
  padding: 2rem 1.5rem 2.1rem;
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.97) 0%, rgba(244, 248, 247, 0.88) 100%);
  border: 1px solid rgba(213, 224, 220, 0.95);
  box-shadow: var(--shadow), 0 1px 0 rgba(255, 255, 255, 0.85) inset;
  overflow: hidden;
}

.hero-block__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(56px);
  pointer-events: none;
  z-index: 0;
}

.hero-block__blob--a {
  width: 240px;
  height: 240px;
  top: -100px;
  right: -50px;
  background: rgba(20, 107, 92, 0.22);
  animation: blob-drift 20s ease-in-out infinite alternate;
}

.hero-block__blob--b {
  width: 200px;
  height: 200px;
  bottom: -70px;
  left: -60px;
  background: rgba(26, 136, 117, 0.18);
  animation: blob-drift 16s ease-in-out infinite alternate;
  animation-delay: -5s;
}

.hero-block__grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(circle at center, rgba(20, 107, 92, 0.09) 0.5px, transparent 0.6px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

.hero-block .hero {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 0.25rem 0 0;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 1.35rem 0 0;
}

.hero-badges li {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(213, 224, 220, 0.95);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  box-shadow: 0 1px 3px rgba(20, 43, 38, 0.05);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-block .hero h1 {
    animation: rise-fade 0.62s var(--ease-smooth) backwards;
  }

  .hero-block .hero__subtitle {
    animation: rise-fade 0.62s var(--ease-smooth) 0.07s backwards;
  }

  .hero-block .hero__updated {
    animation: rise-fade 0.62s var(--ease-smooth) 0.12s backwards;
  }

  .hero-block .hero__actions {
    animation: rise-fade 0.62s var(--ease-smooth) 0.16s backwards;
  }

  .hero-block .hero-badges {
    animation: rise-fade 0.62s var(--ease-smooth) 0.2s backwards;
  }
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  color: var(--muted);
  max-width: 42rem;
  margin: 0 0 1rem;
}

.hero__updated {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  margin: 1.5rem 0;
  transition: transform 0.28s var(--ease-smooth), box-shadow 0.28s ease, border-color 0.28s ease;
}

.panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(20, 43, 38, 0.11);
  border-color: rgba(20, 107, 92, 0.22);
}

.disclosure {
  border-left: 4px solid var(--brand);
  background: linear-gradient(90deg, rgba(20, 107, 92, 0.06), var(--surface));
}

.section-title {
  font-size: 1.35rem;
  margin: 2.5rem 0 1rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.45rem;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.75rem;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-soft));
}

.comparison-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .comparison-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.casino-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.casino-card__logo-wrap {
  background: linear-gradient(180deg, #ffffff, #f9fcfb);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.casino-card:hover .casino-card__logo-wrap {
  border-color: rgba(20, 107, 92, 0.28);
  box-shadow: 0 4px 14px rgba(20, 107, 92, 0.08);
}

.casino-card__logo-wrap img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

.logo-fallback {
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  color: var(--text);
}

.casino-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.casino-card__tags li {
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.casino-card:hover .casino-card__tags li {
  background: rgba(20, 107, 92, 0.06);
  border-color: rgba(20, 107, 92, 0.15);
}

@media (prefers-reduced-motion: no-preference) {
  .comparison-grid .casino-card {
    animation: card-enter 0.58s var(--ease-smooth) backwards;
  }

  .comparison-grid .casino-card:nth-child(1) {
    animation-delay: 0.03s;
  }

  .comparison-grid .casino-card:nth-child(2) {
    animation-delay: 0.06s;
  }

  .comparison-grid .casino-card:nth-child(3) {
    animation-delay: 0.09s;
  }

  .comparison-grid .casino-card:nth-child(4) {
    animation-delay: 0.12s;
  }

  .comparison-grid .casino-card:nth-child(5) {
    animation-delay: 0.15s;
  }

  .comparison-grid .casino-card:nth-child(6) {
    animation-delay: 0.18s;
  }

  .comparison-grid .casino-card:nth-child(7) {
    animation-delay: 0.21s;
  }

  .comparison-grid .casino-card:nth-child(8) {
    animation-delay: 0.24s;
  }
}

.casino-card__actions {
  margin-top: auto;
}

.two-col {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.criteria-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 600px) {
  .criteria-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

.criteria-item {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(165deg, var(--surface), rgba(244, 248, 247, 0.65));
  transition: transform 0.26s var(--ease-smooth), border-color 0.26s ease, box-shadow 0.26s ease;
}

.criteria-item:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 107, 92, 0.3);
  box-shadow: 0 8px 22px rgba(20, 43, 38, 0.08);
}

.updates-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .updates-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.update-card h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
}

.update-card time {
  font-size: 0.8rem;
  color: var(--muted);
}

.safer-strip {
  position: relative;
  overflow: hidden;
  background-color: var(--brand-dark);
  background-image: linear-gradient(
    125deg,
    var(--brand-dark) 0%,
    var(--brand) 38%,
    var(--brand-soft) 62%,
    var(--brand-dark) 100%
  );
  background-size: 220% 220%;
  color: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  margin: 2rem 0;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

@media (prefers-reduced-motion: no-preference) {
  .safer-strip {
    animation: safer-pan 22s ease-in-out infinite alternate;
  }
}

.safer-strip::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 55%;
  height: 160%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 65%);
  pointer-events: none;
}

.safer-strip a {
  color: #e8fff8;
  font-weight: 600;
}

.safer-strip > * {
  position: relative;
  z-index: 1;
}

.safer-strip p {
  margin: 0 0 1rem;
}

.safer-strip p:last-child {
  margin-bottom: 0;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  margin-bottom: 0.65rem;
  background: var(--surface);
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.faq-list details:hover {
  border-color: rgba(20, 107, 92, 0.22);
}

.faq-list details[open] {
  border-color: rgba(20, 107, 92, 0.28);
  box-shadow: 0 6px 18px rgba(20, 43, 38, 0.07);
}

.faq-list summary {
  font-weight: 600;
  cursor: pointer;
}

.faq-list p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.22s var(--ease-smooth), box-shadow 0.22s ease, filter 0.22s ease;
}

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

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

.btn--primary {
  background: linear-gradient(180deg, var(--brand), var(--brand-dark));
  color: #fff;
  box-shadow: 0 4px 14px rgba(20, 107, 92, 0.35);
}

.btn--primary:hover {
  color: #fff;
}

.btn--muted {
  background: var(--surface-soft);
  color: var(--text);
  border-color: var(--border);
}

.btn--link {
  background: transparent;
  color: var(--brand-dark);
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn--small {
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
}

.page-hero {
  padding: 2rem 0 0.5rem;
}

.page-hero h1 {
  position: relative;
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  margin: 0 0 0.75rem;
}

.prose {
  max-width: 72ch;
}

.prose h2 {
  font-size: 1.2rem;
  margin: 2rem 0 0.75rem;
}

.prose .panel > h2:first-child {
  margin-top: 0;
  padding-left: 0.85rem;
  border-left: 3px solid var(--brand);
  border-radius: 1px;
}

.prose h3 {
  font-size: 1.05rem;
  margin: 1.5rem 0 0.5rem;
}

.prose p,
.prose ul,
.prose ol {
  margin: 0 0 1rem;
  color: var(--muted);
}

.prose ul,
.prose ol {
  padding-left: 1.25rem;
}

.form-grid label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
  margin-bottom: 1rem;
}

.form-grid textarea {
  min-height: 140px;
  resize: vertical;
}

.resource-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.resource-list li {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.resource-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.site-footer {
  position: relative;
  background: linear-gradient(180deg, #132925 0%, #0f1f1c 28%, #0c1917 100%);
  color: #c8d5d1;
  margin-top: 3rem;
  padding: 2.5rem 1.25rem 1.5rem;
  box-shadow: 0 -12px 40px rgba(20, 43, 38, 0.12);
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand), var(--brand-soft), transparent);
  opacity: 0.55;
}

.site-footer a {
  color: #9fd4c9;
}

.site-footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}

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

.site-footer__section h2,
.site-footer__section h3 {
  font-size: 0.95rem;
  color: #fff;
  margin: 0 0 0.65rem;
}

.site-footer__section p,
.site-footer__section li {
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0 0 0.5rem;
}

.site-footer__regs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.site-footer__regs a {
  display: block;
  width: 120px;
  height: 44px;
}

.site-footer__regs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.92;
}

.site-footer__nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__nav li {
  margin-bottom: 0.35rem;
}

.site-footer__copy {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.8rem;
  color: #7a908a;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 0.5rem;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15, 31, 28, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.age-gate[hidden] {
  display: none !important;
}

.age-gate__panel {
  max-width: 420px;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.age-gate__title {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}

.age-gate__text {
  margin: 0 0 1.25rem;
  color: var(--muted);
}

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  padding: 1rem;
  pointer-events: none;
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
  pointer-events: auto;
}

.cookie-banner__text {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.cookie-banner__settings {
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.cookie-banner__check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text);
}

.table-wrap {
  overflow-x: auto;
}

@media (max-width: 374px) {
  .layout {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

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

.safer-strip__title {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

@media (prefers-reduced-motion: no-preference) {
  .page-ribbon {
    animation: rise-fade 0.55s var(--ease-smooth) backwards;
  }

  .page-hero h1 {
    animation: rise-fade 0.55s var(--ease-smooth) backwards;
  }

  .page-hero > p:first-of-type {
    animation: rise-fade 0.55s var(--ease-smooth) 0.06s backwards;
  }

  .updates-grid .update-card {
    animation: card-enter 0.55s var(--ease-smooth) backwards;
  }

  .updates-grid .update-card:nth-child(1) {
    animation-delay: 0.04s;
  }

  .updates-grid .update-card:nth-child(2) {
    animation-delay: 0.1s;
  }

  .updates-grid .update-card:nth-child(3) {
    animation-delay: 0.16s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-top-disclaimers__lead {
    animation: none !important;
  }

  .hero-block__blob {
    animation: none;
  }

  .comparison-grid .casino-card,
  .safer-strip,
  .page-ribbon,
  .page-hero h1,
  .page-hero > p:first-of-type,
  .updates-grid .update-card,
  .hero-block .hero h1,
  .hero-block .hero__subtitle,
  .hero-block .hero__updated,
  .hero-block .hero__actions,
  .hero-block .hero-badges {
    animation: none !important;
  }
}

/* -------------------------------------------------------------------------- */
/* Racing magazine visual redesign (palette + styling only)                   */
/* -------------------------------------------------------------------------- */
:root {
  --brand: #c1121f;
  --brand-dark: #78050d;
  --brand-soft: #f4b400;
  --text: #f4f1e9;
  --muted: #b8afa2;
  --surface: #141414;
  --surface-soft: #090909;
  --border: #2a2a2a;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  --radius: 6px;
}

body {
  background-color: var(--surface-soft);
  color: var(--text);
}

body::before {
  background:
    radial-gradient(ellipse 60% 50% at 10% -10%, rgba(193, 18, 31, 0.26), transparent 60%),
    radial-gradient(ellipse 52% 38% at 92% 0%, rgba(244, 180, 0, 0.14), transparent 62%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.02) 0%, transparent 26%),
    repeating-linear-gradient(
      -24deg,
      transparent 0 22px,
      rgba(255, 255, 255, 0.02) 22px 23px
    ),
    linear-gradient(180deg, #080808 0%, #0b0b0b 45%, #070707 100%);
}

a {
  color: #ffcd3f;
}

a:hover {
  color: #ffe28a;
}

.site-header {
  background: rgba(8, 8, 8, 0.86);
  border-bottom: 1px solid rgba(244, 180, 0, 0.24);
}

.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--brand-soft) 25%, var(--brand) 50%, var(--brand-soft) 75%, transparent 100%);
  opacity: 0.9;
}

.site-header--scrolled {
  background: rgba(6, 6, 6, 0.95);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.45);
}

.site-brand {
  color: #f8f5ef;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.site-brand span {
  position: relative;
  display: inline-block;
  padding-left: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  background: linear-gradient(180deg, #fff8df 0%, #f4b400 55%, #e3a400 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 16px rgba(244, 180, 0, 0.24);
}

.site-brand span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.62rem;
  height: 0.22rem;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--brand), var(--brand-soft));
  transform: translateY(-50%) skewX(-26deg);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.site-brand img {
  border-radius: 4px;
  border: 1px solid rgba(244, 180, 0, 0.4);
  box-shadow: 0 0 0 1px rgba(244, 180, 0, 0.35), 0 4px 16px rgba(0, 0, 0, 0.45);
}

.site-brand:hover span {
  filter: brightness(1.08);
}

.site-nav a {
  color: #c8bfae;
}

.site-nav a::after {
  height: 2px;
  background: linear-gradient(90deg, var(--brand-soft), var(--brand));
}

.site-nav a:hover,
.site-nav a.active {
  color: #fff3cf;
}

.page-ribbon {
  height: 5px;
  border-radius: 3px;
  background: linear-gradient(90deg, #1b1b1b 0%, var(--brand) 25%, var(--brand-soft) 50%, var(--brand) 75%, #1b1b1b 100%);
  box-shadow: 0 0 0 1px rgba(244, 180, 0, 0.2), 0 6px 18px rgba(0, 0, 0, 0.4);
}

.hero-block {
  background:
    linear-gradient(160deg, rgba(193, 18, 31, 0.12), rgba(193, 18, 31, 0.02) 30%, rgba(244, 180, 0, 0.08) 100%),
    linear-gradient(180deg, #151515 0%, #101010 100%);
  border: 1px solid rgba(244, 180, 0, 0.22);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-block__blob--a {
  background: rgba(193, 18, 31, 0.35);
}

.hero-block__blob--b {
  background: rgba(244, 180, 0, 0.2);
}

.hero-block__grid {
  opacity: 0.25;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}

.hero h1,
.page-hero h1 {
  color: #fff4d7;
  letter-spacing: 0.01em;
}

.hero__subtitle,
.hero__updated,
.prose p,
.prose ul,
.prose ol,
.faq-list p {
  color: #c8c0b3;
}

.hero-badges li {
  color: #ffe6a1;
  background: rgba(9, 9, 9, 0.66);
  border: 1px solid rgba(244, 180, 0, 0.38);
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.panel,
.criteria-item,
.faq-list details,
.cookie-banner__inner,
.age-gate__panel {
  background: linear-gradient(180deg, #161616 0%, #121212 100%);
  border-color: rgba(244, 180, 0, 0.14);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.panel:hover {
  border-color: rgba(244, 180, 0, 0.4);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.52);
}

.disclosure {
  border-left-color: var(--brand-soft);
  background: linear-gradient(90deg, rgba(244, 180, 0, 0.15), rgba(193, 18, 31, 0.06) 35%, #141414 100%);
}

.section-title::after {
  height: 4px;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--brand-soft), var(--brand));
}

.casino-card__logo-wrap {
  background: linear-gradient(180deg, #1a1a1a, #101010);
  border-color: rgba(244, 180, 0, 0.22);
}

.casino-card:hover .casino-card__logo-wrap {
  border-color: rgba(244, 180, 0, 0.48);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
}

.logo-fallback {
  color: #f8e8ba;
}

.casino-card__tags li {
  background: #1d1d1d;
  border-color: rgba(244, 180, 0, 0.2);
  color: #d6cbba;
  border-radius: 4px;
}

.casino-card:hover .casino-card__tags li {
  background: rgba(193, 18, 31, 0.22);
  border-color: rgba(244, 180, 0, 0.45);
}

.btn {
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.88rem;
}

.btn--primary {
  background: linear-gradient(180deg, #d11322 0%, #980812 100%);
  border-color: rgba(244, 180, 0, 0.35);
  color: #fff9eb;
  box-shadow: 0 10px 20px rgba(151, 10, 20, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.btn--primary:hover {
  filter: brightness(1.06);
}

.btn--muted {
  background: #1e1e1e;
  color: #f4ebd8;
  border-color: rgba(244, 180, 0, 0.34);
}

.btn--link {
  color: #ffd66b;
}

.prose .panel > h2:first-child {
  border-left-color: var(--brand-soft);
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  background: #111;
  color: #f2e9d4;
  border-color: rgba(244, 180, 0, 0.26);
}

.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
  outline: 2px solid rgba(244, 180, 0, 0.35);
  outline-offset: 1px;
}

.resource-list li {
  border-bottom-color: rgba(244, 180, 0, 0.2);
}

.safer-strip {
  background-color: #1a0b0d;
  background-image: linear-gradient(125deg, #63060d 0%, #a50914 35%, #c1121f 55%, #f4b400 100%);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255, 220, 130, 0.24);
}

.safer-strip::after {
  background: radial-gradient(circle, rgba(255, 225, 132, 0.24), transparent 70%);
}

.safer-strip a {
  color: #fff2c8;
}

.faq-list details:hover,
.faq-list details[open] {
  border-color: rgba(244, 180, 0, 0.42);
}

.site-footer {
  background: linear-gradient(180deg, #0c0c0c 0%, #080808 100%);
  color: #d4cab6;
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.5);
}

.site-footer::before {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), var(--brand-soft), var(--brand), transparent);
  opacity: 0.9;
}

.site-footer a {
  color: #f7cf60;
}

.site-footer__copy {
  color: #8f8473;
  border-top-color: rgba(244, 180, 0, 0.18);
}

.age-gate {
  background: rgba(0, 0, 0, 0.9);
}

.cookie-banner__settings {
  border-top-color: rgba(244, 180, 0, 0.22);
}

.cookie-banner__check {
  color: #efe6d0;
}

/* Top-of-site disclaimers (directly under header, all pages) */
.site-top-disclaimers {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.site-top-disclaimers__lead {
  margin: 0;
  background: linear-gradient(90deg, #5c060c 0%, #c1121f 35%, #d4a000 70%, #c1121f 100%);
  background-size: 200% 100%;
  color: #fffef8;
  text-align: center;
  font-weight: 800;
  font-size: clamp(0.82rem, 2.5vw, 1rem);
  letter-spacing: 0.045em;
  line-height: 1.45;
  text-transform: uppercase;
  padding: 0.65rem 1.25rem;
  border-bottom: 2px solid rgba(255, 236, 168, 0.55);
}

@media (prefers-reduced-motion: no-preference) {
  .site-top-disclaimers__lead {
    animation: safer-pan 14s ease-in-out infinite alternate;
  }
}

.site-top-disclaimers__info {
  margin: 0;
  padding: 0.65rem 1.25rem;
  text-align: center;
  background: linear-gradient(180deg, #14110f 0%, #0a0a0a 100%);
  border-bottom: 2px solid rgba(244, 180, 0, 0.45);
}

.site-top-disclaimers__info p {
  margin: 0 0 0.45rem;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
  color: #fff4d7;
  font-weight: 700;
  font-size: clamp(0.9rem, 2.3vw, 1.06rem);
  line-height: 1.5;
  text-wrap: balance;
}

.site-top-disclaimers__info p:last-child {
  margin-bottom: 0;
}

.site-top-disclaimers__age {
  margin: 0;
  text-align: center;
  font-weight: 900;
  font-size: clamp(0.88rem, 2.5vw, 1.02rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a0a0a;
  padding: 0.6rem 1.25rem;
  background: linear-gradient(90deg, #e8a800 0%, #ffe566 42%, #f4c430 100%);
  border-bottom: 2px solid rgba(120, 5, 13, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
