:root {
  --bg: #101512;
  --panel: #17211c;
  --panel-2: #1f2a24;
  --ink: #f4ead7;
  --muted: #b7ab96;
  --soft: #d8c299;
  --gold: #c8a756;
  --green: #72b98c;
  --red: #b86359;
  --line: rgba(244, 234, 215, 0.13);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
}

.page-hero {
  display: grid;
  place-items: center;
  min-height: 330px;
  padding: 58px clamp(18px, 5vw, 86px);
  text-align: center;
  background:
    linear-gradient(rgba(244, 234, 215, 0.026) 1px, transparent 1px) 50% 0 / 145px 145px,
    radial-gradient(circle at 50% 20%, rgba(212, 181, 102, 0.16), transparent 32%),
    linear-gradient(135deg, #101512 0%, #17221c 54%, #0d1511 100%);
  border-bottom: 1px solid rgba(244, 234, 215, 0.1);
}

.page-hero > div {
  width: min(920px, 100%);
}

.page-hero h1 {
  margin: 0 auto 14px;
  color: #f4ead7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6vw, 92px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto;
  color: #b7ab96;
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 700;
}

.content-band,
.article-shell {
  padding: 48px clamp(18px, 5vw, 86px);
  background:
    linear-gradient(rgba(244, 234, 215, 0.018) 1px, transparent 1px) 50% 0 / 145px 145px,
    linear-gradient(180deg, #0f1713 0%, #101512 100%);
}

.article-shell {
  color: #eee7dd;
  font-size: 18px;
}

.article-shell > * {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
}

.article-shell .hub-section {
  max-width: 1220px;
  padding-top: 18px;
}

.hub-section > h2 {
  max-width: 780px;
  margin-bottom: 10px;
  font-size: clamp(42px, 4.6vw, 72px);
  line-height: 0.98;
}

.hub-section > p:not(.eyebrow) {
  max-width: 780px;
  margin: 0 0 28px;
  color: #d8c299;
  font-size: 20px;
  font-weight: 700;
}

.resource-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1220px;
  margin-top: 28px;
}

.resource-card,
.trust-grid article {
  min-width: 0;
  min-height: 250px;
  padding: 24px;
  background:
    radial-gradient(circle at 26% 8%, rgba(244, 234, 215, 0.09), transparent 30%),
    linear-gradient(150deg, rgba(200, 167, 86, 0.08), transparent 54%),
    #142019;
  border: 1px solid rgba(244, 234, 215, 0.14);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}

.resource-kicker {
  margin: 0 0 18px;
  color: #c8a756;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.resource-card h2,
.trust-grid h2 {
  margin: 0 0 12px;
  color: #f4ead7;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.08;
}

.resource-card p:not(.resource-kicker),
.trust-grid p {
  margin: 0;
  color: #b7ab96;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.5;
}

.resource-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 0 16px;
  border: 1px solid rgba(200, 167, 86, 0.38);
  color: #d8c299;
  font-size: 13px;
  font-weight: 950;
}

.resource-link:hover {
  background: rgba(200, 167, 86, 0.11);
  color: #f4ead7;
}

.article-shell h2,
.article-shell h3 {
  color: #f4ead7;
  line-height: 1.1;
}

.article-section {
  margin-top: 42px;
  padding-top: 32px;
  border-top: 1px solid rgba(244, 234, 215, 0.12);
}

.content-image {
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(244, 234, 215, 0.14);
  background: #15211b;
}

.content-image img {
  display: block;
  width: 100%;
  height: auto;
}

.content-image figcaption {
  padding: 10px 14px;
  color: #b7ab96;
  font-size: 14px;
}

.slots-catalog-grid .slot-featured img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu {
  display: contents;
}

.nav .menu-item {
  display: inline-flex;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  background: rgba(16, 21, 18, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  grid-column: 1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(200, 167, 86, 0.55);
  background: #221d13;
  color: var(--gold);
  font-weight: 900;
}

.nav {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 18px;
  font-weight: 850;
  position: static;
  left: auto;
  transform: none;
}

.nav a:hover,
.text-link:hover {
  color: var(--gold);
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(420px, 1.25fr);
  gap: 28px;
  align-items: end;
  padding: 44px clamp(18px, 4vw, 54px) 24px;
  background:
    radial-gradient(circle at 18% -30%, rgba(200, 167, 86, 0.25), transparent 34%),
    linear-gradient(135deg, #101512 0%, #16221c 54%, #0e1614 100%);
}

.home-hero {
  position: relative;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 20px;
  padding: 46px clamp(18px, 4vw, 54px) 54px;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(rgba(244, 234, 215, 0.032) 1px, transparent 1px) 50% 0 / 146px 146px,
    linear-gradient(90deg, transparent 0, rgba(200, 167, 86, 0.18) 50%, transparent 100%) 50% 118px / min(900px, 78vw) 1px no-repeat,
    radial-gradient(circle at 50% 22%, rgba(200, 167, 86, 0.2), transparent 29%),
    radial-gradient(circle at 50% 100%, rgba(114, 185, 140, 0.11), transparent 35%),
    linear-gradient(135deg, #101512 0%, #17221c 54%, #0d1511 100%);
}

.home-hero::before {
  content: "";
  position: absolute;
  top: 76px;
  left: 50%;
  width: min(620px, 70vw);
  height: min(620px, 70vw);
  transform: translateX(-50%);
  border: 1px solid rgba(200, 167, 86, 0.08);
  background: radial-gradient(circle, rgba(200, 167, 86, 0.1), transparent 62%);
  opacity: 0.9;
  pointer-events: none;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: auto clamp(18px, 10vw, 180px) 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 234, 215, 0.16), transparent);
  pointer-events: none;
}

.home-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(100%, 1320px);
  max-width: 1320px;
  padding-bottom: 0;
}

.home-hero-copy h1 {
  max-width: 1320px;
  margin-bottom: 12px;
  font-size: clamp(46px, 5.35vw, 86px);
  line-height: 0.92;
}

.home-hero-copy .lede {
  max-width: 760px;
}

.data-console {
  width: min(100%, 1180px);
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: left;
}

.console-head,
.console-grid span {
  background: #121b17;
}

.console-head {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 146px;
  padding: 22px;
}

.console-head span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.console-head strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 500;
  line-height: 1.04;
}

.console-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.console-grid span {
  display: grid;
  align-content: center;
  min-height: 72px;
  padding: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.console-grid strong {
  display: block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.02;
}

.hero-search {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  margin-top: 8px;
  transform: none;
}

.hero-search .checker-panel {
  grid-template-columns: minmax(280px, 1.45fr) minmax(170px, 0.65fr) minmax(220px, 0.75fr);
  background:
    linear-gradient(135deg, rgba(200, 167, 86, 0.11), transparent 62%),
    #1a241e;
  border-color: rgba(244, 234, 215, 0.18);
}

.checker-hero {
  position: relative;
  display: grid;
  place-items: center;
  padding: 50px clamp(18px, 4vw, 54px) 30px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(200, 167, 86, 0.22), transparent 28%),
    linear-gradient(135deg, #101512, #1b271f 58%, #0b120f);
  border-bottom: 1px solid var(--line);
}

.checker-hero::before {
  content: none;
}

.checker-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
  display: grid;
  justify-items: center;
}

