@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;700&family=Space+Grotesk:wght@700&display=swap");
@import "tailwindcss";

:root {
  --coral: #f85858;
  --wine: #782838;
  --cocoa: #381818;
  --ink: #080818;
  --grey: #787878;
  --white: #ffffff;
  --black: #000000;
  --raised: 0 16px 48px rgba(8, 8, 24, 0.14);
  --overlay: 0 24px 80px rgba(8, 8, 24, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: "DM Sans", Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
}

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

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

.sr-only {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

main {
  min-height: 100vh;
  background: var(--white);
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 18px;
}

p {
  margin: 0;
}

small {
  display: block;
  color: rgba(0, 0, 0, 0.58);
  font-size: 15px;
  line-height: 1.35;
}

.hero {
  background: var(--ink);
  color: var(--white);
  margin: 0;
  max-width: none;
  padding: 8px max(24px, calc((100vw - 1200px) / 2)) 32px;
}

.nav {
  align-items: center;
  background: transparent;
  border-bottom: 0;
  border-radius: 0;
  box-shadow: none;
  color: var(--white);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 8px 0 12px;
  position: relative;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.brand img {
  height: 56px;
  object-fit: contain;
  width: 80px;
}

.nav-menu {
  display: none;
  margin-left: auto;
  position: relative;
}

.menu-toggle {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 44px;
  justify-content: center;
  list-style: none;
  padding: 0;
  width: 48px;
}

.menu-toggle::-webkit-details-marker {
  display: none;
}

.menu-toggle span {
  background: var(--white);
  border-radius: 999px;
  display: block;
  height: 2px;
  width: 20px;
}

.menu-toggle:hover,
.menu-toggle:focus-visible,
.nav-menu[open] .menu-toggle {
  background: var(--wine);
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 20px;
  min-width: 0;
  padding: 0;
  position: static;
}

.desktop-nav-links {
  margin-left: auto;
}

.nav-menu[open] .nav-links {
  display: flex;
}

.nav-links a {
  background: rgba(255, 255, 255, 0.08);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  display: flex;
  font-size: 15px;
  font-weight: 700;
  justify-content: center;
  min-height: 46px;
  min-width: 144px;
  padding: 12px 24px;
  text-align: center;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--wine);
  color: var(--white);
}

.nav-links a:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 2px;
}

.hero-panel {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: var(--white);
  display: grid;
  gap: 24px 48px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  margin: 16px auto 0;
  min-height: 300px;
  padding: 0;
}

.hero-content {
  display: grid;
  gap: 14px;
}

.eyebrow {
  color: var(--wine);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.hero-panel .eyebrow {
  color: var(--coral);
}

.lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  margin-top: 0;
  max-width: 640px;
}

.hero-actions,
.rank-actions {
  align-items: center;
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.hero-bottom {
  align-items: center;
  display: flex;
  gap: 16px;
}

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  min-height: 40px;
  padding: 8px 16px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(1px);
}

.button:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 2px;
}

.button[aria-disabled="true"],
.button:disabled {
  background: rgba(120, 120, 120, 0.24);
  color: var(--grey);
  pointer-events: none;
}

.primary {
  background: var(--wine);
  border: 0;
  color: var(--white);
}

.primary:hover {
  background: var(--cocoa);
}

.secondary {
  background: rgba(120, 40, 56, 0.08);
  border: 0;
  color: var(--wine);
}

.secondary:hover {
  background: rgba(120, 120, 120, 0.12);
}

.hero-actions .secondary {
  background: rgba(255, 245, 245, 0.96);
  color: var(--wine);
}

.hero-actions .secondary:hover {
  background: var(--white);
  color: var(--cocoa);
}

.text-button {
  background: transparent;
  border: 0;
  color: var(--wine);
  padding-left: 0;
  padding-right: 0;
}

.text-button:hover {
  color: var(--coral);
}

.large {
  min-height: 56px;
  padding: 16px 24px;
  width: 168px;
}

.compact {
  min-height: 32px;
  width: 104px;
}

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

.rank-pill {
  background: var(--cocoa);
  border: 0;
  border-radius: 32px;
  color: var(--white);
  font-size: 14px;
  padding: 4px 8px;
}

