:root {
  --ink: #101514;
  --forest: #132b25;
  --moss: #1f4d3f;
  --copper: #c9854d;
  --amber: #e0b36a;
  --sage: #8ab79f;
  --paper: #f6f1e8;
  --muted: #d8d0c2;
  --line: rgba(246, 241, 232, 0.18);
  --panel: rgba(246, 241, 232, 0.08);
  --panel-strong: rgba(246, 241, 232, 0.13);
  --danger: #d76c61;
  --ok: #67b99a;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(27, 51, 45, 0.92) 0%, rgba(16, 21, 20, 0.98) 44%),
    repeating-linear-gradient(90deg, rgba(224, 179, 106, 0.025) 0 1px, transparent 1px 88px);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(12, 14, 13, 0.92);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(224, 179, 106, 0.62);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(224, 179, 106, 0.18), rgba(19, 43, 37, 0.9));
  color: var(--amber);
  font-size: 14px;
  font-weight: 900;
}

.brand-name {
  font-size: 19px;
  line-height: 1.1;
  color: var(--paper);
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav-group {
  position: relative;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 800;
  cursor: default;
}

.nav-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 250px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 14, 13, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 140ms ease, transform 140ms ease;
}

.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-menu a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
}

.nav-menu a:hover {
  background: rgba(246, 241, 232, 0.07);
  color: var(--paper);
}

.nav a:hover {
  color: var(--paper);
}

.language {
  justify-self: end;
  padding: 10px 12px;
  border: 1px solid var(--line);
  color: var(--amber);
  text-decoration: none;
}

.top-language {
  min-width: 44px;
  text-align: center;
}

.main {
  padding: 0 clamp(16px, 4vw, 56px) 64px;
}

.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 300px;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 74px) 0 clamp(30px, 5vw, 58px);
  background:
    radial-gradient(circle at 50% 0%, rgba(224, 179, 106, 0.12), transparent 25%),
    linear-gradient(90deg, transparent 0 16%, rgba(138, 183, 159, 0.06) 50%, transparent 84%);
}

.hero-stage::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  bottom: 20px;
  width: min(74vw, 780px);
  opacity: 0.26;
  background-image:
    linear-gradient(90deg, rgba(224, 179, 106, 0.16) 1px, transparent 1px),
    linear-gradient(rgba(246, 241, 232, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, transparent 47%, rgba(138, 183, 159, 0.22) 48%, transparent 49%);
  background-size: 76px 76px, 76px 76px, 152px 152px;
  transform: translateX(-50%);
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 72%);
  pointer-events: none;
}

.hero-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(500px, 68%);
  height: 1px;
  background: linear-gradient(90deg, var(--amber), rgba(138, 183, 159, 0.44), transparent);
  transform: translateX(-50%);
}

.hero-copy-block {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  max-width: 900px;
  text-align: center;
}

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

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