.checker-hero h1 {
  max-width: 620px;
  margin-bottom: 10px;
  font-size: clamp(36px, 4vw, 58px);
}

.checker-search-section {
  padding: 18px clamp(18px, 4vw, 54px) 30px;
  background: #101512;
}

.checker-panel-large {
  grid-template-columns: minmax(280px, 1.5fr) minmax(160px, 0.65fr) minmax(180px, 0.8fr);
  max-width: 1160px;
  margin: 0 auto;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(200, 167, 86, 0.13), transparent 58%),
    #1a241e;
  border-color: rgba(244, 234, 215, 0.2);
}

.checker-snapshot {
  padding-top: 0;
}

.checker-results {
  padding-top: 42px;
}

.hero-side {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.hero-board {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) 1fr;
  gap: 18px;
  align-items: end;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(200, 167, 86, 0.12), transparent 52%),
    rgba(244, 234, 215, 0.06);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-board h2 {
  margin-bottom: 0;
  font-size: clamp(25px, 2.4vw, 38px);
}

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

.hero-board-grid span {
  display: grid;
  gap: 4px;
  min-height: 72px;
  padding: 12px;
  background: #0d1410;
  border: 1px solid rgba(244, 234, 215, 0.12);
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.hero-board-grid strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1;
}

.hero-copy {
  max-width: 560px;
  padding-bottom: 10px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5.2vw, 74px);
  font-weight: 500;
  line-height: 0.98;
}

h2 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 500;
  line-height: 1.08;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.18;
}

.lede {
  max-width: 540px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.checker-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) minmax(150px, 0.8fr) minmax(160px, 0.9fr);
  gap: 12px;
  padding: 14px;
  background: rgba(244, 234, 215, 0.08);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-width: 0;
}

label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

input,
select {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  border: 1px solid rgba(244, 234, 215, 0.16);
  border-radius: 0;
  background: #0c120f;
  color: var(--ink);
  outline: none;
  padding: 0 12px;
}

input:focus,
select:focus {
  border-color: var(--gold);
}

input[type="range"] {
  min-width: 0;
  accent-color: var(--gold);
  padding: 0;
}

output {
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
}

.snapshot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0 clamp(18px, 4vw, 54px) 34px;
  background: linear-gradient(180deg, transparent 0, transparent 50%, #efe6d5 50%, #efe6d5 100%);
}

.snapshot article {
  min-height: 112px;
  padding: 22px;
  background: #121b17;
  border: 1px solid var(--line);
}

.snapshot span {
  display: block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1;
}

.snapshot p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.layout,
.comparison,
.architecture,
.guide-strip {
  padding-inline: clamp(18px, 4vw, 54px);
}

.layout {
  padding-top: 46px;
  padding-bottom: 52px;
  background: #efe6d5;
  color: #151915;
}

.data-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  gap: 26px;
  padding: 58px clamp(18px, 4vw, 54px) 64px;
  background: #14110f;
  color: #e9dfcf;
}

.database-main,
.database-sidebar {
  min-width: 0;
}

.database-main {
  display: grid;
  gap: 34px;
}

.database-block {
  min-width: 0;
}

.database-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
  padding-left: 16px;
  border-left: 3px solid #b88455;
}

.database-head h2 {
  margin-bottom: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 850;
  line-height: 1.1;
}

.database-head .ghost-button,
.database-head .text-link {
  border-color: rgba(184, 132, 85, 0.38);
  color: #d7a56f;
}

.rtp-table-shell {
  width: 100%;
  overflow: auto;
  border: 1px solid rgba(232, 221, 207, 0.08);
  background: #1d1916;
}

.rtp-table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
}

.rtp-table th,
.rtp-table td {
  padding: 15px 16px;
  border-bottom: 1px solid rgba(232, 221, 207, 0.06);
  text-align: left;
}

.rtp-table th {
  background: #2a2521;
  color: #8f8880;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rtp-table td {
  color: #aaa29a;
  font-size: 18px;
  font-weight: 700;
}

.rtp-table tbody tr:nth-child(even) td {
  background: #231f1c;
}

.rtp-table tbody tr:nth-child(odd) td {
  background: #1b1815;
}

.rtp-table td:first-child strong,
.ranking-table td:nth-child(2) {
  color: #f1e9dc;
  font-size: 20px;
}

.rtp-table a {
  color: #bf8650;
}

.status {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.status.high {
  background: rgba(73, 193, 113, 0.16);
  color: #4dda83;
}

.status.mid {
  background: rgba(184, 132, 85, 0.18);
  color: #d4a46c;
}

.status.low {
  background: rgba(184, 89, 89, 0.18);
  color: #ff7777;
}

.diff {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 900;
}

.diff.high {
  color: #59df8e;
}

.diff.mid,
.diff.low {
  color: #ff7777;
}

.data-note {
  margin: 10px 0 0;
  color: #8f8880;
  font-size: 14px;
}

.database-sidebar {
  display: grid;
  align-content: start;
  gap: 16px;
}

.side-data-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  background: #241f1d;
  border-left: 3px solid #b88455;
  color: #d8d0c6;
}

.side-data-card h3 {
  margin-bottom: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(232, 221, 207, 0.06);
  color: #f1e9dc;
  font-size: 20px;
}

.side-data-card a {
  color: #bf8650;
  font-weight: 850;
}

.rank-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rank-list li,
.gap-list p,
.quick-compare p {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(232, 221, 207, 0.05);
}

.rank-list span,
.gap-list span,
.quick-compare span {
  color: #c9c1b8;
  font-weight: 800;
}

.rank-list strong {
  color: #54de8a;
  white-space: nowrap;
}

.gap-list,
.quick-compare {
  display: grid;
  gap: 12px;
}

.gap-list small {
  color: #8f8880;
}

.gap-list strong {
  color: #ff7777;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  white-space: nowrap;
}

.quick-compare strong {
  color: #f1e9dc;
  white-space: nowrap;
}

.quick-compare em {
  display: inline-flex;
  margin-left: 6px;
  padding: 2px 7px;
  background: rgba(73, 193, 113, 0.16);
  color: #4dda83;
  font-size: 11px;
  font-style: normal;
  text-transform: uppercase;
}

.insight-card {
  align-self: start;
  padding: 24px;
  background: #18221d;
  color: var(--ink);
  border: 1px solid rgba(16, 21, 18, 0.1);
  box-shadow: 0 18px 42px rgba(36, 29, 18, 0.14);
}