.hero-metrics {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.hero-metrics span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.hero-metrics span + span::before {
  color: var(--coral);
  content: "/";
  margin-right: 16px;
}

.casino-symbol {
  display: block;
  height: auto;
  justify-self: end;
  width: min(30vw, 380px);
}

.hero-symbol-mobile {
  display: none;
}

.logo-frame {
  align-items: center;
  align-self: center;
  aspect-ratio: 2.15 / 1;
  background: transparent;
  border: 1px solid rgba(128, 45, 64, 0.18);
  border-radius: 7px;
  box-shadow: none;
  display: flex;
  height: auto;
  justify-content: center;
  justify-self: center;
  margin-top: 8px;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}

.logo-frame img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.logo-frame span {
  clip: rect(0 0 0 0);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.section {
  margin: 0 auto;
  max-width: 1400px;
  padding: 48px 24px;
}

.section-heading p {
  color: var(--cocoa);
  margin-left: auto;
  margin-right: auto;
  max-width: 560px;
}

.section-heading .eyebrow {
  display: none;
}

.section-heading {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: center;
  margin: 0 auto 24px;
  max-width: 1200px;
  text-align: center;
}

.section-heading h2 {
  margin-left: auto;
  margin-right: auto;
}

.casino-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.author-section {
  background: var(--ink);
  color: var(--white);
  margin: 56px 0 0;
  max-width: none;
  padding: 56px max(24px, calc((100vw - 1200px) / 2));
}

.article-author-section {
  background: var(--white);
  margin: 0 auto;
  max-width: none;
  padding: 24px max(24px, calc((100vw - 1200px) / 2)) 0;
}

.article-author-box {
  align-items: center;
  background: rgba(120, 120, 120, 0.08);
  border: 1px solid rgba(128, 45, 64, 0.12);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  grid-template-columns: 72px minmax(0, 1fr);
  margin: 0 auto;
  max-width: 860px;
  padding: 18px;
}

.article-author-photo {
  border-radius: 999px;
  display: block;
  height: 72px;
  overflow: hidden;
  width: 72px;
}

.article-author-photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.article-author-copy {
  min-width: 0;
}

.article-author-box .author-role {
  color: var(--wine);
  margin-bottom: 4px;
}

.article-author-copy h2 {
  color: var(--black);
  font-size: 20px;
  line-height: 1.2;
}

.article-author-copy p:not(.author-role) {
  color: var(--cocoa);
  font-size: 14px;
  line-height: 1.45;
  margin-top: 6px;
}

.author-inner {
  display: grid;
  gap: 28px;
  margin: 0 auto;
  max-width: 1200px;
}

.team-kicker {
  align-items: center;
  display: flex;
  gap: 12px;
}

.team-kicker span {
  background: var(--coral);
  border-radius: 2px;
  display: inline-block;
  height: 10px;
  width: 10px;
}

.team-kicker p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.author-section h2 {
  color: var(--white);
  font-size: 26px;
  line-height: 1.12;
}

.author-grid {
  display: grid;
  gap: 24px 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.author-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 0;
  border-radius: 8px;
  color: var(--white);
  display: grid;
  gap: 24px;
  grid-template-columns: 112px minmax(0, 1fr);
  min-width: 0;
  padding: 28px;
}

.author-photo {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(248, 88, 88, 0.42), rgba(120, 40, 56, 0.92)),
    var(--wine);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  display: flex;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  height: 112px;
  justify-content: center;
  overflow: hidden;
  width: 112px;
}

.author-photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.author-photo-fallback {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}

.author-copy {
  min-width: 0;
}

.author-role {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.author-card h3 {
  color: var(--white);
  font-size: 22px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.author-card p:not(.author-role) {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
  margin-top: 12px;
}

.author-card a {
  color: var(--coral);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  margin-top: 16px;
  text-decoration: none;
}

.author-card a:hover {
  color: var(--white);
}

.author-card a:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}

.casino-card {
  background: rgba(120, 120, 120, 0.09);
  border: 0;
  border-radius: 16px;
  box-shadow: var(--raised);
  color: var(--black);
  display: grid;
  gap: 10px;
  grid-template-rows: auto auto auto auto minmax(64px, auto) auto auto auto;
  min-width: 0;
  padding: 12px 16px 16px;
  position: relative;
  text-align: center;
}

.casino-card:hover {
  box-shadow: var(--overlay);
}

.casino-card h3 {
  margin-top: 4px;
}

.licence {
  color: var(--grey);
  font-size: 14px;
}

.stars {
  align-items: center;
  color: var(--wine);
  display: flex;
  font-size: 14px;
  gap: 8px;
  justify-content: center;
  min-width: 0;
}

.stars span {
  color: var(--coral);
  font-size: 14px;
  line-height: 1;
}

.stars strong {
  color: var(--cocoa);
  font-size: 14px;
}

.bonus {
  align-items: center;
  background: rgba(120, 120, 120, 0.13);
  border-radius: 8px;
  color: var(--wine);
  display: flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  line-height: 1.25;
  min-height: 64px;
  padding: 8px;
}

.terms {
  color: rgba(0, 0, 0, 0.62);
  font-size: 14px;
  line-height: 1.35;
  min-height: 42px;
}

.terms-short,
.button-short {
  display: none;
}

.card-stats span {
  color: var(--black);
  font-size: 14px;
  text-align: left;
}

.card-stats small {
  color: var(--grey);
}

.payment-strip {
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(7, minmax(18px, 1fr));
  margin-top: 2px;
}

.payment-method {
  align-items: center;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  min-height: 24px;
  overflow: hidden;
  padding: 0;
}

.payment-method img {
  display: block;
  height: 24px;
  object-fit: contain;
  width: 100%;
}

.casino-card .primary {
  background: var(--cocoa);
}

.casino-card .primary:hover {
  background: var(--wine);
}

.split {
  display: grid;
  gap: 24px;
  grid-template-columns: 280px minmax(0, 1fr);
}

.ranked-list {
  display: grid;
  gap: 16px;
}

.rank-row {
  align-items: center;
  background: var(--white);
  border: 0;
  border-radius: 16px;
  box-shadow: var(--raised);
  display: grid;
  gap: 16px;
  grid-template-columns: 40px 64px minmax(0, 1fr) 120px;
  padding: 16px;
}

.rank-row .logo-frame {
  height: 56px;
  width: 56px;
}

.rank-row .logo-frame img {
  height: 32px;
  width: 32px;
}

.rank-row .logo-frame span {
  display: none;
}

.rank-number {
  align-items: center;
  background: rgba(120, 120, 120, 0.12);
  border: 0;
  border-radius: 8px;
  color: var(--wine);
  display: flex;
  font-size: 14px;
  font-weight: 700;
  height: 40px;
  justify-content: center;
}

.rank-row .stars {
  justify-content: flex-start;
}

.rank-row p {
  color: var(--wine);
  font-size: 14px;
  font-weight: 700;
}

.rank-actions {
  flex-direction: column;
  margin: 0;
}

.table-wrap {
  background: var(--white);
  border: 0;
  border-radius: 16px;
  box-shadow: var(--raised);
  margin: 0 auto;
  max-width: 1200px;
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  min-width: 920px;
  width: 100%;
}

th,
td {
  border-bottom: 0;
  color: var(--black);
  font-size: 14px;
  padding: 16px;
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
}

td:first-child {
  color: var(--wine);
  font-weight: 700;
}

tr:last-child td {
  border-bottom: 0;
}

.pros-cons {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pros-cons article {
  background: var(--white);
  border: 0;
  border-radius: 16px;
  box-shadow: var(--raised);
  color: var(--black);
  display: grid;
  gap: 16px;
  padding: 24px;
}

.pros-cons ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.pros-cons li {
  color: var(--cocoa);
  font-size: 17px;
  padding-left: 24px;
  position: relative;
}

.pros-cons li::before {
  background: var(--coral);
  border-radius: 32px;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 8px;
  width: 8px;
}

.ukgc-basics-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1200px;
}

.ukgc-basics-grid article {
  background: rgba(120, 120, 120, 0.08);
  border: 0;
  border-radius: 8px;
  color: var(--black);
  display: grid;
  gap: 12px;
  padding: 24px;
}

.ukgc-basics-grid article:first-child {
  box-shadow: 0 16px 42px rgba(120, 40, 56, 0.12);
}

.ukgc-basics-grid article:last-child {
  box-shadow: 0 16px 42px rgba(248, 88, 88, 0.12);
}

.ukgc-basics-grid h3 {
  color: var(--wine);
  font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1.2;
}

.ukgc-basics-grid p {
  color: var(--cocoa);
  font-size: 17px;
  line-height: 1.6;
}

.ukgc-basics-grid a {
  color: var(--wine);
  font-weight: 700;
}

.ukgc-basics-grid a:hover {
  color: var(--coral);
}

.guide-section {
  padding-top: 32px;
}

.article-flow {
  display: grid;
  gap: 16px;
  margin: 0 auto;
  max-width: 1200px;
}

.article-flow p,
.article-flow li,
.highlight-panel p,
.insight-grid p,
.plain-grid p,
.plain-grid li,
.editorial-list p,
.editorial-list li,
.details-list p,
.details-list li {
  color: var(--cocoa);
  font-size: 17px;
  line-height: 1.6;
}

.article-flow h3,
.plain-grid h3,
.editorial-list h3 {
  color: var(--wine);
  font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
}

.article-flow h2 {
  color: var(--wine);
  font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.15;
  margin-top: 28px;
  text-align: center;
}

.article-flow strong,
.plain-grid strong,
.editorial-list strong {
  color: var(--wine);
}

.article-flow article {
  display: grid;
  gap: 12px;
}

.impact-flow {
  counter-reset: impact-step;
  gap: 28px;
  max-width: 1200px;
}

.impact-flow article {
  align-items: start;
  counter-increment: impact-step;
  display: grid;
  gap: 8px 24px;
  grid-template-columns: 68px minmax(0, 1fr);
  padding: 4px 0;
}

.impact-flow article:last-child {
  border-bottom: 0;
}

.impact-flow article::before {
  align-items: center;
  background: rgba(248, 88, 88, 0.12);
  border-radius: 999px;
  color: var(--coral);
  content: counter(impact-step, decimal-leading-zero);
  display: flex;
  font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.impact-flow h3,
.impact-flow p {
  grid-column: 2;
}

.article-flow ul,
.article-flow ol,
.plain-grid ul,
.plain-grid ol,
.details-list ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 24px;
}

.checklist-flow {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1200px;
  width: 100%;
}

.checklist-flow article {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--raised);
  gap: 14px;
  min-height: 100%;
  padding: 24px;
}

.network-flow {
  gap: 0;
  max-width: 1200px;
}

.faq-flow article {
  padding-top: 16px;
}

.network-flow article {
  border-top: 0;
  border-bottom: 0;
  gap: 8px;
  padding: 20px 0;
}

.network-flow h3 {
  font-size: 18px;
  line-height: 1.25;
}

.network-flow p {
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
  max-width: none;
}

.network-flow strong {
  color: var(--wine);
}

.network-card-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1200px;
}