h1 {
  max-width: 17ch;
  margin-bottom: 16px;
  font-size: clamp(35px, 5.4vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 62ch;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
}

.button.primary {
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 14px 28px rgba(224, 179, 106, 0.18);
}

.button.secondary {
  border-color: rgba(224, 179, 106, 0.45);
  color: var(--paper);
  background: rgba(16, 21, 20, 0.42);
}

input,
select {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(246, 241, 232, 0.24);
  border-radius: 0;
  background: rgba(16, 21, 20, 0.76);
  color: var(--paper);
  padding: 10px 12px;
  font: inherit;
}

input::placeholder {
  color: rgba(216, 208, 194, 0.72);
}

.casino-name {
  display: grid;
  gap: 3px;
  font-weight: 850;
}

.domain {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.badge {
  display: inline-flex;
  width: max-content;
  align-items: center;
  min-height: 26px;
  padding: 4px 8px;
  border: 1px solid rgba(224, 179, 106, 0.45);
  color: var(--amber);
  font-size: 12px;
  font-weight: 850;
}

.badge.low {
  border-color: rgba(215, 108, 97, 0.5);
  color: #ffafa6;
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 38px 0;
}

.casino-offers {
  padding-top: 32px;
}

.priority-casino-list {
  padding-top: clamp(10px, 2vw, 18px);
  padding-bottom: clamp(26px, 4vw, 44px);
}

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

.section-head.tight {
  margin-bottom: 12px;
}

.section-head h2 {
  margin-bottom: 0;
  font-size: clamp(24px, 3vw, 36px);
}

.section-head p {
  max-width: 56ch;
  margin-bottom: 0;
  color: var(--muted);
}

.page-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  justify-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 52px) 0 clamp(14px, 3vw, 28px);
  text-align: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw) -8px;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 8%, rgba(224, 179, 106, 0.12), transparent 30%),
    radial-gradient(ellipse at 50% 52%, rgba(138, 183, 159, 0.11), transparent 38%),
    linear-gradient(90deg, rgba(246, 241, 232, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(246, 241, 232, 0.025) 1px, transparent 1px);
  background-size: auto, auto, 92px 92px, 92px 92px;
  mask-image: linear-gradient(180deg, #000 0, #000 68%, transparent 100%);
  opacity: 0.95;
}

.page-hero h1 {
  max-width: 18ch;
  margin-inline: auto;
}

.page-hero p {
  max-width: 68ch;
  margin-inline: auto;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 20px);
}

.content-band {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 0;
}

.category-hero {
  display: grid;
  justify-items: center;
  text-align: center;
}

.category-hero h1,
.category-hero p {
  margin-inline: auto;
}

.category-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 0 44px;
}

.category-stack {
  display: grid;
  gap: 18px;
}

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

.quick-list li {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 21, 20, 0.36);
}

.quick-list strong {
  color: var(--paper);
}

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

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

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

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

.info-card,
.record-card,
.article-card,
.notice-panel {
  border: 1px solid rgba(246, 241, 232, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(224, 179, 106, 0.055), transparent 34%),
    rgba(246, 241, 232, 0.045);
  padding: 18px;
}

.article-card {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  gap: 14px;
  overflow: hidden;
  text-decoration: none;
}

.article-card.with-art {
  padding: 0;
}

.article-card.with-art .article-card-body {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 18px;
}

.blog-card-section {
  padding-top: clamp(18px, 3vw, 34px);
}

.blog-card-grid {
  gap: 20px;
}

.blog-card {
  min-height: 360px;
}

.blog-card .card-art {
  min-height: 132px;
}

.blog-card .article-card-body {
  min-height: 210px;
}

.blog-card h2 {
  margin-bottom: 4px;
  font-size: clamp(27px, 2.6vw, 42px);
  line-height: 1.02;
}

.card-art {
  position: relative;
  min-height: 116px;
  overflow: hidden;
  border-bottom: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(224, 179, 106, 0.34), transparent 24%),
    linear-gradient(135deg, rgba(31, 77, 63, 0.9), rgba(16, 21, 20, 0.74));
}

.card-art::before,
.card-art::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-top: 1px solid rgba(246, 241, 232, 0.12);
  border-bottom: 1px solid rgba(224, 179, 106, 0.12);
  border-radius: 0;
}

.card-art::after {
  inset: auto 18px 18px auto;
  width: 160px;
  height: 1px;
  background:
    linear-gradient(90deg, rgba(224, 179, 106, 0.72), rgba(138, 183, 159, 0.5), transparent);
  box-shadow: none;
}

.card-art.bonus {
  background:
    radial-gradient(circle at 76% 24%, rgba(201, 133, 77, 0.42), transparent 24%),
    repeating-linear-gradient(90deg, rgba(224, 179, 106, 0.14) 0 1px, transparent 1px 28px),
    linear-gradient(135deg, rgba(31, 77, 63, 0.92), rgba(16, 21, 20, 0.74));
}

.card-art.profile {
  background:
    linear-gradient(135deg, rgba(138, 183, 159, 0.24) 0 18%, transparent 18% 36%, rgba(224, 179, 106, 0.18) 36% 54%, transparent 54%),
    linear-gradient(135deg, rgba(31, 77, 63, 0.92), rgba(16, 21, 20, 0.74));
}