.insight-card p {
  color: var(--muted);
}

.mini-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.mini-metric span {
  color: var(--muted);
  font-size: 13px;
}

.mini-metric strong {
  color: var(--soft);
}

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

.ghost-button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(21, 25, 21, 0.2);
  background: transparent;
  color: #25251e;
  padding: 0 16px;
  font-weight: 800;
  cursor: pointer;
}

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

.slot-card {
  min-width: 0;
  background: #f8f1e3;
  border: 1px solid rgba(21, 25, 21, 0.15);
  box-shadow: 0 12px 30px rgba(36, 29, 18, 0.1);
  overflow: hidden;
}

.slot-featured {
  position: relative;
  display: grid;
  min-height: 168px;
  overflow: hidden;
  background: #17211c;
  color: var(--ink);
}

.slot-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 28%, rgba(244, 234, 215, 0.25), transparent 16%),
    radial-gradient(circle at 82% 18%, rgba(200, 167, 86, 0.3), transparent 20%),
    linear-gradient(135deg, var(--slot-a, #253521), var(--slot-b, #101512));
}

.slot-featured::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(244, 234, 215, 0.18);
}

.slot-featured-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 22px;
  text-align: center;
}

.slot-symbols {
  display: flex;
  gap: 8px;
}

.slot-symbols span {
  display: grid;
  width: 42px;
  height: 54px;
  place-items: center;
  background: rgba(12, 18, 15, 0.78);
  border: 1px solid rgba(200, 167, 86, 0.35);
  color: var(--gold);
  font-size: 25px;
  font-weight: 900;
}

.slot-featured strong {
  max-width: 100%;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.05;
}

.slot-featured small {
  color: var(--soft);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.slot-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px 0;
}

.slot-card-top h3 {
  margin-bottom: 0;
}

.rtp-badge {
  display: grid;
  min-width: 68px;
  height: 58px;
  place-items: center;
  background: #17211c;
  border: 1px solid rgba(200, 167, 86, 0.45);
  color: var(--soft);
  font-weight: 900;
}

.slot-body {
  padding: 10px 18px 18px;
}

.slot-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 16px 0;
}

.slot-meta span {
  display: grid;
  gap: 3px;
  padding: 9px;
  background: rgba(21, 25, 21, 0.05);
  color: #5d584b;
  font-size: 12px;
  font-weight: 700;
}

.slot-meta strong {
  color: #171a15;
  font-size: 14px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag {
  display: inline-flex;
  border: 1px solid rgba(21, 25, 21, 0.13);
  color: #4d4a3e;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 750;
}

.comparison {
  padding-top: 54px;
  padding-bottom: 58px;
  background: #101512;
}

.comparison .text-link,
.comparison .ghost-button {
  border-color: var(--line);
  color: var(--soft);
}

.table-shell {
  overflow: auto;
  border: 1px solid var(--line);
  background: #151e19;
}

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

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

th {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

td {
  color: var(--soft);
}

.architecture {
  padding-top: 56px;
  padding-bottom: 56px;
  background: #efe6d5;
  color: #151915;
}

.page-map {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.page-map article {
  min-height: 188px;
  padding: 20px;
  background: #f8f1e3;
  border: 1px solid rgba(21, 25, 21, 0.14);
}

.page-map p {
  color: #8a6227;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.page-map span {
  color: #5d584b;
}

.guide-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding-top: 1px;
  padding-bottom: 1px;
  background: var(--line);
}

.guide-strip a {
  min-height: 86px;
  padding: 22px;
  background: #151e19;
  color: var(--soft);
  font-weight: 800;
}

.guide-strip a:hover {
  color: var(--gold);
}

.page-hero {
  display: grid;
  gap: 16px;
  padding: 58px clamp(18px, 4vw, 54px) 44px;
  background:
    radial-gradient(circle at 16% -35%, rgba(200, 167, 86, 0.22), transparent 34%),
    linear-gradient(135deg, #101512, #17211c 58%, #0e1614);
}

.page-hero h1 {
  max-width: 920px;
}

.page-hero .lede {
  max-width: 760px;
}

.slots-hero {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 58px clamp(18px, 4vw, 54px) 50px;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(90deg, transparent 0, rgba(200, 167, 86, 0.2) 50%, transparent 100%) 50% 100% / min(520px, 72vw) 1px no-repeat,
    radial-gradient(circle at 50% -10%, rgba(200, 167, 86, 0.22), transparent 28%),
    radial-gradient(circle at 50% 115%, rgba(114, 185, 140, 0.12), transparent 36%),
    linear-gradient(135deg, #101512, #17231c 56%, #0c130f);
  border-bottom: 1px solid var(--line);
}

.slots-hero::before,
.slots-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(200, 167, 86, 0.68);
  transform: translateX(-50%) rotate(45deg);
}

.slots-hero::before {
  top: 26px;
}

.slots-hero::after {
  bottom: 22px;
  background: rgba(200, 167, 86, 0.18);
}

.slots-hero .eyebrow,
.slots-hero h1,
.slots-hero .lede {
  position: relative;
  z-index: 1;
}

.slots-hero h1 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(38px, 4.8vw, 68px);
}

.slots-hero .lede {
  max-width: 620px;
}

.slots-catalog {
  padding: 48px clamp(18px, 4vw, 54px) 62px;
  background: #efe6d5;
  color: #151915;
}

.slots-catalog .section-head {
  max-width: 1180px;
  margin-inline: auto;
}

.slots-catalog-grid {
  max-width: 1180px;
  margin-inline: auto;
}

.slots-catalog-grid .slot-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
}

.slots-catalog-grid .slot-featured {
  min-height: 154px;
}

.slots-catalog-grid .slot-featured-inner {
  min-height: 154px;
  padding: 18px;
}

.slots-catalog-grid .slot-card-top,
.slots-catalog-grid .slot-body {
  background: #f8f1e3;
}

.slots-catalog-grid .slot-card-top {
  padding: 16px 16px 0;
}

.slots-catalog-grid .slot-body {
  display: grid;
  align-content: start;
  padding: 10px 16px 16px;
}

.slots-catalog-grid .slot-featured strong {
  font-size: 21px;
}

.slots-catalog-grid .rtp-badge {
  min-width: 60px;
  height: 50px;
  font-size: 14px;
}

.list-hero {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 54px clamp(18px, 4vw, 54px) 48px;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(90deg, transparent 0, rgba(200, 167, 86, 0.18) 50%, transparent 100%) 50% 100% / min(620px, 78vw) 1px no-repeat,
    radial-gradient(circle at 50% 8%, rgba(200, 167, 86, 0.2), transparent 30%),
    linear-gradient(135deg, #101512, #18231d 55%, #0c130f);
  border-bottom: 1px solid var(--line);
}

.list-hero::before {
  content: "";
  width: min(460px, 70vw);
  height: 78px;
  position: absolute;
  top: 38px;
  left: 50%;
  border: 1px solid rgba(200, 167, 86, 0.18);
  border-inline-color: transparent;
  transform: translateX(-50%);
}

.list-hero h1 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(38px, 4.4vw, 64px);
}

.list-hero .lede {
  max-width: 700px;
}

.list-directory {
  padding: 48px clamp(18px, 4vw, 54px) 64px;
  background: #efe6d5;
  color: #151915;
}

.list-intro,
.list-feature,
.list-section {
  max-width: 1180px;
  margin-inline: auto;
}

.list-intro {
  margin-bottom: 20px;
}

.list-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 42px;
}