.network-group-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--raised);
  display: grid;
  min-width: 0;
  overflow: hidden;
}

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

.network-visual {
  min-height: 190px;
}

.logo-boxes {
  align-content: space-between;
  background:
    radial-gradient(circle at 20% 20%, rgba(248, 88, 88, 0.22), transparent 34%),
    linear-gradient(135deg, var(--ink), var(--cocoa));
  display: grid;
  gap: 24px;
  padding: 24px;
}

.evoke-visual {
  background:
    radial-gradient(circle at 80% 20%, rgba(248, 88, 88, 0.28), transparent 32%),
    linear-gradient(135deg, #0a1017, var(--ink));
}

.leovegas-visual {
  background:
    radial-gradient(circle at 18% 22%, rgba(120, 40, 56, 0.5), transparent 36%),
    linear-gradient(135deg, #062915, var(--ink));
}

.gamesys-visual {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(135deg, var(--wine), var(--ink));
}

.ojo-visual {
  background:
    radial-gradient(circle at 76% 20%, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(135deg, #1f1488, #9d2bd0);
}

.network-logo-mark {
  align-self: start;
  color: var(--white);
  font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.brand-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brand-chip-row span {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 10px;
}

.image-visual img {
  display: block;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  width: 100%;
}

.network-card-copy {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.network-card-copy h3 {
  color: var(--wine);
  font-size: 19px;
  line-height: 1.2;
}

.network-card-copy p {
  color: var(--cocoa);
  font-size: 15px;
  line-height: 1.55;
}

.network-card-copy strong {
  color: var(--wine);
}

.faq-flow article:last-child {
  border-bottom: 0;
  padding-bottom: 16px;
}

.plain-grid {
  display: grid;
  gap: 24px 32px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.plain-grid article {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding-top: 16px;
}

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

.editorial-list {
  counter-reset: editorial-step;
  display: grid;
  list-style: none;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0;
}

.editorial-list > li {
  counter-increment: editorial-step;
  display: grid;
  gap: 8px 24px;
  grid-template-columns: 56px minmax(0, 1fr);
  padding: 18px 0;
}

.editorial-list > li:last-child {
  border-bottom: 0;
}

.editorial-list > li::before {
  color: var(--coral);
  content: counter(editorial-step, decimal-leading-zero);
  font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding-top: 3px;
}

.editorial-list h3,
.editorial-list p {
  grid-column: 2;
  max-width: 1120px;
}

.listing-layout {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  margin: 0 auto;
  max-width: 1240px;
}

.standards-list {
  counter-reset: standards-step;
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.standards-list > li {
  background: rgba(120, 120, 120, 0.09);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(8, 8, 24, 0.055);
  counter-increment: standards-step;
  display: grid;
  gap: 8px 14px;
  grid-template-columns: 38px minmax(0, 1fr);
  padding: 18px;
}

.standards-list > li::before {
  align-items: center;
  background: var(--wine);
  border-radius: 20px;
  color: var(--white);
  content: counter(standards-step, decimal-leading-zero);
  display: flex;
  font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  height: 32px;
  justify-content: center;
  width: 38px;
}

.standards-list h3,
.standards-list p {
  grid-column: 2;
}

.standards-list h3 {
  color: var(--wine);
  font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.25;
}

.standards-list p {
  color: var(--cocoa);
  font-size: 16px;
  line-height: 1.55;
}

.standards-list strong {
  color: var(--wine);
}

.standards-image {
  border: 0;
  border-radius: 8px;
  box-shadow: var(--raised);
  margin: 0;
  overflow: hidden;
  position: sticky;
  top: 24px;
}

.standards-image img {
  display: block;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  width: 100%;
}

.signal-list {
  max-width: 1200px;
}

.signal-list.editorial-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.signal-list.editorial-list > li {
  background: rgba(248, 88, 88, 0.07);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(8, 8, 24, 0.055);
  display: block;
  padding: 20px;
}

.signal-list.editorial-list > li::before {
  background: var(--white);
  border-radius: 999px;
  color: var(--coral);
  content: "Risk " counter(editorial-step, decimal-leading-zero);
  display: inline-flex;
  font-size: 12px;
  margin-bottom: 14px;
  padding: 6px 10px;
}

.signal-list.editorial-list h3,
.signal-list.editorial-list p {
  grid-column: auto;
  max-width: none;
}

.signal-list.editorial-list p {
  font-size: 16px;
  line-height: 1.55;
  margin-top: 8px;
}

.insight-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.insight-grid article,
.highlight-panel {
  background: rgba(120, 120, 120, 0.09);
  border: 0;
  border-radius: 16px;
  color: var(--black);
  display: grid;
  gap: 16px;
  padding: 24px;
}

.insight-grid h3,
.highlight-panel h3 {
  color: var(--wine);
}

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

.table-wrap a,
.article-flow a,
.plain-grid a,
.editorial-list a,
.standards-list a,
.network-list a {
  color: var(--wine);
  font-weight: 700;
}

.table-wrap a:hover,
.article-flow a:hover,
.plain-grid a:hover,
.editorial-list a:hover,
.standards-list a:hover,
.network-list a:hover {
  color: var(--coral);
}

.testing-flow {
  counter-reset: testing-step;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0;
}

.testing-flow li {
  background: rgba(120, 120, 120, 0.08);
  border-radius: 8px;
  counter-increment: testing-step;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  padding: 20px;
}

.testing-flow li:last-child {
  border-bottom: 0;
}

.testing-flow li::before {
  align-items: center;
  background: var(--wine);
  border-radius: 999px;
  color: var(--coral);
  content: counter(testing-step, decimal-leading-zero);
  display: flex;
  font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  height: 30px;
  justify-content: center;
  width: 42px;
}

.testing-flow h3 {
  color: var(--wine);
  font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
}

.testing-flow p {
  color: var(--cocoa);
  font-size: 16px;
  line-height: 1.55;
  margin-top: 8px;
  max-width: 1120px;
}

.testing-flow li > div {
  min-width: 0;
}

.ownership-section .section-heading,
.method-section .section-heading,
.risk-section .section-heading {
  justify-content: flex-start;
  max-width: 1200px;
  text-align: left;
}

.ownership-section .section-heading h2,
.method-section .section-heading h2,
.risk-section .section-heading h2 {
  margin-left: 0;
  margin-right: 0;
}

.ownership-section .impact-flow {
  align-items: start;
  column-count: 2;
  column-gap: 72px;
  display: block;
  max-width: 1200px;
}

.ownership-section .impact-flow article {
  align-content: start;
  break-inside: avoid;
  display: grid;
  gap: 10px 18px;
  grid-template-columns: 46px minmax(0, 1fr);
  margin-bottom: 34px;
  padding: 0;
}

.ownership-section .impact-flow article:nth-child(3),
.ownership-section .impact-flow article:nth-child(4) {
  grid-column: span 1;
}

.ownership-section .impact-flow article::before {
  background: rgba(248, 88, 88, 0.14);
  border: 0;
  color: var(--wine);
  height: 36px;
  width: 36px;
}

.method-section {
  background: linear-gradient(180deg, rgba(248, 88, 88, 0.04), rgba(120, 120, 120, 0.045));
  color: var(--black);
  max-width: none;
  padding-left: max(24px, calc((100vw - 1200px) / 2));
  padding-right: max(24px, calc((100vw - 1200px) / 2));
}

.method-section .section-heading {
  margin-bottom: 28px;
}

.method-section h2,
.method-section .testing-flow h3 {
  color: var(--black);
}

.method-section .testing-flow {
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1200px;
}

.method-section .testing-flow li {
  background: var(--white);
  border: 0;
  box-shadow: 0 12px 34px rgba(8, 8, 24, 0.06);
  min-height: 220px;
}

.method-section .testing-flow li:first-child {
  grid-column: span 2;
}

.method-section .testing-flow li::before {
  background: var(--coral);
  color: var(--ink);
}

.method-section .testing-flow p {
  color: var(--cocoa);
}

.risk-section {
  background: rgba(248, 88, 88, 0.055);
  max-width: none;
  padding-left: max(24px, calc((100vw - 1200px) / 2));
  padding-right: max(24px, calc((100vw - 1200px) / 2));
}

.risk-section .signal-list.editorial-list {
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1200px;
}

.risk-section .signal-list.editorial-list > li {
  background: var(--white);
  border: 0;
  min-height: 230px;
}

.risk-section .signal-list.editorial-list > li::before {
  background: rgba(248, 88, 88, 0.11);
  color: var(--wine);
}

.fit-section {
  background: rgba(248, 88, 88, 0.045);
  max-width: none;
  padding-left: max(24px, calc((100vw - 1200px) / 2));
  padding-right: max(24px, calc((100vw - 1200px) / 2));
}

.fit-board {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1200px;
}

.fit-intro-card {
  border-radius: 8px;
  box-shadow: var(--raised);
  min-height: 320px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.fit-intro-card::after {
  content: none;
}

.fit-intro-image {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.fit-accordion {
  display: grid;
  gap: 12px;
}

.fit-accordion details {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(8, 8, 24, 0.055);
  color: var(--black);
  overflow: hidden;
  padding: 0;
}

.fit-accordion summary {
  align-items: center;
  cursor: pointer;
  display: grid;
  gap: 14px;
  grid-template-columns: 46px minmax(0, 1fr);
  list-style: none;
  padding: 18px 20px;
}

.fit-accordion summary::-webkit-details-marker {
  display: none;
}

.fit-accordion summary span {
  align-items: center;
  background: rgba(248, 88, 88, 0.16);
  border-radius: 999px;
  color: var(--wine);
  display: flex;
  font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.fit-accordion summary strong {
  color: var(--wine);
  font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
  font-size: 19px;
}

.fit-accordion p {
  color: var(--cocoa);
  font-size: 16px;
  line-height: 1.6;
  padding: 0 20px 20px 80px;
}

.fit-accordion details[open] {
  box-shadow: var(--raised);
}

.network-list {
  counter-reset: network-step;
  display: grid;
  list-style: none;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0;
}

.network-list > li {
  counter-increment: network-step;
  display: grid;
  gap: 16px 24px;
  grid-template-columns: 56px minmax(220px, 0.42fr) minmax(0, 1fr);
  padding: 20px 0;
}

.network-list > li::before {
  color: var(--coral);
  content: counter(network-step, decimal-leading-zero);
  font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding-top: 3px;
}

.network-heading {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.network-heading h3 {
  color: var(--wine);
  font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
}

.network-heading p {
  color: var(--cocoa);
  font-size: 14px;
  line-height: 1.45;
}

.network-body {
  display: grid;
  gap: 12px;
  max-width: 960px;
  min-width: 0;
}

.network-body p,
.network-body li {
  color: var(--cocoa);
  font-size: 16px;
  line-height: 1.6;
}

.network-body strong {
  color: var(--wine);
}

.network-body ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.details-list {
  display: grid;
  gap: 8px;
}

.details-list details {
  background: var(--white);
  border: 0;
  border-radius: 16px;
  color: var(--black);
  padding: 16px;
}

.details-list summary {
  color: var(--wine);
  cursor: pointer;
  font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
  font-size: 19px;
  font-weight: 700;
}

.details-list details[open] {
  box-shadow: var(--raised);
}

.details-list summary:hover,
.details-list summary:focus-visible {
  color: var(--coral);
}

.details-list details > * + * {
  margin-top: 16px;
}

.faq-section {
  background: var(--white);
  color: var(--black);
  max-width: 1320px;
}

.faq-section .section-heading {
  display: block;
  margin: 0 auto 32px;
  max-width: 1200px;
  text-align: center;
}

.faq-section .eyebrow {
  color: var(--cocoa);
}

.faq-section h2 {
  color: var(--black);
}

.faq-section .details-list {
  gap: 12px;
  margin: 0 auto;
  max-width: 1200px;
}

.faq-section .details-list details {
  background: rgba(120, 120, 120, 0.08);
  border: 0;
  border-radius: 8px;
  box-shadow: none;
  color: var(--black);
  padding: 0;
}

.faq-section .details-list summary {
  align-items: center;
  color: var(--black);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  list-style: none;
  min-height: 64px;
  padding: 18px 20px;
}

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

.faq-section .details-list summary::after {
  align-items: center;
  background: var(--coral);
  border-radius: 50%;
  color: var(--white);
  content: "+";
  display: flex;
  flex: 0 0 28px;
  font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 700;
  height: 28px;
  justify-content: center;
  line-height: 1;
  width: 28px;
}

.faq-section .details-list details[open] summary::after {
  content: "-";
}

.faq-section .details-list p {
  color: var(--cocoa);
  margin: 0;
  max-width: 960px;
  padding: 0 20px 20px;
}

.faq-section .details-list details[open] {
  box-shadow: var(--raised);
}

.responsible-block {
  max-width: none;
  padding-left: max(24px, calc((100vw - 1200px) / 2));
  padding-right: max(24px, calc((100vw - 1200px) / 2));
}

.directory-section {
  padding-top: 40px;
}

.directory-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1200px;
}

.single-directory-grid {
  grid-template-columns: minmax(280px, 420px);
  justify-content: start;
  margin: 0 auto;
}

.blog-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  margin: 0 auto;
}

.directory-card {
  background: var(--white);
  border: 0;
  border-radius: 8px;
  box-shadow: var(--raised);
  color: var(--black);
  display: grid;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 150ms ease, transform 150ms ease;
}

.directory-card:hover,
.directory-card:focus-visible {
  box-shadow: var(--overlay);
  transform: translateY(-2px);
}

.directory-card:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 4px;
}

.directory-media {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: flex;
  justify-content: center;
  min-height: 144px;
  padding: 24px;
}

.image-panel {
  aspect-ratio: 16 / 9;
  background: transparent;
  min-height: 0;
  padding: 0;
}

.playojo-panel {
  aspect-ratio: 2 / 1;
}

.image-panel img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.wordmark-panel span {
  color: var(--coral);
  font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.compact-wordmark span {
  font-size: 40px;
}

.blog-media {
  align-items: end;
  aspect-ratio: 16 / 9;
  justify-content: start;
  min-height: 0;
  overflow: hidden;
  padding: 0;
}

.blog-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.directory-body {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.blog-card .directory-body {
  gap: 14px;
  padding: 28px;
}

.article-image {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  margin: 18px 0 24px;
  overflow: hidden;
}

.article-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.simple-table-wrap {
  margin: 28px 0;
  overflow-x: auto;
}

.simple-table {
  border-collapse: collapse;
  color: var(--cocoa);
  font-size: 16px;
  line-height: 1.5;
  min-width: 720px;
  width: 100%;
}

.simple-table th,
.simple-table td {
  border-bottom: 1px solid rgba(128, 45, 64, 0.14);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.simple-table th {
  color: var(--wine);
  font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}

.directory-body h3 {
  color: var(--black);
  font-size: 24px;
  line-height: 1.15;
}

.directory-body p {
  color: var(--cocoa);
  font-size: 17px;
  line-height: 1.5;
}

.tag-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-stack span {
  background: rgba(120, 120, 120, 0.12);
  border: 0;
  border-radius: 32px;
  color: var(--cocoa);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 10px;
}

.text-link {
  color: var(--wine);
  font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
  font-size: 15px;
  margin-top: 4px;
}

.site-footer {
  background: var(--ink);
  border-top: 0;
  color: var(--white);
  margin-top: 48px;
}

.footer-main {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1.15fr) minmax(160px, 0.45fr) minmax(260px, 0.9fr);
  padding: 48px max(24px, calc((100vw - 1200px) / 2));
}

.footer-copy,
.footer-column {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-copy h2 {
  color: var(--white);
  font-size: 24px;
}

.footer-column h3 {
  color: var(--coral);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-copy p,
.footer-column p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.55;
  max-width: 520px;
}

.footer-column a {
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--coral);
}

.subpage-hero {
  background: var(--ink);
  color: var(--white);
  padding: 8px max(24px, calc((100vw - 1200px) / 2)) 54px;
}

.subpage-hero-copy {
  margin: 44px auto 0;
  max-width: 1200px;
}

.subpage-hero-copy h1 {
  color: var(--white);
  font-size: 48px;
  line-height: 1.05;
  max-width: 780px;
}

.subpage-hero-copy p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 20px;
  line-height: 1.65;
  margin-top: 18px;
  max-width: 960px;
}

.subpage-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.subpage-hero-actions a {
  background: rgba(255, 255, 255, 0.08);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 9px 16px;
  text-decoration: none;
}

.subpage-hero-actions a:hover,
.subpage-hero-actions a:focus-visible {
  background: var(--coral);
  color: var(--ink);
}

.subpage-hero-actions a:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.network-detail-section {
  max-width: none;
  padding-left: max(24px, calc((100vw - 1200px) / 2));
  padding-right: max(24px, calc((100vw - 1200px) / 2));
}

.network-detail-section + .network-detail-section {
  padding-top: 16px;
}

.network-detail-grid,
.network-media-layout,
.network-two-column,
.entain-brand-grid,
.entain-fit-grid {
  display: grid;
  gap: 18px;
  margin: 0 auto;
  max-width: 1200px;
}

.network-detail-grid {
  align-items: stretch;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
}

.network-detail-centered {
  grid-template-columns: minmax(0, 1120px);
  justify-content: center;
}

.network-media-layout {
  align-items: stretch;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
}

.network-two-column {
  gap: 34px;
  grid-template-columns: 1fr;
}

.network-content-card,
.network-lead-card,
.network-fact-card,
.entain-brand-card,
.entain-fit-grid article {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  color: var(--black);
  display: grid;
  gap: 14px;
  padding: 0;
}

.network-lead-card {
  background: transparent;
  box-shadow: none;
}

.network-fact-card {
  align-content: start;
  background: transparent;
}

.network-content-card h2,
.network-lead-card h2,
.network-fact-card h3,
.entain-brand-card h3,
.entain-fit-grid h3 {
  color: var(--wine);
  font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
  line-height: 1.2;
}

.network-content-card h2,
.network-lead-card h2 {
  font-size: 24px;
  text-align: center;
}

.network-fact-card h3,
.entain-brand-card h3,
.entain-fit-grid h3 {
  font-size: 19px;
}

.network-content-card p,
.network-lead-card p,
.network-fact-card dd,
.entain-brand-card p,
.entain-fit-grid p,
.network-content-card li {
  color: var(--cocoa);
  font-size: 17px;
  line-height: 1.65;
}

.network-content-card ol,
.network-content-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.network-fact-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.network-fact-card div {
  background: transparent;
  border-radius: 0;
  display: grid;
  gap: 4px;
  padding: 0;
}

.network-fact-card dt {
  color: var(--wine);
  font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.network-fact-card dd {
  margin: 0;
}

.network-visual-card {
  border-radius: 8px;
  box-shadow: var(--raised);
  margin: 0;
  overflow: hidden;
}

.network-visual-card img {
  display: block;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  width: 100%;
}

.network-section-heading {
  margin-bottom: 22px;
  text-align: center;
}

.network-section-heading > div {
  margin-left: auto;
  margin-right: auto;
}

.entain-brand-grid {
  gap: 28px;
  grid-template-columns: 1fr;
}

.entain-fit-grid {
  gap: 28px;
  grid-template-columns: 1fr;
}

.entain-fit-grid article {
  background: transparent;
}

.about-section {
  padding-bottom: 32px;
}

.principle-list {
  display: grid;
  margin: 0 auto;
  max-width: 1200px;
}

.principle-list p {
  color: var(--cocoa);
  font-size: 17px;
  line-height: 1.6;
  padding: 16px 0;
}

.principle-list strong {
  color: var(--wine);
}

@media (max-width: 960px) {
  .split {
    grid-template-columns: 1fr;
  }

  .casino-grid {
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .plain-grid,
  .insight-grid,
  .compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .checklist-flow {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .ukgc-basics-grid {
    grid-template-columns: 1fr;
  }

  .network-detail-grid,
  .network-media-layout,
  .network-two-column {
    grid-template-columns: 1fr;
  }

  .network-visual-card img {
    min-height: 320px;
  }

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

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

  .fit-board {
    grid-template-columns: 1fr;
  }

  .fit-intro-card {
    min-height: 0;
  }

  .ownership-section .impact-flow,
  .method-section .testing-flow,
  .risk-section .signal-list.editorial-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-section .testing-flow li:first-child {
    grid-column: span 2;
  }

  .risk-section .signal-list.editorial-list > li {
    min-height: 0;
  }

  .listing-layout {
    grid-template-columns: 1fr;
  }

  .standards-image {
    position: static;
  }

  .standards-image img {
    max-height: 440px;
    min-height: 320px;
  }
}

@media (max-width: 720px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  .hero {
    padding: 78px 16px 22px;
  }

  .subpage-hero {
    padding: 104px 16px 34px;
  }

  .subpage-hero-copy {
    margin-top: 28px;
  }

  .subpage-hero-copy h1 {
    font-size: 34px;
    max-width: 100%;
  }

  .subpage-hero-copy p {
    font-size: 17px;
    line-height: 1.55;
    margin-top: 12px;
  }

  .subpage-hero-actions {
    margin-top: 18px;
  }

  .nav {
    align-items: center;
    background: var(--ink);
    box-shadow:
      inset 0 -2px 0 var(--coral),
      0 10px 24px rgba(8, 8, 24, 0.18);
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
    left: 0;
    padding: 7px 16px 8px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 50;
  }

  .brand img {
    height: 42px;
    width: 60px;
  }

  .menu-toggle {
    display: flex;
    height: 38px;
    width: 42px;
  }

  .desktop-nav-links {
    display: none;
  }

  .nav-menu {
    display: block;
  }

  .nav-links {
    background: rgba(8, 8, 24, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(8, 8, 24, 0.28);
    display: none;
    gap: 8px;
    min-width: min(220px, calc(100vw - 32px));
    padding: 10px;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
  }

  .nav-menu[open] .nav-links {
    display: grid;
  }

  .nav-links a {
    font-size: 13px;
    justify-content: flex-start;
    min-height: 38px;
    min-width: 0;
    padding: 9px 12px;
    text-align: left;
  }

  .hero-panel {
    align-items: start;
    gap: 8px;
    grid-template-columns: 1fr;
    margin-top: 4px;
    min-height: auto;
    padding: 0;
  }

  .hero-content {
    grid-column: 1;
    grid-row: 1;
    gap: 8px;
  }

  .hero-panel .eyebrow {
    font-size: 12px;
    margin-bottom: 0;
  }

  .hero-panel h1 {
    font-size: 34px;
    line-height: 1;
  }

  .lead {
    font-size: 18px;
    line-height: 1.45;
    max-width: 100%;
  }

  .hero-symbol-desktop {
    display: none;
  }

  .hero-symbol-mobile {
    display: none;
  }

  .hero-bottom {
    align-items: center;
    gap: 0;
    justify-content: start;
  }

  .hero-actions {
    align-items: center;
    flex-direction: row;
    flex: 1 1 auto;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 0;
    min-width: 0;
  }

  .hero-actions .button {
    flex: 0 0 104px;
    font-size: 12px;
    height: 34px;
    min-height: 34px;
    padding: 0 8px;
    white-space: nowrap;
    width: 104px;
  }

  .section {
    padding: 32px 16px;
  }

  .section-heading {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .article-flow p,
  .article-flow li,
  .highlight-panel p,
  .insight-grid p,
  .plain-grid p,
  .plain-grid li,
  .editorial-list p,
  .editorial-list li,
  .network-body p,
    .network-body li,
    .testing-flow p,
    .details-list p,
    .details-list li {
    font-size: 15px;
    line-height: 1.6;
  }

  .plain-grid,
  .insight-grid,
  .directory-grid,
  .network-card-grid,
  .compact-grid {
    grid-template-columns: 1fr;
  }

  .network-group-card.featured-network {
    grid-column: span 1;
  }

  .network-visual {
    min-height: 160px;
  }

  .fit-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .fit-accordion summary {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 16px;
  }

  .fit-accordion p {
    padding: 0 16px 16px 64px;
  }

  .insight-grid article,
  .highlight-panel,
  .details-list details {
    border-radius: 8px;
    padding: 16px;
  }

  .standards-list > li {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 14px;
  }

  .standards-list > li::before {
    font-size: 12px;
    height: 28px;
    width: 34px;
  }

  .standards-list p {
    font-size: 14px;
  }

  .directory-card {
    border-radius: 8px;
  }

  .directory-media {
    min-height: 118px;
    padding: 18px;
  }

  .image-panel {
    background: transparent;
    padding: 0;
  }

  .wordmark-panel span {
    font-size: 34px;
  }

  .directory-body {
    padding: 18px;
  }

  .directory-body h3 {
    font-size: 20px;
  }

  .author-section {
    margin-top: 40px;
    padding: 40px 16px;
  }

  .article-author-section {
    padding: 16px 16px 0;
  }

  .article-author-box {
    gap: 12px;
    grid-template-columns: 56px minmax(0, 1fr);
    padding: 14px;
  }

  .article-author-photo {
    height: 56px;
    width: 56px;
  }

  .article-author-copy h2 {
    font-size: 17px;
  }

  .article-author-copy p:not(.author-role) {
    font-size: 13px;
  }

  .author-inner {
    gap: 20px;
  }

  .team-kicker {
    gap: 10px;
  }

  .team-kicker span {
    height: 8px;
    width: 8px;
  }

  .author-section h2 {
    font-size: 24px;
  }

  .author-grid {
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .author-card {
    gap: 16px;
    grid-template-columns: 72px minmax(0, 1fr);
    padding: 18px;
  }

  .author-photo {
    font-size: 18px;
    height: 72px;
    width: 72px;
  }

  .author-card h3 {
    font-size: 18px;
  }

  .author-card p:not(.author-role) {
    font-size: 14px;
    margin-top: 8px;
  }

  .author-role {
    font-size: 10px;
    margin-bottom: 6px;
  }

  .author-card a {
    font-size: 13px;
    margin-top: 10px;
  }

  .details-list summary {
    font-size: 16px;
  }

  .testing-flow,
  .signal-list.editorial-list {
    grid-template-columns: 1fr;
  }

  .ownership-section .section-heading,
  .method-section .section-heading,
  .risk-section .section-heading {
    text-align: center;
    justify-content: center;
  }

  .ownership-section .section-heading h2,
  .method-section .section-heading h2,
  .risk-section .section-heading h2 {
    margin-left: auto;
    margin-right: auto;
  }

  .ownership-section .impact-flow,
  .method-section .testing-flow,
  .risk-section .signal-list.editorial-list {
    column-count: 1;
    grid-template-columns: 1fr;
  }

  .method-section,
  .risk-section,
  .network-detail-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .entain-brand-grid,
  .entain-fit-grid {
    grid-template-columns: 1fr;
  }

  .network-content-card,
  .network-lead-card,
  .network-fact-card,
  .entain-brand-card,
  .entain-fit-grid article {
    padding: 0;
  }

  .method-section .testing-flow li:first-child {
    grid-column: span 1;
  }

  .testing-flow li {
    gap: 12px;
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .impact-flow article {
    gap: 8px 12px;
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 12px 0;
  }

  .testing-flow li::before {
    font-size: 14px;
  }

  .impact-flow article::before {
    font-size: 13px;
    height: 34px;
    width: 34px;
  }

  .testing-flow h3,
  .impact-flow h3,
  .network-flow h3,
  .network-heading h3,
  .plain-grid h3,
  .editorial-list h3 {
    font-size: 17px;
  }

  .editorial-list > li {
    gap: 8px 12px;
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 12px 0;
  }

  .signal-list.editorial-list > li {
    display: block;
    padding: 16px;
  }

  .editorial-list > li::before {
    font-size: 12px;
    padding-top: 2px;
  }

  .network-list > li {
    gap: 8px 12px;
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 12px 0;
  }

  .network-list > li::before {
    font-size: 12px;
    padding-top: 2px;
  }

  .network-body {
    grid-column: 2;
  }

  .casino-grid {
    align-items: start;
    gap: 10px;
  }

  .casino-card {
    align-content: start;
    align-items: stretch;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
  }

  .casino-card .button {
    font-size: 11px;
    height: 28px;
    min-height: 28px;
    padding: 4px 6px;
    width: 100%;
  }

  .casino-card h3 {
    align-items: center;
    display: flex;
    font-size: 15px;
    justify-content: center;
    line-height: 1.05;
    margin-top: 0;
    min-height: 30px;
  }

  .logo-frame {
    aspect-ratio: 2.15 / 1;
    height: auto;
    justify-content: center;
    margin-top: 12px;
    min-height: 0;
    overflow: hidden;
    padding: 0;
    width: 100%;
  }

  .logo-frame img {
    height: 100%;
    max-width: none;
    width: 100%;
  }

  .logo-frame span {
    display: block;
  }

  .stars {
    align-items: center;
    flex-direction: row;
    gap: 4px;
  }

  .licence,
  .stars,
  .stars span,
  .stars strong {
    font-size: 11px;
  }

  .bonus {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    font-size: 10px;
    height: 38px;
    line-height: 1.18;
    min-height: 38px;
    overflow: hidden;
    padding: 5px 6px;
  }

  .terms {
    font-size: 9px;
    line-height: 1;
    min-height: 0;
  }

  .terms-full {
    display: none;
  }

  .terms-short,
  .button-short {
    display: inline;
  }

  .casino-card .button-full {
    display: none;
  }

  .card-stats {
    gap: 4px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1px;
  }

  .card-stats span {
    font-size: 10px;
    line-height: 1.08;
    text-align: center;
  }

  .card-stats small {
    font-size: 8px;
    line-height: 1.05;
  }

  .payment-strip {
    gap: 3px;
  }

  .payment-method {
    border-radius: 4px;
    min-height: 18px;
  }

  .payment-method img {
    height: 18px;
  }

  .rank-row {
    grid-template-columns: 32px 48px minmax(0, 1fr);
  }

  .rank-row .logo-frame {
    height: 48px;
    width: 48px;
  }

  .rank-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rank-actions .button {
    width: 100%;
  }

  .footer-main {
    gap: 32px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-copy {
    grid-column: 1 / -1;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 420px) {
  body {
    font-size: 14px;
  }

  .hero {
    padding: 68px 12px 18px;
  }

  .hero-panel {
    margin-top: 0;
  }

  .hero-panel h1 {
    font-size: 30px;
  }

  .lead {
    font-size: 16px;
    line-height: 1.38;
  }

  .hero-metrics {
    gap: 4px 10px;
  }

  .hero-metrics span {
    font-size: 12px;
  }

  .hero-metrics span + span::before {
    margin-right: 10px;
  }

  .casino-grid {
    gap: 6px;
  }

  .casino-card {
    border-radius: 8px;
    gap: 4px;
    padding: 6px;
  }

  .casino-card h3 {
    font-size: 13px;
    min-height: 26px;
  }

  .licence,
  .stars,
  .stars span,
  .stars strong,
  .card-stats span {
    font-size: 10px;
  }

  .bonus {
    height: 34px;
    font-size: 9px;
    min-height: 34px;
  }

  .terms {
    font-size: 9px;
  }

  .logo-frame {
    aspect-ratio: var(--logo-ratio, 1.9 / 1);
    height: auto;
    justify-content: center;
    margin-top: 10px;
    min-height: 0;
    overflow: hidden;
    padding: 0;
    width: 100%;
  }

  .logo-frame img {
    height: 100%;
    max-width: none;
    width: 100%;
  }

  .logo-frame span {
    display: block;
  }

  .payment-strip {
    gap: 2px;
  }

  .payment-method {
    border-radius: 3px;
    min-height: 16px;
  }

  .payment-method img {
    height: 16px;
  }

  .casino-card .button {
    font-size: 9px;
    height: 24px;
    min-height: 24px;
    padding: 4px 5px;
  }

  .footer-main {
    gap: 16px;
    grid-template-columns: 1fr;
    padding: 22px 16px;
  }

  .footer-copy h2 {
    font-size: 20px;
  }

  .footer-copy p,
  .footer-column p {
    font-size: 13px;
    line-height: 1.4;
  }

  .footer-column[aria-label="Explore"] a {
    font-size: 13px;
    min-height: 32px;
    padding: 6px 8px;
  }

  .subpage-hero {
    padding: 98px 16px 20px;
  }

}