.card-art.review {
  background:
    repeating-linear-gradient(135deg, rgba(224, 179, 106, 0.18) 0 2px, transparent 2px 22px),
    linear-gradient(135deg, rgba(31, 77, 63, 0.92), rgba(16, 21, 20, 0.74));
}

.card-art.signals {
  background:
    radial-gradient(circle at 26% 70%, rgba(138, 183, 159, 0.36), transparent 23%),
    linear-gradient(90deg, rgba(224, 179, 106, 0.15) 0 18%, transparent 18% 100%),
    linear-gradient(135deg, rgba(31, 77, 63, 0.92), rgba(16, 21, 20, 0.74));
}

.card-art-text {
  position: absolute;
  left: 22px;
  bottom: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 0 0 6px;
  border: 0;
  border-bottom: 1px solid rgba(224, 179, 106, 0.46);
  border-radius: 0;
  background: transparent;
  color: var(--paper);
  font-size: 13px;
  font-weight: 900;
}

.info-card h2,
.info-card h3,
.record-card h2,
.record-card h3,
.article-card h2,
.article-card h3,
.notice-panel h2,
.notice-panel h3 {
  margin-bottom: 8px;
}

.info-card p,
.record-card p,
.article-card p,
.notice-panel p,
.article-body p,
.article-body li {
  color: var(--muted);
}

.article-body {
  width: min(100%, 1080px);
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
  padding-right: clamp(14px, 2vw, 24px);
  padding-left: clamp(14px, 2vw, 24px);
}

.article-body.wide {
  max-width: 1120px;
}

.article-body > p,
.article-body > ul,
.article-body > ol,
.article-body > table,
.article-body > .mini-table,
.article-body > .pull-note,
.article-body > .signal-strip,
.article-body > .word-stack,
.article-body > .notice-panel {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.article-body h2 {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  margin-top: clamp(28px, 4vw, 48px);
  margin-bottom: 12px;
  text-align: left;
  font-size: clamp(25px, 2.45vw, 38px);
  line-height: 1.08;
}

.article-body h3 {
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  margin-top: 22px;
  text-align: left;
}

.article-body ul,
.article-body ol {
  padding-left: 22px;
}

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

.section.article-body,
.section .article-body {
  padding-top: 18px;
  padding-bottom: 18px;
}

.article-lead {
  color: var(--paper);
  font-size: clamp(18px, 2vw, 22px);
}

.post-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  min-height: clamp(150px, 18vw, 220px);
  overflow: hidden;
  margin: 14px auto 22px;
  padding: clamp(26px, 5vw, 56px) clamp(18px, 4vw, 44px);
  border-top: 1px solid rgba(224, 179, 106, 0.2);
  border-bottom: 1px solid rgba(246, 241, 232, 0.11);
  border-radius: 0;
  background:
    radial-gradient(ellipse at 18% 26%, rgba(224, 179, 106, 0.14), transparent 34%),
    radial-gradient(ellipse at 72% 60%, rgba(138, 183, 159, 0.13), transparent 38%),
    linear-gradient(90deg, rgba(246, 241, 232, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(246, 241, 232, 0.025) 1px, transparent 1px),
    linear-gradient(135deg, rgba(31, 77, 63, 0.28), rgba(16, 21, 20, 0.08));
  background-size: auto, auto, 92px 92px, 92px 92px, auto;
  box-shadow:
    inset 0 22px 50px rgba(16, 21, 20, 0.2),
    inset 0 -22px 50px rgba(16, 21, 20, 0.24);
}

.post-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(118deg, transparent 0 36%, rgba(224, 179, 106, 0.13) 36% 36.25%, transparent 36.25% 100%),
    linear-gradient(118deg, transparent 0 56%, rgba(138, 183, 159, 0.1) 56% 56.25%, transparent 56.25% 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 20%, #000 80%, transparent 100%);
  pointer-events: none;
}

.visual-label {
  position: relative;
  z-index: 1;
  max-width: 820px;
  color: var(--paper);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 950;
  line-height: 1;
}

.signal-strip,
.mini-table,
.pull-note {
  border: 0;
  border-top: 1px solid rgba(224, 179, 106, 0.22);
  border-bottom: 1px solid rgba(246, 241, 232, 0.12);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(224, 179, 106, 0.07), transparent 24%, rgba(138, 183, 159, 0.055) 72%, transparent),
    rgba(246, 241, 232, 0.02);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  margin: 24px 0;
}