.list-feature a {
  display: grid;
  gap: 8px;
  min-height: 122px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(200, 167, 86, 0.13), transparent 56%),
    #151e19;
  border: 1px solid rgba(21, 25, 21, 0.2);
  color: var(--ink);
}

.list-feature span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.list-feature strong {
  display: block;
  max-width: 520px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.list-section {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

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

.list-card {
  display: grid;
  align-content: start;
  min-width: 0;
  min-height: 235px;
  padding: 20px;
  background: #f8f1e3;
  border: 1px solid rgba(21, 25, 21, 0.15);
  box-shadow: 0 12px 30px rgba(36, 29, 18, 0.08);
}

.list-card.priority {
  background:
    linear-gradient(135deg, rgba(200, 167, 86, 0.16), transparent 62%),
    #17211c;
  color: var(--ink);
}

.list-card p {
  color: #5d584b;
  overflow-wrap: anywhere;
}

.list-card.priority p {
  color: var(--muted);
}

.list-card .text-link {
  align-self: end;
  justify-self: start;
  margin-top: 18px;
}

.list-card.priority .text-link {
  border-color: var(--line);
  color: var(--soft);
}

.content-section {
  padding: 54px clamp(18px, 4vw, 54px);
  background: #efe6d5;
  color: #151915;
}

.content-section.dark {
  background: #101512;
  color: var(--ink);
}

.content-section.dark .text-link {
  color: var(--soft);
  border-color: var(--line);
}

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

.hub-card {
  display: grid;
  gap: 14px;
  min-height: 260px;
  padding: 22px;
  background: #f8f1e3;
  border: 1px solid rgba(21, 25, 21, 0.15);
  box-shadow: 0 12px 30px rgba(36, 29, 18, 0.1);
}

.hub-card.dark {
  background: #151e19;
  border-color: var(--line);
  color: var(--ink);
}

.hub-card p {
  color: #5d584b;
}

.hub-card.dark p {
  color: var(--muted);
}

.hub-card .text-link {
  align-self: end;
  justify-self: start;
}

.page-table {
  width: 100%;
  min-width: 760px;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 22px;
  background: rgba(21, 25, 21, 0.18);
}

.metric-strip article {
  padding: 20px;
  background: #f8f1e3;
}

.metric-strip strong {
  display: block;
  color: #8a6227;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 28px;
}

.toc {
  align-self: start;
  display: grid;
  gap: 10px;
  padding: 18px;
  background: #151e19;
  color: var(--soft);
  border: 1px solid var(--line);
}

.toc a {
  color: var(--muted);
  font-weight: 750;
}

.toc a:hover {
  color: var(--gold);
}

.article-copy {
  max-width: 820px;
  color: #2f332d;
  font-size: 18px;
}

.article-copy h2 {
  margin-top: 34px;
}

.article-copy p,
.article-copy li {
  color: #4d4a3e;
}

.article-copy li + li {
  margin-top: 8px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 4vw, 54px);
  background: #0b100d;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

.rtpdata-home {
  --rtp-bg: #0f1713;
  --rtp-panel: #15211b;
  --rtp-panel-dark: #101814;
  --rtp-line: rgba(244, 234, 215, 0.13);
  --rtp-tan: #d4b566;
  --rtp-text: #f5f1ec;
  --rtp-muted: #9c958e;
  --rtp-green: #43e486;
  --rtp-red: #ff6d72;
  background: var(--rtp-bg);
  color: var(--rtp-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.rtpdata-home .site-header {
  position: sticky;
  min-height: 58px;
  padding: 0 16px;
  background: #11100f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: none;
}

.rtpdata-brand {
  gap: 0;
  color: var(--rtp-text);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.rtpdata-brand span {
  color: var(--rtp-tan);
}

.rtpdata-home .nav {
  position: static;
  left: auto;
  transform: none;
  gap: 34px;
  color: #928d89;
  font-size: 16px;
  font-weight: 800;
}

.rtpdata-home .nav a:hover {
  color: var(--rtp-tan);
}

.rtpdata-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 430px);
  gap: 46px;
  align-items: center;
  padding: 40px min(5.7vw, 116px) 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 18% 20%, rgba(201, 151, 102, 0.08), transparent 34%),
    linear-gradient(180deg, #1c1816 0%, #171412 100%);
}

.rtpdata-hero-copy h1 {
  max-width: 1000px;
  margin: 0 0 22px;
  color: var(--rtp-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(52px, 4.45vw, 86px);
  font-weight: 950;
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.rtpdata-hero-copy h1 span {
  display: block;
  color: var(--rtp-tan);
}

.rtpdata-hero-copy > p {
  max-width: 720px;
  margin: 0 0 28px;
  color: #aaa29b;
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 700;
  line-height: 1.45;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  max-width: 820px;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-metrics div,
.hero-metrics dt,
.hero-metrics dd {
  margin: 0;
}

.hero-metrics dt {
  color: var(--rtp-text);
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero-metrics dd {
  margin-top: 7px;
  color: #8f8882;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.28;
  text-transform: uppercase;
}

.bonus-card {
  position: relative;
  padding: 28px 16px 16px;
  background: var(--rtp-panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--rtp-tan);
  box-shadow: none;
}

.bonus-brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.bonus-logo {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(201, 151, 102, 0.28);
  color: var(--rtp-tan);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.bonus-brand-row strong {
  display: block;
  margin-bottom: 2px;
  color: var(--rtp-text);
  font-size: 17px;
  font-weight: 950;
}

.bonus-brand-row p,
.bonus-card p {
  margin: 0;
}

.bonus-brand-row p {
  color: var(--rtp-tan);
  font-size: 13px;
  font-weight: 850;
}

.bonus-amount {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: var(--rtp-tan);
  text-transform: uppercase;
}

.bonus-amount strong {
  color: var(--rtp-text);
  font-size: 46px;
  font-weight: 950;
  line-height: 1;
}

.bonus-amount span {
  font-size: 17px;
  font-weight: 950;
}

.bonus-note {
  color: #8f8882;
  font-size: 15px;
  font-weight: 750;
}

.bonus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 12px;
}

.bonus-tags span {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #171412;
  color: #d7d0ca;
  font-size: 12px;
  font-weight: 900;
}

.bonus-code {
  display: grid;
  grid-template-columns: 1fr 76px;
  margin-bottom: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.11);
  background: #171412;
}

.bonus-code span {
  display: grid;
  gap: 3px;
  padding: 11px 12px;
}

.bonus-code small {
  color: #8f8882;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bonus-code strong {
  color: var(--rtp-text);
  font-size: 21px;
  font-weight: 950;
}

.bonus-code button,
.bonus-cta {
  border: 0;
  background: var(--rtp-tan);
  color: #11100f;
  font-weight: 950;
  text-transform: uppercase;
}

.bonus-code button {
  border-left: 1px dashed rgba(255, 255, 255, 0.11);
  background: #2a2521;
  color: var(--rtp-tan);
  cursor: pointer;
}

.bonus-cta {
  display: grid;
  min-height: 62px;
  place-items: center;
  margin-bottom: 9px;
  font-size: 16px;
}

.bonus-card > small {
  color: #8c8580;
  font-size: 11px;
  font-weight: 800;
}

.rtpdata-home .data-dashboard {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
  gap: 48px;
  padding: 32px min(5.7vw, 116px) 54px;
  background:
    linear-gradient(rgba(244, 234, 215, 0.018) 1px, transparent 1px) 50% 0 / 145px 145px,
    linear-gradient(180deg, #0f1713 0%, #101512 100%);
  color: var(--rtp-text);
}

.rtpdata-home .database-head {
  align-items: center;
  min-height: 44px;
  margin-bottom: 16px;
  padding-left: 18px;
  border-left: 3px solid var(--rtp-tan);
}

.rtpdata-home .database-head h2 {
  color: var(--rtp-text);
  font-size: clamp(28px, 2.1vw, 36px);
  font-weight: 950;
  letter-spacing: -0.04em;
}

.verified-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.rtpdata-home .slot-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 0;
  background: #121b17;
  border: 1px solid rgba(244, 234, 215, 0.09);
  box-shadow: none;
}

.rtpdata-home .slot-featured {
  position: relative;
  display: block;
  height: 238px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.18)),
    var(--slot-scene);
  background-size: cover;
}

.rtpdata-home .slot-featured::before,
.rtpdata-home .slot-featured::after {
  content: none;
}

.rtpdata-home .slot-featured .status {
  position: absolute;
  top: 12px;
  right: 10px;
  margin: 0;
  border: 1px solid currentColor;
  background: rgba(36, 31, 29, 0.72);
  font-size: 18px;
  line-height: 1;
}

.rtpdata-home .slot-card-data {
  padding: 10px 12px 12px;
}

.rtpdata-home .slot-card h3 {
  min-height: 40px;
  margin: 0 0 4px;
  color: #e4dfda;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.slot-rtp-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.slot-rtp-row strong {
  color: var(--rtp-text);
  font-size: 21px;
  font-weight: 950;
  line-height: 1;
}

.rtpdata-home .slot-card a {
  display: grid;
  min-height: 37px;
  place-items: center;
  background: var(--rtp-tan);
  color: #11100f;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.rtpdata-home .status.high,
.rtpdata-home .diff.high,
.rtpdata-home .recent-list strong {
  color: var(--rtp-green);
}

.rtpdata-home .status.mid {
  color: var(--rtp-tan);
}

.rtpdata-home .status.low,
.rtpdata-home .diff.low,
.rtpdata-home .diff.mid,
.rtpdata-home .gap-list strong {
  color: var(--rtp-red);
}

.rtpdata-home .diff {
  font-size: 14px;
  letter-spacing: 0;
}

.rtpdata-home .data-note {
  margin: 12px 0 0;
  color: #8f8882;
  font-size: 18px;
  font-weight: 750;
}

.rtpdata-home .data-note a,
.rtpdata-home .side-data-card a {
  color: var(--rtp-tan);
  font-weight: 900;
}

.rtpdata-home .database-sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
}

.rtpdata-home .side-data-card {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(244, 234, 215, 0.018), transparent 42%),
    var(--rtp-panel);
  border: 1px solid rgba(244, 234, 215, 0.09);
  border-left: 3px solid var(--rtp-tan);
  box-shadow: none;
}

.rtpdata-home .side-data-card h3 {
  margin-bottom: 14px;
  color: var(--rtp-text);
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.recent-list p,
.rtpdata-home .gap-list p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #dfd9d3;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.2;
}

.recent-list small,
.rtpdata-home .gap-list small {
  color: #8f8882;
  font-size: 16px;
  font-weight: 800;
}

.recent-list strong,
.rtpdata-home .gap-list strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 19px;
  white-space: nowrap;
}

.rtpdata-home .rtp-table-shell {
  border-color: rgba(244, 234, 215, 0.09);
  background: var(--rtp-panel);
}

.rtpdata-home .rtp-table th {
  background: #1a241e;
}

.rtpdata-home .rtp-table tbody tr:nth-child(odd) td {
  background: #111915;
}

.rtpdata-home .rtp-table tbody tr:nth-child(even) td {
  background: #14201a;
}

.rtpdata-home .site-footer {
  background: #11100f;
}

@media (max-width: 1120px) {
  .hero,
  .checker-hero {
    grid-template-columns: 1fr;
  }

  .data-dashboard {
    grid-template-columns: 1fr;
  }

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

  .data-console {
    grid-template-columns: 1fr;
  }

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

  .checker-panel,
  .slot-grid,
  .page-map,
  .hub-grid,
  .list-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-strip,
  .guide-layout,
  .list-feature {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    padding-top: 30px;
    max-width: 100vw;
  }

  .home-hero {
    padding: 34px 18px 38px;
    justify-items: center;
  }

  .home-hero-copy {
    width: 100%;
    max-width: calc(100vw - 36px);
    justify-items: center;
    text-align: center;
  }

  .home-hero-copy h1 {
    max-width: 300px;
    font-size: 30px;
    line-height: 1.02;
    overflow-wrap: break-word;
  }

  .home-hero-copy .lede {
    max-width: 280px;
    font-size: 15px;
  }

  .data-console,
  .hero-search {
    justify-self: center;
    width: min(280px, calc(100vw - 42px));
    max-width: calc(100vw - 36px);
    margin-left: auto;
    margin-right: auto;
  }

  .console-head {
    min-height: auto;
    padding: 18px;
  }

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

  .console-grid span {
    min-height: 68px;
    padding: 12px;
  }

  .console-grid strong {
    font-size: 21px;
  }

  .hero-search {
    margin-top: 8px;
    transform: none;
  }

  .hero-search .checker-panel {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  h1 {
    max-width: min(320px, calc(100vw - 40px));
    font-size: 34px;
    line-height: 1.03;
  }

  .hero-copy,
  .checker-hero-copy,
  .checker-panel,
  .hero-board {
    width: 100%;
    max-width: calc(100vw - 40px);
  }

  .checker-hero {
    padding-top: 30px;
  }

  .checker-search-section {
    padding-top: 18px;
  }

  .lede {
    max-width: min(320px, calc(100vw - 40px));
    font-size: 16px;
    overflow-wrap: break-word;
  }

  .checker-panel,
  .snapshot,
  .hero-board-grid,
  .page-map,
  .hub-grid,
  .database-sidebar,
  .metric-strip,
  .guide-strip {
    grid-template-columns: 1fr;
  }

  .data-dashboard {
    gap: 26px;
    padding: 42px 14px 48px;
  }

  .database-head {
    align-items: flex-start;
    flex-direction: column;
    padding-left: 12px;
  }

  .database-head h2 {
    font-size: 26px;
  }

  .rtp-table {
    min-width: 760px;
  }

  .rtp-table th,
  .rtp-table td {
    padding: 12px 14px;
  }

  .rtp-table td {
    font-size: 15px;
  }

  .rtp-table td:first-child strong,
  .ranking-table td:nth-child(2) {
    font-size: 16px;
  }

  .side-data-card {
    padding: 18px;
  }

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

  .slots-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 320px);
    max-width: calc(100vw - 20px);
    margin-inline: auto;
    gap: 6px;
  }

  .slots-catalog-grid .slot-card {
    max-width: 100%;
    overflow: hidden;
  }

  .slots-hero {
    padding: 42px 18px 38px;
  }

  .slots-hero h1,
  .slots-hero .lede {
    max-width: min(300px, calc(100vw - 48px));
  }

  .slots-hero h1 {
    font-size: 31px;
    line-height: 1.02;
  }

  .slots-catalog {
    padding: 32px 10px 46px;
  }

  .slots-catalog .section-head {
    padding-inline: 4px;
  }

  .slots-catalog-grid .slot-featured,
  .slots-catalog-grid .slot-featured-inner {
    min-height: 106px;
  }

  .slots-catalog-grid .slot-featured::after {
    inset: 8px;
  }

  .slots-catalog-grid .slot-featured-inner {
    gap: 7px;
    padding: 12px 8px;
  }

  .slots-catalog-grid .slot-symbols {
    gap: 4px;
  }

  .slots-catalog-grid .slot-symbols span {
    width: 24px;
    height: 32px;
    font-size: 13px;
  }

  .slots-catalog-grid .slot-featured strong {
    font-size: 14px;
    overflow-wrap: anywhere;
  }

  .slots-catalog-grid .slot-featured small {
    font-size: 10px;
  }

  .slots-catalog-grid .slot-card-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 11px 8px 0;
  }

  .slots-catalog-grid .slot-card-top h3 {
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .slots-catalog-grid .rtp-badge {
    min-width: 0;
    width: 100%;
    height: 34px;
  }

  .slots-catalog-grid .slot-body {
    padding: 8px 8px 12px;
  }

  .slots-catalog-grid .slot-meta {
    grid-template-columns: 1fr;
    gap: 6px;
    margin: 10px 0;
  }

  .slots-catalog-grid .slot-meta span {
    padding: 7px;
    font-size: 10px;
  }

  .slots-catalog-grid .slot-meta strong {
    font-size: 12px;
  }

  .slots-catalog-grid .tag {
    padding: 3px 6px;
    font-size: 10px;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .list-hero {
    padding: 42px 18px 38px;
  }

  .list-hero h1,
  .list-hero .lede {
    max-width: 300px;
  }

  .list-hero h1 {
    font-size: 32px;
    line-height: 1.02;
  }

  .list-directory {
    padding: 32px 14px 48px;
    overflow: hidden;
  }

  .list-intro,
  .list-feature,
  .list-section,
  .list-card-grid {
    width: min(100%, 320px);
    max-width: 320px;
    margin-left: 0;
    margin-right: auto;
  }

  .list-intro h2,
  .list-section h2 {
    max-width: 100%;
    font-size: 30px;
    overflow-wrap: anywhere;
  }

  .list-feature a {
    min-width: 0;
    padding: 18px;
  }

  .list-feature strong {
    max-width: 100%;
    font-size: 20px;
  }

  .list-card-grid {
    grid-template-columns: 1fr;
  }

  .list-card {
    min-height: auto;
    padding: 18px;
    overflow: hidden;
  }

  .list-card h3 {
    overflow-wrap: anywhere;
  }

  .section-head,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 1180px) {
  .rtpdata-home .rtpdata-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .rtpdata-home .bonus-card {
    max-width: 520px;
  }

  .rtpdata-home .verified-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .rtpdata-home .site-header {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-height: auto;
    padding: 14px 16px 12px;
  }

  .rtpdata-home .rtpdata-brand {
    font-size: 23px;
  }

  .rtpdata-home .nav {
    position: static;
    left: auto;
    width: 100%;
    transform: none;
    gap: 22px;
    overflow-x: auto;
    padding-bottom: 4px;
    font-size: 14px;
  }

  .rtpdata-home .rtpdata-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 18px 26px;
  }

  .rtpdata-home .rtpdata-hero-copy h1 {
    max-width: 350px;
    margin-bottom: 18px;
    font-size: 44px;
    line-height: 0.98;
    letter-spacing: -0.055em;
  }

  .rtpdata-home .rtpdata-hero-copy > p {
    max-width: 340px;
    font-size: 17px;
    line-height: 1.42;
  }

  .rtpdata-home .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 340px;
  }

  .rtpdata-home .bonus-card {
    width: 100%;
    max-width: 354px;
    padding: 20px 14px 14px;
  }

  .rtpdata-home .bonus-code {
    grid-template-columns: 1fr 72px;
  }

  .rtpdata-home .data-dashboard {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 28px 18px 46px;
  }

  .rtpdata-home .verified-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .rtpdata-home .slot-featured {
    height: 150px;
  }

  .rtpdata-home .slot-card-data {
    padding: 9px;
  }

  .rtpdata-home .slot-card h3 {
    min-height: 38px;
    font-size: 14px;
  }

  .rtpdata-home .slot-rtp-row {
    gap: 6px;
  }

  .rtpdata-home .slot-rtp-row strong {
    font-size: 18px;
  }

  .rtpdata-home .diff {
    font-size: 12px;
  }

  .rtpdata-home .slot-card a {
    min-height: 34px;
    font-size: 11px;
  }

  .rtpdata-home .database-sidebar {
    grid-template-columns: 1fr;
  }

  .rtpdata-home .site-footer {
    flex-direction: column;
  }
}

