:root {
  --bg: #050607;
  --bg-2: #101114;
  --surface: #ffffff;
  --surface-2: #f5f7f8;
  --surface-3: #eafcff;
  --text: #111214;
  --muted: #596168;
  --muted-dark: #c8d4d8;
  --line: #dfe5e8;
  --line-dark: rgba(0, 0, 0, 0.1);
  --blue: #06cdec;
  --blue-2: #18e1ff;
  --link: #047486;
  --gold: #111214;
  --green: #10a36f;
  --danger: #c43c56;
  --shadow: 0 20px 60px rgba(5, 6, 7, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -90px;
  z-index: 1000;
  padding: 12px 14px;
  border-radius: 6px;
  background: #ffffff;
  color: #050607;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.notice-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 8px 20px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  color: #2d3033;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.notice-bar a {
  color: var(--blue-2);
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand strong {
  color: var(--text);
}

.brand span:last-child {
  color: var(--blue);
}

.brand-mark {
  width: 52px;
  height: 44px;
  border-radius: 8px;
  background: #ffffff;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(5, 6, 7, 0.08);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: #34383c;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  color: #050607;
}

.nav-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid #050607;
  border-radius: 8px;
  padding: 10px 16px;
  background: #050607;
  color: #ffffff !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #050607;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  color: var(--text);
}

.rankings-hero {
  min-height: min(820px, calc(100svh - 118px));
}

.hero-stage {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: min(820px, calc(100svh - 118px));
  padding: clamp(56px, 7vw, 92px) 0 34px;
}

.hero-line {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero-line-left {
  left: 4vw;
  top: 36px;
  width: 440px;
  height: 260px;
  border-top: 3px solid var(--blue);
  border-left: 3px solid var(--blue);
  transform: skewX(-12deg) rotate(-41deg);
  transform-origin: top left;
}

.hero-line-bottom {
  right: -10px;
  bottom: 28px;
  width: 380px;
  height: 90px;
  border-right: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
  transform: skewX(-34deg);
}

.hero-suit {
  position: absolute;
  z-index: 1;
  color: #111214;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1;
  pointer-events: none;
}

.spade {
  top: 52px;
  right: 14vw;
}

.diamond {
  top: 78px;
  right: 7.5vw;
  color: var(--blue);
  font-size: clamp(52px, 5vw, 76px);
}

.club {
  top: 170px;
  right: 4vw;
}

.heart {
  top: 278px;
  right: 2.5vw;
  color: var(--blue);
  font-size: clamp(56px, 5vw, 78px);
}

.chip {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
}

.chip-large {
  left: 5vw;
  bottom: 96px;
  width: 124px;
  height: 124px;
  border: 4px solid #111214;
  background:
    radial-gradient(circle, transparent 36%, #ffffff 37% 56%, transparent 57%),
    repeating-conic-gradient(#111214 0deg 9deg, transparent 9deg 21deg);
}

.chip-small {
  left: 13vw;
  bottom: 80px;
  width: 78px;
  height: 78px;
  border: 3px solid var(--blue);
  background:
    radial-gradient(circle, transparent 36%, #ffffff 37% 56%, transparent 57%),
    repeating-conic-gradient(var(--blue) 0deg 9deg, transparent 9deg 22deg);
}

.hero-corner-logo {
  position: absolute;
  z-index: 2;
  left: clamp(28px, 4vw, 70px);
  top: clamp(8px, 2vw, 28px);
  width: clamp(82px, 9vw, 132px);
  aspect-ratio: 620 / 540;
  object-fit: cover;
  border-radius: 8px;
}

.hero-copy h1 {
  max-width: 1180px;
  margin: 0;
  color: var(--text);
  font-size: clamp(52px, 6vw, 94px);
  line-height: 0.92;
  letter-spacing: 0;
  text-align: center;
}

.hero-copy p {
  max-width: 800px;
  margin: 26px auto 0;
  color: #181b1e;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.16;
  text-align: center;
}

.hero-underline {
  display: block;
  width: 118px;
  height: 9px;
  margin: 30px auto 0;
  border-radius: 999px;
  background: var(--blue);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  background: var(--blue);
  color: #050607;
  box-shadow: 0 14px 34px rgba(6, 205, 236, 0.28);
}

.btn-primary:hover {
  background: var(--blue-2);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 650px;
  gap: 12px;
  margin-top: 40px;
}

.hero-proof span {
  min-height: 52px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 12px 14px;
  color: #e9f1fb;
  background: rgba(255, 255, 255, 0.07);
  font-size: 13px;
  font-weight: 800;
}

.rank-preview {
  display: grid;
  grid-template-columns: 1.18fr 1fr 1fr;
  width: min(100%, 1240px);
  gap: clamp(18px, 2.5vw, 36px);
  margin-top: 52px;
}

.rank-preview-card {
  position: relative;
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  align-items: center;
  min-height: 174px;
  overflow: hidden;
  border-radius: 16px;
  padding: 28px 34px;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(135deg, #111214, #050607);
  color: #ffffff;
  box-shadow: 0 18px 46px rgba(5, 6, 7, 0.18);
}

.rank-preview-card::before {
  content: "";
  position: absolute;
  left: 31%;
  top: -18%;
  width: 4px;
  height: 140%;
  background: var(--blue);
  transform: rotate(-14deg);
  box-shadow: 12px 0 0 rgba(6, 205, 236, 0.95);
}

.rank-preview-card-featured {
  grid-template-columns: 106px 118px minmax(0, 1fr);
}

.rank-preview-card-featured::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: rgba(255, 255, 255, 0.4);
}

.rank-preview-card strong {
  position: relative;
  z-index: 1;
  font-size: clamp(72px, 7vw, 104px);
  line-height: 0.9;
  font-weight: 900;
}

.rank-icon {
  position: relative;
  z-index: 1;
  color: var(--blue);
}

.rank-icon svg {
  width: 82px;
  height: 82px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rank-rating {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.rank-rating span {
  color: var(--blue);
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: 3px;
  white-space: nowrap;
}

.rank-rating i,
.rank-rating em {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
}

.rank-rating em {
  width: 88%;
  background: rgba(255, 255, 255, 0.48);
}

.rank-rating em:last-child {
  width: 62%;
}

.hero-cta-row {
  display: flex;
  justify-content: flex-end;
  width: min(100%, 1240px);
  margin-top: 50px;
}

.hero-rank-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-width: min(100%, 430px);
  min-height: 96px;
  border-radius: 16px;
  padding: 22px 42px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #050607;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 22px 50px rgba(6, 205, 236, 0.28);
}

.hero-rank-cta svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-legal {
  margin: 58px 0 0;
  color: #111214;
  font-size: clamp(18px, 2vw, 24px);
  text-align: center;
}

.hero-media {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.brand-board {
  display: grid;
  gap: 22px;
  min-height: 486px;
  align-content: center;
  padding: clamp(22px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(6, 205, 236, 0.18), transparent 42%),
    #ffffff;
}

.hero-logo-panel {
  display: grid;
  min-height: 220px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #ffffff, #f5f7f8);
}

.hero-logo-panel img {
  width: min(330px, 78%);
  aspect-ratio: 620 / 540;
  object-fit: cover;
}

.dashboard-lines {
  display: grid;
  gap: 10px;
}

.dashboard-lines span {
  display: grid;
  grid-template-columns: 96px minmax(80px, 1fr) 38px;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #f8fafb;
}

.dashboard-lines b,
.dashboard-lines em {
  color: var(--text);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.dashboard-lines i {
  height: 9px;
  border-radius: 999px;
  background: #e4eaed;
  overflow: hidden;
}

.dashboard-lines i::before {
  content: "";
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #050607, var(--blue));
}

.method-card {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: min(310px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 16px;
  background: rgba(5, 6, 7, 0.88);
  backdrop-filter: blur(14px);
}

.method-card span {
  display: block;
  color: var(--muted-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.method-card strong {
  display: block;
  margin-top: 4px;
  font-size: 22px;
}

.mini-bars {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}

.mini-bars i {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.mini-bars i::before {
  content: "";
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), #ffffff);
}

.quick-strip {
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quick-grid div {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 3px;
  border-right: 1px solid var(--line);
  padding: 22px 24px;
}

.quick-grid div:first-child {
  border-left: 1px solid var(--line);
}

.quick-grid strong {
  color: var(--blue);
  font-size: 38px;
  line-height: 1;
}

.quick-grid span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.section {
  padding: 76px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-head h2,
.trust-section h2,
.explain-section h2,
.responsible-section h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-head p,
.trust-section p,
.explain-section p,
.responsible-section p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.split-head {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.updated-box {
  min-width: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--surface-2);
}

.updated-box span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.updated-box strong {
  display: block;
  margin-top: 3px;
  color: var(--text);
  font-size: 17px;
}

.rankings-section,
.guides-section,
.faq-section {
  background: var(--surface-2);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.filter-chip {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 14px;
  background: #ffffff;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.filter-chip.is-active {
  border-color: var(--blue);
  background: var(--blue);
  color: #050607;
}

.casino-list {
  display: grid;
  gap: 14px;
}

.casino-card {
  display: grid;
  grid-template-columns: 68px 164px minmax(0, 1fr) 118px 150px;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(10, 24, 48, 0.06);
}

.casino-card.is-hidden,
tbody tr.is-hidden {
  display: none;
}

.rank-cell {
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 112px;
  border-radius: 8px;
  background: linear-gradient(180deg, #111214, #050607);
  color: var(--blue-2);
}

.rank-cell span {
  font-size: 38px;
  font-weight: 900;
}

.brand-tile {
  display: grid;
  min-height: 92px;
  place-items: center;
  border-radius: 8px;
  padding: 14px;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.brand-betmgm {
  background: linear-gradient(135deg, #060606, #1b1205);
  color: #f4ce73;
}

.brand-proline {
  background: linear-gradient(135deg, #0a1215, #0b2a1d);
  color: #39e872;
}

.brand-caesars {
  background: linear-gradient(135deg, #101010, #3b270c);
  color: #e9c679;
}

.brand-draftkings {
  background: linear-gradient(135deg, #07170d, #123a22);
  color: #ff8a22;
}

.casino-main h3,
.review-card h3,
.guide-grid h3,
.score-graph h3,
.help-panel h3 {
  margin: 0;
  color: var(--text);
  font-size: 20px;
  line-height: 1.2;
}

.casino-main p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.casino-main ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.casino-main li {
  border-radius: 999px;
  padding: 5px 9px;
  background: var(--surface-3);
  color: #075363;
  font-size: 12px;
  font-weight: 800;
}

.score-box {
  display: grid;
  justify-items: center;
  gap: 2px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: 10px;
}

.score-box strong {
  color: var(--text);
  font-size: 30px;
  line-height: 1;
}

.score-box span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.card-actions {
  display: grid;
  gap: 10px;
  justify-items: stretch;
}

.card-actions .btn {
  min-height: 46px;
  padding: 10px 12px;
}

.card-actions > a:last-child {
  color: var(--link);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.compare-section {
  background: #ffffff;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

table {
  width: 100%;
  min-width: 840px;
  border-collapse: collapse;
  font-size: 14px;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 16px;
  text-align: left;
  vertical-align: top;
}

thead th {
  background: var(--surface-3);
  color: #063a43;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

tbody th {
  color: var(--text);
}

tbody td {
  color: var(--muted);
  font-weight: 650;
}

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

.score-graph {
  display: grid;
  gap: 13px;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #ffffff;
}

.graph-row {
  display: grid;
  grid-template-columns: 120px minmax(150px, 1fr) 44px;
  align-items: center;
  gap: 14px;
}

.graph-row span,
.graph-row em {
  color: var(--text);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}

.graph-row i {
  height: 13px;
  border-radius: 999px;
  background: #e7edf7;
  overflow: hidden;
}

.graph-row b {
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), #101114);
}

.method-section,
.trust-section,
.responsible-section {
  background:
    radial-gradient(circle at 85% 15%, rgba(6, 205, 236, 0.18), transparent 28%),
    linear-gradient(135deg, #050607, #111214);
  color: #ffffff;
}

.method-grid,
.trust-grid,
.responsible-grid,
.explain-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.method-section .section-head h2,
.method-section .section-head p,
.trust-section h2,
.trust-section p,
.responsible-section h2,
.responsible-section p {
  color: #ffffff;
}

.method-section .section-head p,
.trust-section p,
.responsible-section p {
  color: #c9d7ea;
}

.method-list,
.checklist,
.help-panel {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.method-list div,
.checklist li {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.method-list strong {
  color: var(--blue-2);
  font-size: 24px;
}

.method-list span,
.checklist span {
  color: #dbe7f7;
  font-weight: 650;
}

.review-section {
  background: #ffffff;
}

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

.review-card,
.guide-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(10, 24, 48, 0.06);
}

.review-card p,
.guide-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.review-card dl {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.review-card dl div {
  display: grid;
  gap: 2px;
}

.review-card dt {
  color: var(--link);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-card dd {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 650;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.source-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 10px 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.checklist {
  counter-reset: check-item;
  list-style: none;
}

.checklist li {
  grid-template-columns: 44px minmax(0, 1fr);
  counter-increment: check-item;
}

.checklist li::before {
  content: counter(check-item);
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--blue);
  color: #050607;
  font-weight: 900;
}

.checklist strong {
  display: block;
  grid-column: 2;
  color: #ffffff;
}

.checklist span {
  grid-column: 2;
  min-width: 0;
}

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

.guide-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--surface-3);
  color: #063a43;
  font-weight: 900;
}

.text-link {
  color: var(--link);
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.explain-section {
  background: #ffffff;
}

.simple-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.simple-flow div {
  min-height: 128px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--surface-2);
}

.simple-flow strong {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--blue);
  color: #050607;
}

.simple-flow span {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.simple-flow i {
  display: none;
}

.help-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.help-panel h3 {
  color: #ffffff;
}

.help-panel a {
  color: var(--blue-2);
  font-weight: 800;
  text-decoration: none;
}

.help-panel p {
  margin: 4px 0 0;
  color: #dbe7f7;
  font-size: 14px;
  font-weight: 700;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--blue);
  font-size: 20px;
  font-weight: 900;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.site-footer {
  background: #050607;
  color: #d8e4f7;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 0.7fr 0.7fr minmax(260px, 0.9fr);
  gap: 34px;
  padding: 54px 0;
}

.footer-brand {
  color: #ffffff;
}

.footer-brand strong {
  color: #ffffff;
}

.site-footer p {
  max-width: 440px;
  color: #aebbd0;
}

.footer-pill {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 8px 10px;
  color: #d8e4f7;
  font-size: 12px;
  font-weight: 800;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 9px;
}

.site-footer nav a {
  color: #aebbd0;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.email-form {
  display: grid;
  align-content: start;
  gap: 10px;
}

.email-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.email-form input::placeholder {
  color: #8f9eb5;
}

.email-form .btn {
  width: 100%;
}

.email-form p {
  min-height: 22px;
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0 24px;
  color: #8f9eb5;
  font-size: 13px;
}

@media (max-width: 1060px) {
  .hero-grid,
  .method-grid,
  .trust-grid,
  .responsible-grid,
  .explain-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .casino-card {
    grid-template-columns: 60px 144px minmax(0, 1fr);
  }

  .score-box {
    grid-column: 2 / 3;
    border-left: 0;
    border-right: 0;
    justify-items: start;
    padding: 0;
  }

  .card-actions {
    grid-column: 3 / 4;
    grid-row: 2;
  }

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

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

@media (max-width: 780px) {
  .shell {
    width: min(100% - 28px, var(--max));
  }

  .notice-bar {
    display: block;
    padding: 9px 14px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 105px 14px auto;
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    padding: 16px;
    background: #ffffff;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
  }

  body.nav-open .site-nav {
    display: grid;
    gap: 6px;
  }

  .site-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    color: var(--text);
  }

  .hero-grid {
    padding: 50px 0 44px;
  }

  .hero-corner-logo,
  .hero-line-left,
  .hero-line-bottom,
  .spade,
  .diamond,
  .club,
  .heart,
  .chip-large,
  .chip-small {
    display: none;
  }

  .hero-proof,
  .quick-grid,
  .review-grid,
  .faq-grid,
  .simple-flow,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quick-grid div,
  .quick-grid div:first-child {
    border-left: 1px solid var(--line);
  }

  .split-head {
    display: grid;
    align-items: start;
  }

  .section {
    padding: 54px 0;
  }

  .casino-card {
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: start;
  }

  .rank-cell {
    min-height: 86px;
  }

  .brand-tile,
  .casino-main,
  .score-box,
  .card-actions {
    grid-column: 2 / 3;
  }

  .brand-tile {
    min-height: 72px;
  }

  .card-actions {
    grid-row: auto;
  }

  .graph-row {
    grid-template-columns: 92px minmax(100px, 1fr) 38px;
    gap: 10px;
  }

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

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 480px) {
  .brand {
    font-size: 20px;
  }

  .brand-mark {
    width: 46px;
    height: 38px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-media {
    margin-inline: -14px;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .method-card {
    position: static;
    width: auto;
    border-radius: 0;
  }

  .casino-card {
    padding: 14px;
    gap: 12px;
  }

  .casino-main ul {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