.signal-item {
  padding: 18px;
  border-left: 1px solid rgba(246, 241, 232, 0.1);
  background: transparent;
}

.signal-item:first-child {
  border-left: 0;
}

.signal-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--amber);
  font-size: 14px;
  text-transform: uppercase;
}

.mini-table {
  width: 100%;
  margin: 22px 0 30px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}

.mini-table th,
.mini-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(246, 241, 232, 0.1);
  text-align: left;
  vertical-align: top;
}

.mini-table th {
  color: var(--amber);
  font-size: 13px;
}

.mini-table td {
  color: var(--muted);
}

.pull-note {
  margin: 24px 0;
  padding: clamp(18px, 3vw, 28px);
  border-left: 0;
}

.pull-note strong {
  color: var(--paper);
}

.word-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 24px;
}

.word-stack span {
  border: 0;
  border-bottom: 1px solid rgba(224, 179, 106, 0.42);
  border-radius: 0;
  padding: 6px 2px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 850;
}

.record-list {
  display: grid;
  gap: 12px;
}

.record-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.record-meta,
.tag-row,
.fact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 5px 8px;
  border: 1px solid rgba(224, 179, 106, 0.32);
  color: var(--amber);
  font-size: 12px;
  font-weight: 850;
}

.fact-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: rgba(246, 241, 232, 0.045);
}

.fact-table th,
.fact-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.fact-table th {
  width: 30%;
  color: var(--amber);
  font-size: 13px;
}

.reference-list {
  display: grid;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.reference-list a {
  color: var(--amber);
  font-weight: 800;
}

.deep-content {
  padding-top: 34px;
}

.deep-content a {
  color: var(--amber);
  font-weight: 850;
  text-decoration: none;
}

.deep-content a:hover {
  text-decoration: underline;
}

.quality-list {
  display: grid;
  gap: 10px;
  width: 100%;
  max-width: none;
  padding-left: 0;
  list-style: none;
}

.quality-list li {
  position: relative;
  padding: 13px 0 13px 34px;
  border: 0;
  border-bottom: 1px solid rgba(246, 241, 232, 0.11);
  border-radius: 0;
  background: transparent;
  color: var(--muted);
}

.quality-list li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 4px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(224, 179, 106, 0.08);
}

.quality-list strong {
  color: var(--paper);
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 0 44px;
}

.review-layout .article-body {
  margin-inline: 0;
}

.sidebar-stack {
  display: grid;
  align-content: start;
  gap: 14px;
}

.score-box {
  display: grid;
  place-items: center;
  min-height: 110px;
  border: 1px solid rgba(224, 179, 106, 0.32);
  border-radius: 8px;
  background: rgba(224, 179, 106, 0.1);
  text-align: center;
}

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

.page-cta {
  display: inline-flex;
  width: max-content;
  margin-top: 8px;
}

.link-list,
.guide-grid,
.process-grid,
.casino-offer-grid {
  display: grid;
  gap: 12px;
}

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

.offer-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(246, 241, 232, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(224, 179, 106, 0.12), transparent 30%),
    rgba(246, 241, 232, 0.055);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.offer-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.offer-card.accent {
  background:
    linear-gradient(180deg, rgba(138, 183, 159, 0.11), transparent 30%),
    rgba(246, 241, 232, 0.055);
}

.rank-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--amber);
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(224, 179, 106, 0.2);
}