.rtpdata-home .rtpdata-checker-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 24px;
  padding: 64px min(5.7vw, 116px) 70px;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(rgba(244, 234, 215, 0.034) 1px, transparent 1px) 50% 0 / 145px 145px,
    linear-gradient(90deg, transparent 0, rgba(201, 151, 102, 0.16) 50%, transparent 100%) 50% 120px / min(900px, 78vw) 1px no-repeat,
    radial-gradient(circle at 50% 22%, rgba(201, 151, 102, 0.18), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(74, 115, 84, 0.18), transparent 36%),
    linear-gradient(135deg, #101512 0%, #17221c 54%, #0d1511 100%);
}

.rtpdata-home .rtpdata-checker-hero::before {
  content: "";
  position: absolute;
  top: 86px;
  left: 50%;
  width: min(720px, 72vw);
  height: min(520px, 52vw);
  transform: translateX(-50%);
  border: 1px solid rgba(201, 151, 102, 0.08);
  background: radial-gradient(circle, rgba(201, 151, 102, 0.11), transparent 62%);
  pointer-events: none;
}

.rtpdata-home .rtpdata-checker-hero::after {
  content: "";
  position: absolute;
  inset: auto clamp(18px, 10vw, 180px) 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 234, 215, 0.16), transparent);
  pointer-events: none;
}

.rtpdata-home .rtpdata-checker-hero .rtpdata-hero-copy,
.rtpdata-home .rtpdata-search {
  position: relative;
  z-index: 1;
}

.rtpdata-home .rtpdata-checker-hero .rtpdata-hero-copy {
  display: grid;
  justify-items: center;
  width: min(100%, 1120px);
  max-width: 1120px;
}

.rtpdata-home .rtpdata-checker-hero .eyebrow {
  margin-bottom: 12px;
  color: var(--rtp-tan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.rtpdata-home .rtpdata-checker-hero .rtpdata-hero-copy h1 {
  max-width: 1040px;
  margin: 0;
  color: #f4ead7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 6.2vw, 112px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0;
}

.rtpdata-home .rtpdata-search {
  width: min(100%, 1120px);
  margin-top: 18px;
}

.rtpdata-home .rtpdata-search .checker-panel {
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) minmax(260px, 0.65fr);
  gap: 14px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(201, 151, 102, 0.11), transparent 62%),
    #1a241e;
  border: 1px solid rgba(244, 234, 215, 0.18);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

.rtpdata-home .rtpdata-search label {
  text-align: left;
}

.rtpdata-home .rtpdata-search label span {
  color: #b7ab96;
  font-size: 13px;
  font-weight: 850;
}

.rtpdata-home .rtpdata-search input[type="search"] {
  min-height: 64px;
  font-size: 19px;
}

.rtpdata-home .rtpdata-search input[type="range"] {
  margin-top: 10px;
}

.rtpdata-home .rtpdata-search output {
  justify-self: center;
  color: #d8c299;
  font-size: 16px;
  font-weight: 900;
}

@media (max-width: 720px) {
  .rtpdata-home .rtpdata-checker-hero {
    padding: 42px 18px 46px;
  }

  .rtpdata-home .rtpdata-checker-hero .rtpdata-hero-copy h1 {
    max-width: 300px;
    font-size: 34px;
    line-height: 1.02;
  }

  .rtpdata-home .rtpdata-checker-hero .eyebrow {
    max-width: 300px;
    font-size: 11px;
    line-height: 1.35;
  }

  .rtpdata-home .rtpdata-search {
    width: min(300px, calc(100vw - 48px));
    margin-top: 8px;
  }

  .rtpdata-home .rtpdata-search .checker-panel {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 12px;
  }

  .rtpdata-home .rtpdata-search input[type="search"] {
    min-height: 52px;
    font-size: 16px;
  }

  .rtpdata-home .database-main,
  .rtpdata-home .database-block,
  .rtpdata-home .verified-card-grid {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .rtpdata-home .data-dashboard {
    overflow: hidden;
  }
}

@media (max-width: 720px) {
  .rtpdata-home .rtpdata-search {
    width: min(270px, calc(100vw - 64px));
  }

  .rtpdata-home .slot-card,
  .rtpdata-home .slot-card * {
    min-width: 0;
    max-width: 100%;
  }

  .rtpdata-home .slot-featured {
    height: 132px;
  }

  .rtpdata-home .slot-card-data {
    padding: 8px;
  }

  .rtpdata-home .slot-card h3 {
    min-height: 34px;
    font-size: 13px;
    overflow-wrap: anywhere;
  }

  .rtpdata-home .slot-rtp-row strong {
    font-size: 16px;
  }

  .rtpdata-home .diff {
    font-size: 10px;
  }

  .rtpdata-home .slot-card a {
    min-height: 32px;
    font-size: 9px;
    white-space: nowrap;
  }
}

@media (max-width: 720px) {
  html,
  body {
    overflow-x: hidden;
  }

  .rtpdata-home .rtpdata-checker-hero .rtpdata-hero-copy h1 {
    max-width: 260px;
    font-size: 31px;
  }

  .rtpdata-home .data-dashboard {
    justify-items: center;
    padding-right: 0;
    padding-left: 0;
  }

  .rtpdata-home .database-main,
  .rtpdata-home .database-sidebar {
    width: min(280px, calc(100vw - 64px));
    max-width: min(280px, calc(100vw - 64px));
    margin-inline: auto;
  }

  .rtpdata-home .database-head h2 {
    font-size: 20px;
    letter-spacing: -0.02em;
  }

  .rtpdata-home .verified-card-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }
}

/* WordPress archive pages use their own compact card system.
   This keeps CPT archives from inheriting homepage slot-card sizing. */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.archive-card {
  min-width: 0;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(200, 167, 86, 0.08), transparent 52%),
    #142019;
  border: 1px solid rgba(244, 234, 215, 0.14);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24);
}