.offer-logo {
  display: grid;
  place-items: center;
  width: min(230px, calc(100% - 82px));
  min-height: 78px;
  aspect-ratio: 2.35 / 1;
  margin: 36px auto 0;
  padding: 12px;
  border: 1px solid rgba(246, 241, 232, 0.12);
  border-radius: 8px;
  background: rgba(16, 21, 20, 0.78);
  color: var(--paper);
  font-size: clamp(18px, 2.1vw, 30px);
  font-weight: 950;
  line-height: 1;
  text-align: center;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.26);
}

.offer-logo.gold {
  background: linear-gradient(145deg, #f0bd68, #946134);
}

.offer-logo.emerald {
  background: linear-gradient(145deg, #8ab79f, #1f4d3f);
}

.offer-logo.blue {
  background: linear-gradient(145deg, #58c7ff, #244b7a);
}

.offer-logo.copper {
  background: linear-gradient(145deg, #d98c55, #673820);
}

.offer-body {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px 18px 16px;
}

.offer-title-row {
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
}

.offer-title-row h3 {
  margin-bottom: 0;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.05;
}

.rating,
.casino-stars {
  color: var(--amber);
  font-size: 14px;
  font-weight: 900;
}

.casino-stars span {
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(224, 179, 106, 0.4);
}

.offer-body p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.offer-body .offer-main-bonus {
  min-height: 58px;
  color: var(--paper);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.22;
  text-transform: none;
}

.offer-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin: 2px 0 0;
}

.offer-quick-grid div {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 7px;
  padding: 8px 9px;
  border: 1px solid rgba(246, 241, 232, 0.06);
  border-radius: 6px;
  background: rgba(246, 241, 232, 0.07);
}

.offer-quick-grid dt,
.offer-quick-grid dd {
  margin: 0;
  min-width: 0;
  font-size: 12px;
  line-height: 1;
}

.offer-quick-grid dt {
  color: var(--amber);
  font-weight: 900;
}

.offer-quick-grid dd {
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.method-pills,
.perk-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.method-pills span {
  min-width: 26px;
  padding: 4px 5px;
  border-radius: 4px;
  background: rgba(246, 241, 232, 0.9);
  color: #111615;
  font-size: 8px;
  font-weight: 950;
  line-height: 1;
  text-align: center;
}

.method-pills span:nth-child(1),
.method-pills span:nth-child(4) {
  background: #f05a28;
  color: #fff;
}

.method-pills span:nth-child(3) {
  background: #225da8;
  color: #fff;
}

.method-pills span:nth-child(5) {
  background: #627eea;
  color: #fff;
}

.method-pills span:nth-child(6) {
  background: #28a889;
  color: #fff;
}

.method-pills span:nth-child(7) {
  background: #818b95;
  color: #fff;
}

.perk-row {
  justify-content: space-between;
  gap: 8px;
  color: var(--amber);
  font-size: 11px;
  font-weight: 800;
}

.offer-facts {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
}

.offer-facts div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 0 0;
  border-top: 1px solid var(--line);
}

.offer-facts dt,
.offer-facts dd {
  margin: 0;
  font-size: 12px;
}

.offer-facts dt {
  color: var(--muted);
}

.offer-facts dd {
  color: var(--paper);
  font-weight: 800;
  text-align: right;
}

.offer-cta {
  position: relative;
  z-index: 1;
  margin: 0 18px 18px;
}

.guide-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  width: 100%;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  width: 100%;
}

.guide-card,
.process-step,
.link-card {
  display: grid;
  align-content: start;
  min-height: 150px;
  border: 0;
  border-top: 1px solid rgba(224, 179, 106, 0.16);
  border-bottom: 1px solid rgba(246, 241, 232, 0.1);
  background:
    linear-gradient(135deg, rgba(224, 179, 106, 0.045), transparent 40%),
    rgba(246, 241, 232, 0.018);
  padding: 22px 4px;
  color: inherit;
  text-decoration: none;
}

.guide-card h3,
.process-step h3,
.link-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.guide-card p,
.process-step p,
.link-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.guide-card:hover h3,
.link-card:hover h3,
.article-card:hover h2,
.article-card:hover h3 {
  color: var(--amber);
}

.guide-card:focus-visible,
.link-card:focus-visible,
.article-card:focus-visible {
  outline: 2px solid rgba(224, 179, 106, 0.7);
  outline-offset: 4px;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  background: var(--copper);
  color: var(--ink);
  font-weight: 900;
}

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

.callout {
  border-left: 4px solid var(--amber);
  background: rgba(224, 179, 106, 0.1);
  padding: 18px;
}

.callout p {
  margin: 0;
  color: var(--paper);
}

.support-section {
  max-width: 1120px;
  margin: 18px auto 0;
  padding: 28px 0 8px;
}

.faq-panel,
.author-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(224, 179, 106, 0.075), transparent 34%),
    rgba(246, 241, 232, 0.055);
}