.archive-card-media {
  display: grid;
  min-height: 138px;
  place-items: center;
  padding: 18px;
  background:
    radial-gradient(circle at 35% 30%, rgba(244, 234, 215, 0.12), transparent 28%),
    radial-gradient(circle at 75% 55%, rgba(200, 167, 86, 0.12), transparent 32%),
    #0f1713;
  border-bottom: 1px solid rgba(244, 234, 215, 0.12);
  color: #f4ead7;
  text-align: center;
}

.archive-card-media img {
  display: block;
  width: 100%;
  height: 138px;
  object-fit: cover;
}

.archive-card-media span {
  max-width: 100%;
  color: #f4ead7;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.14;
  overflow-wrap: anywhere;
}

.archive-card-body {
  display: grid;
  gap: 14px;
  padding: 18px;
  color: #f4ead7;
}

.archive-card-body h2 {
  margin: 0 0 8px;
  color: #f4ead7;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.16;
}

.archive-card-body p {
  margin: 0;
  color: #b7ab96;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.archive-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  min-height: 26px;
}

.archive-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  background: rgba(114, 185, 140, 0.12);
  border: 1px solid rgba(114, 185, 140, 0.28);
  color: #72b98c;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.archive-card-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 167, 86, 0.35);
  color: #d8c299;
  font-size: 13px;
  font-weight: 900;
}

.archive-card-link:hover {
  background: rgba(200, 167, 86, 0.11);
  color: #f4ead7;
}

.checker-page-band {
  padding-top: 34px;
}

.standalone-checker {
  display: grid;
  gap: 30px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.standalone-checker .checker-panel-large {
  grid-template-columns: minmax(280px, 1.4fr) minmax(220px, 0.7fr);
  width: 100%;
  max-width: 100%;
}

.standalone-checker .checker-results-head {
  margin-bottom: -12px;
}

.standalone-checker .verified-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.standalone-checker .slot-card {
  min-width: 0;
  overflow: hidden;
  background: #17211c;
  border: 1px solid rgba(244, 234, 215, 0.16);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24);
}

.standalone-checker .slot-featured {
  height: 154px;
  background:
    var(--slot-scene),
    radial-gradient(circle at 35% 30%, rgba(244, 234, 215, 0.12), transparent 28%),
    #0f1713;
  border: 12px solid #17211c;
  border-bottom: 0;
}

.standalone-checker .slot-featured::before,
.standalone-checker .slot-featured::after {
  content: none;
}

.standalone-checker .slot-featured .status {
  position: absolute;
  top: 10px;
  right: 10px;
  margin: 0;
}

.standalone-checker .slot-card-data {
  display: grid;
  gap: 8px;
  padding: 14px;
  background: #1f2a24;
  color: #f4ead7;
}

.standalone-checker .slot-card h3 {
  margin: 0;
  color: #f4ead7;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.18;
}

.standalone-checker .slot-rtp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.standalone-checker .slot-rtp-row strong {
  color: #f4ead7;
  font-size: 20px;
  line-height: 1;
}

.standalone-checker .slot-card a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  background: #c8a756;
  color: #101512;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

@media (max-width: 1040px) {
  .archive-grid,
  .standalone-checker .verified-card-grid,
  .resource-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .page-hero {
    min-height: 250px;
    padding: 42px 20px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .content-band,
  .article-shell {
    padding: 34px 18px;
  }

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

  .resource-grid,
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .resource-card,
  .trust-grid article {
    min-height: 0;
  }

  .archive-card-media {
    min-height: 118px;
  }

  .archive-card-media img {
    height: 118px;
  }

  .standalone-checker .checker-panel-large,
  .standalone-checker .verified-card-grid {
    grid-template-columns: 1fr;
  }
}

.site-header {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  min-height: 68px;
  padding-top: 0;
  padding-bottom: 0;
}

.site-header .brand {
  grid-column: 1;
  justify-self: start;
}

.site-header .nav,
.rtpdata-home .site-header .nav {
  position: absolute !important;
  left: 50% !important;
  right: auto !important;
  top: 0;
  grid-column: 2;
  justify-self: center;
  height: 100%;
  width: max-content;
  white-space: nowrap;
  transform: translateX(-50%) !important;
}

.site-header .nav .menu-item {
  min-height: 68px;
  align-items: center;
}

.site-header .nav a {
  display: inline-flex;
  min-height: 68px;
  align-items: center;
}

.slot-single-hero {
  position: relative;
  display: grid;
  min-height: 340px;
  place-items: center;
  padding: 64px clamp(18px, 5vw, 86px);
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(rgba(244, 234, 215, 0.025) 1px, transparent 1px) 50% 0 / 145px 145px,
    radial-gradient(circle at 50% 22%, rgba(200, 167, 86, 0.18), transparent 30%),
    linear-gradient(135deg, #101512 0%, #17221c 58%, #0d1511 100%);
  border-bottom: 1px solid rgba(244, 234, 215, 0.11);
}

.slot-single-hero::before {
  content: "";
  position: absolute;
  width: min(760px, 72vw);
  height: min(300px, 40vw);
  border: 1px solid rgba(244, 234, 215, 0.08);
  background: radial-gradient(circle, rgba(200, 167, 86, 0.12), transparent 68%);
}

.slot-single-hero > div {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
}

.slot-single-hero h1 {
  max-width: 980px;
  margin-inline: auto;
  color: #f4ead7;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.96;
}

.slot-single-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto;
  color: #b7ab96;
  font-size: clamp(17px, 1.3vw, 22px);
  font-weight: 750;
}

.slot-single-body {
  background:
    radial-gradient(circle at 50% 8%, rgba(200, 167, 86, 0.08), transparent 24%),
    linear-gradient(180deg, #0f1713 0%, #101512 100%);
  color: #f4ead7;
}

.slot-single-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 24px;
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding: 46px 0 24px;
}

.slot-casino-panel,
.slot-facts-panel {
  min-width: 0;
  background: #142019;
  border: 1px solid rgba(244, 234, 215, 0.14);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.22);
}

.slot-casino-panel {
  padding: 22px;
}

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

.slot-casino-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto minmax(120px, auto);
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: rgba(244, 234, 215, 0.035);
  border: 1px solid rgba(244, 234, 215, 0.1);
}

.slot-casino-row h3 {
  margin: 0 0 4px;
  color: #f4ead7;
  font-size: 18px;
}

.slot-casino-row p {
  margin: 0;
  color: #b7ab96;
  font-size: 14px;
  font-weight: 650;
}

.casino-rank {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: rgba(200, 167, 86, 0.12);
  border: 1px solid rgba(200, 167, 86, 0.35);
  color: #d8c299;
  font-weight: 950;
}

.slot-casino-row strong {
  color: #72b98c;
  font-size: 18px;
  white-space: nowrap;
}

.slot-casino-row a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  background: #c8a756;
  color: #101512;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.slot-casino-row a[aria-disabled="true"] {
  opacity: 0.55;
  pointer-events: none;
}

.slot-facts-panel {
  align-self: start;
  padding: 22px;
}

.slot-facts-panel h2 {
  margin-bottom: 16px;
  color: #f4ead7;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 24px;
  font-weight: 900;
}

.slot-facts-panel dl {
  display: grid;
  gap: 1px;
  margin: 0;
  background: rgba(244, 234, 215, 0.1);
}

.slot-facts-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  background: #101512;
}

.slot-facts-panel dt {
  color: #b7ab96;
  font-size: 13px;
  font-weight: 800;
}

.slot-facts-panel dd {
  margin: 0;
  color: #f4ead7;
  font-weight: 900;
  text-align: right;
}

.slot-content-shell {
  padding-top: 22px;
  background: transparent;
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .site-header .brand,
  .site-header .nav {
    justify-self: center;
  }

  .site-header .nav,
  .rtpdata-home .site-header .nav {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto;
    height: auto;
    width: auto;
    white-space: normal;
    transform: none !important;
  }

  .site-header .nav .menu-item,
  .site-header .nav a {
    min-height: 28px;
  }

  .slot-single-grid {
    grid-template-columns: 1fr;
  }

  .slot-casino-row {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .slot-casino-row strong,
  .slot-casino-row a {
    grid-column: 2;
    justify-self: start;
  }
}