.faq-panel {
  display: grid;
  gap: 10px;
  padding: clamp(18px, 3vw, 26px);
}

.faq-panel h2,
.author-box h2 {
  margin-bottom: 8px;
  font-size: clamp(24px, 3vw, 34px);
  text-align: center;
}

.faq-item {
  border-top: 1px solid var(--line);
  padding-top: 13px;
}

.faq-item:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.faq-item h3 {
  margin-bottom: 6px;
  color: var(--paper);
  font-size: 18px;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.author-box {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 14px;
  padding: clamp(18px, 3vw, 24px);
}

.author-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(224, 179, 106, 0.48);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(224, 179, 106, 0.2), rgba(31, 77, 63, 0.82));
  color: var(--amber);
  font-weight: 950;
}

.author-box h2,
.author-box p {
  margin: 0;
  text-align: left;
}

.author-box p {
  color: var(--muted);
}

.author-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.author-links a {
  color: var(--amber);
  font-weight: 850;
  text-decoration: none;
}

.footer {
  padding: 30px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .split,
  .guide-grid,
  .process-grid,
  .content-grid,
  .content-grid.two,
  .content-grid.four,
  .category-layout,
  .review-layout {
    grid-template-columns: 1fr;
  }

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

  .signal-strip {
    grid-template-columns: 1fr;
  }

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

  .hero-stage {
    min-height: 0;
    padding: 26px;
  }

  .nav {
    display: none;
  }

  .footer-inner {
    display: grid;
  }

  .author-box {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .author-box h2,
  .author-box p {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .topbar {
    padding: 12px 14px;
  }

  .brand {
    font-size: 15px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-name {
    font-size: 18px;
  }

  .main {
    padding-inline: 12px;
  }

  .hero-stage {
    margin-top: 0;
    padding: 28px 0 34px;
  }

  .hero-stage::after {
    right: auto;
    top: auto;
    opacity: 1;
  }

  h1 {
    font-size: clamp(31px, 9vw, 44px);
  }

  .hero-lede {
    font-size: 15px;
  }

  .button {
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 9px;
    font-size: 14px;
  }

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

  .casino-offer-grid {
    gap: 10px;
  }

  .offer-card {
    min-height: 315px;
    border-radius: 8px;
  }

  .rank-badge {
    top: 12px;
    left: 12px;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    font-size: 15px;
  }

  .offer-logo {
    width: min(132px, calc(100% - 68px));
    height: auto;
    min-height: 56px;
    aspect-ratio: 2.35 / 1;
    margin-top: 28px;
    border-radius: 8px;
    font-size: clamp(15px, 5vw, 20px);
  }

  .offer-body {
    padding: 12px;
  }

  .offer-title-row h3 {
    font-size: 17px;
  }

  .offer-body p {
    font-size: 12px;
  }

  .offer-facts div {
    display: grid;
    gap: 2px;
  }

  .offer-facts dd {
    text-align: left;
  }

  .offer-cta {
    margin: 0 12px 12px;
    min-height: 38px;
    padding: 8px;
    font-size: 13px;
  }
}
