:root {
  --font-sans: "DM Sans", sans-serif;
  --font-serif: "Fraunces", serif;
  --font-mono: "DM Mono", monospace;
  --ink: #0a0f1a;
  --ink2: #2d3748;
  --ink3: #718096;
  --ink4: #a0aec0;
  --paper: #f8f6f0;
  --paper2: #f0ece2;
  --paper3: #e8e0d0;
  --white: #ffffff;
  --gold: #b8860b;
  --gold2: #d4a017;
  --gold3: #f5c842;
  --goldl: #fdf6dc;
  --navy: #0f2044;
  --navy2: #1a3460;
  --navyl: #e8edf8;
  --green: #166534;
  --greenl: #dcfce7;
  --red: #991b1b;
  --redl: #fee2e2;
  --orange: #9a3412;
  --orangel: #ffedd5;
  --blue: #0f2044;
  --bluel: #e8edf8;
  --border: #d4cfc4;
  --border2: #b8b0a0;
  --shadow: 0 18px 50px rgba(10, 15, 26, 0.08);
}
.ref-btn-wrapper {
    text-align: center;
    margin: 24px 0;
}

.ref-btn-wrapper .ref-btn {
    display: inline-block;
    padding: 14px 28px;
    background: var(--navy2);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.2s ease;
    box-shadow: 0 4px 14px rgba(0, 200, 150, 0.25);
    text-transform: uppercase;
}

.ref-btn:hover {
    background: linear-gradient(135deg, var(--navy2), var(--navy));
    transform: translateY(-2px);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(0deg, transparent 24px, rgba(180, 160, 120, 0.07) 25px),
    linear-gradient(90deg, transparent 24px, rgba(180, 160, 120, 0.07) 25px);
  background-size: 25px 25px;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: none;
}

body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

.z1,
.site-main,
footer {
  position: relative;
  z-index: 1;
}

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

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

[hidden] {
  display: none !important;
}

button,
input,
textarea,
select {
  font: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  padding: 7px 0;
  letter-spacing: 0.3px;
}

.topbar-inner,
.header-inner,
.bc,
.hero,
.section,
.front-page-content,
.expert-bar-inner,
.page-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.topbar-left,
.topbar-right,
.footer-links,
.entry-meta,
.feat-stars-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

.topbar a:hover,
.footer-links a:hover,
.footer-col a:hover {
  color: var(--gold3);
}

.update-pill {
  background: rgba(245, 200, 66, 0.15);
  color: var(--gold3);
  padding: 2px 9px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.site-header {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--gold3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-family: var(--font-serif);
  font-weight: 900;
  border-radius: 8px;
  flex-shrink: 0;
}

.logo-text {
  line-height: 1.1;
}

.logo-text sub {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  color: var(--ink4);
  letter-spacing: 0.5px;
  display: block;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.mainnav {
  display: flex;
  gap: 1px;
}

.mainnav a {
  padding: 7px 15px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink2);
  transition: all 0.2s;
  letter-spacing: 0.2px;
}

.mainnav a:hover {
  background: var(--paper2);
  color: var(--ink);
}

.mainnav a.active {
  background: var(--navy);
  color: var(--white);
}

.header-cta,
.btn-primary,
.feat-cta,
.bonus-cta,
.cr-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.header-cta {
  padding: 9px 22px;
  background: var(--gold);
  color: var(--white);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  white-space: nowrap;
  transition: all 0.2s;
}

.header-cta:hover {
  background: var(--gold2);
  transform: translateY(-1px);
}

.mobile-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border2);
  border-radius: 8px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.mobile-nav-toggle span:not(.screen-reader-text) {
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s, opacity 0.2s;
}

body.menu-open .mobile-nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .mobile-nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .mobile-nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.bc {
  padding-top: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--ink4);
  letter-spacing: 0.2px;
}

.bc a {
  color: var(--ink3);
}

.bc a:hover {
  color: var(--navy);
}

.bc-sep {
  color: var(--ink4);
}

.bc-current {
  color: var(--ink);
}

.expert-bar {
  background: var(--paper2);
  border-bottom: 1px solid var(--border);
  padding: 11px 0;
}

.expert-bar-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.expert-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.expert-avatar svg {
  width: 18px;
  height: 18px;
  display: block;
}

.expert-text {
  font-size: 12px;
  color: var(--ink2);
}

.expert-text strong {
  color: var(--ink);
  font-weight: 600;
}

.hero {
  padding-top: 32px;
  padding-bottom: 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 44px;
  align-items: start;
}

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

.hero-kicker,
.bonus-type,
.ed-cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-kicker::before,
.bonus-type::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--navy);
}

.hero-h1,
.entry-title {
  font-family: var(--font-serif);
  font-size: 50px;
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 18px;
}

.hero-h1 em {
  color: var(--navy);
  font-style: normal;
}

.hero-lead,
.entry-lead {
  font-size: 16px;
  color: var(--ink2);
  line-height: 1.75;
  max-width: 700px;
  font-weight: 300;
}

.hero-lead {
  margin-bottom: 24px;
  max-width: 560px;
}

.hero-intro .section {
  max-width: none;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

.hero-intro .section-tight {
  margin-bottom: 0;
}

.hero-intro > p:first-child,
.hero-intro .section > p:first-child {
  font-size: 16px;
  color: var(--ink2);
  line-height: 1.75;
  max-width: 560px;
  font-weight: 300;
  margin-bottom: 24px;
}

.hero-intro .trust-strip {
  margin-bottom: 22px;
}

.hero-intro .hero-stats {
  margin-bottom: 20px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink2);
}

.trust-badge.green {
  background: var(--greenl);
  border-color: #86efac;
  color: var(--green);
}

.trust-badge.navy {
  background: var(--navyl);
  border-color: #93c5fd;
  color: var(--navy);
}

.hero-stats {
  display: flex;
  gap: 28px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.hstat .v {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -1px;
}

.hstat .l {
  font-size: 11px;
  color: var(--ink3);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.hero-btns br {
  display: none;
}

.btn-primary,
.btn-secondary {
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
}

.btn-primary {
  padding: 13px 30px;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
}

.btn-primary:hover,
.bonus-cta:hover,
.feat-cta:hover {
  background: var(--navy2);
  transform: translateY(-1px);
}

.btn-secondary {
  padding: 13px 22px;
  background: transparent;
  color: var(--ink2);
  border-color: var(--border2);
  font-weight: 500;
}

.btn-secondary:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.featured-card,
.bonus-card,
.editorial-card,
.post-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.featured-card {
  border: 1px solid var(--border2);
  border-top: 3px solid var(--navy);
  overflow: hidden;
}

.feat-header {
  background: var(--navy);
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.feat-label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.feat-rank {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold3);
  letter-spacing: 0.5px;
}

.feat-body {
  padding: 20px 20px 16px;
}

.feat-casino-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.feat-logo {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.feat-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.feat-name,
.bonus-casino-name,
.hub-name,
.ed-title,
.post-card-title {
  font-family: var(--font-serif);
  color: var(--ink);
}

.feat-name {
  font-size: 22px;
  font-weight: 700;
}

.feat-sub {
  font-size: 12px;
  color: var(--ink3);
}

.star-rating {
  position: relative;
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
}

.star-rating-base,
.star-rating-fill {
  display: block;
  letter-spacing: 0.12em;
}

.star-rating-base {
  color: var(--border2);
}

.star-rating-fill {
  position: absolute;
  inset: 0 auto 0 0;
  overflow: hidden;
  color: var(--gold2);
}

.feat-stars {
  font-size: 15px;
}

.feat-rating {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink2);
}

.feat-rows {
  border-top: 1px solid var(--border);
}

.feat-row,
.bonus-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}

.feat-row:last-child,
.bonus-detail:last-child {
  border-bottom: none;
}

.feat-row .k,
.bonus-detail .k {
  color: var(--ink3);
}

.feat-row .v,
.bonus-detail .v {
  font-weight: 600;
  color: var(--ink);
  text-align: right;
}

.feat-row .v.green {
  color: var(--green);
}

.feat-row .v.gold {
  color: var(--gold);
}

.feat-cta {
  width: 100%;
  padding: 13px;
  background: var(--gold);
  color: var(--white);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  margin-top: 16px;
}

.feat-cta:hover {
  background: var(--gold2);
}

.feat-disc {
  font-size: 10px;
  color: var(--ink4);
  text-align: center;
  margin-top: 8px;
}

.section {
  padding-bottom: 52px;
}

.section.z1{
  padding-bottom: 0;
}

.front-page-content > .section {
  max-width: none;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}

.front-page-content .section .section {
  max-width: none;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}

.section-tight {
  padding-bottom: 0;
  margin-bottom: -10px;
}

.sec-hdr {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 6px;
}

.sec-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.3px;
}

.sec-line {
  flex: 1;
  height: 1px;
  background: var(--ink);
}

.sec-sub {
  font-size: 13px;
  color: var(--ink3);
  margin-bottom: 26px;
}

.aff-notice {
  background: var(--paper2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 12px;
  color: var(--ink3);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.aff-notice .ico {
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.aff-notice br,
.bonus-detail br,
.legal-space br {
  display: none;
}

.casino-table-wrap,
.legal-box,
.eeat-box,
.content-surface {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.casino-table-wrap {
  overflow: hidden;
}

.ct-head,
.casino-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 130px 100px 90px 90px 140px;
  align-items: center;
}

.ct-head {
  background: var(--navy);
  border-bottom: 0;
}

.ct-head span {
  padding: 11px 12px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.casino-row {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.casino-row[hidden] {
  display: none !important;
}

.casino-row.is-revealing {
  animation: casino-row-reveal 0.48s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.casino-row:last-child {
  border-bottom: none;
}

.casino-row:hover {
  background: var(--paper);
}

.cr-rank {
  padding: 18px 0 18px 14px;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 900;
  color: var(--ink4);
}

.cr-rank.top {
  color: var(--gold);
}

.cr-casino {
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cr-logo {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.cr-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.cr-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.cr-sub {
  font-size: 11px;
  color: var(--ink3);
}

.cr-lic {
  display: inline-block;
  margin-top: 3px;
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lic-ggl {
  background: var(--greenl);
  border: 1px solid #86efac;
  color: var(--green);
}

.lic-off {
  background: var(--orangel);
  border: 1px solid #fed7aa;
  color: var(--orange);
}

.lic-cur {
  background: #e0f2fe;
  border: 1px solid #bae6fd;
  color: #0c4a6e;
}

.cr-bonus,
.cr-rtp,
.cr-paypal,
.cr-rating,
.cr-cta {
  padding: 14px;
}

.cr-bonus {
  font-size: 13px;
  color: var(--ink2);
}

.cr-bonus strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.cr-rtp {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
}

.cr-paypal {
  font-size: 13px;
  font-weight: 600;
}

.cr-paypal.yes {
  color: var(--green);
}

.cr-paypal.no {
  color: var(--ink4);
}

.cr-rating-num {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
}

.cr-rating-stars {
  font-size: 11px;
}

.cr-btn {
  padding: 8px 16px;
  background: var(--navy);
  color: var(--white);
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.cr-btn:hover,
.cr-btn:focus,
.cr-btn:active {
  border-color: var(--navy);
  color: var(--white);
  background: var(--navy2);
  transform: translateY(-1px);
}

.cr-btn:visited {
  color: var(--white);
}

.cr-btn.gold,
.bonus-cta-highlight {
  background: var(--gold);
  border-color: transparent;
  color: var(--white);
}

.cr-btn.gold:hover,
.cr-btn.gold:focus,
.cr-btn.gold:active {
  background: var(--gold2);
  color: var(--white);
}

.section-center {
  text-align: center;
  margin-top: 20px;
}

.section-button {
  display: inline-flex;
}

.bonus-grid,
.editorial-grid,
.post-grid {
  display: grid;
  gap: 18px;
}

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

.bonus-card {
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.25s;
}

.bonus-card:hover,
.editorial-card:hover,
.post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(10, 15, 26, 0.1);
}

.bonus-card-highlight {
  border-color: var(--gold);
}

.bonus-card-top {
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--border);
}

.bonus-card-top-highlight {
  background: var(--goldl);
  border-bottom-color: var(--border);
}

.bonus-casino-name {
  font-size: 18px;
  font-weight: 700;
}

.bonus-amount {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 900;
  color: var(--navy);
  margin: 10px 0 4px;
  line-height: 1;
}

.bonus-sub {
  font-size: 12px;
  color: var(--ink3);
}

.bonus-card-bottom {
  padding: 14px 20px;
}

.bonus-cta {
  width: 100%;
  padding: 11px;
  background: var(--navy);
  color: var(--white);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  margin-top: 14px;
}

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

.hub-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  transition: all 0.2s;
}

.hub-card:hover {
  border-color: var(--navy);
  background: var(--paper);
  box-shadow: 0 8px 30px rgba(10, 15, 26, 0.08);
}

.hub-ico {
  font-size: 22px;
  margin-bottom: 10px;
}

.hub-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.hub-desc {
  font-size: 12px;
  color: var(--ink3);
  line-height: 1.5;
}

.hub-cnt {
  margin-top: 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  font-family: var(--font-mono);
}

.legal-box {
  background: var(--navyl);
  border-color: #bfdbfe;
  border-left: 4px solid var(--blue);
  padding: 24px 28px;
}

.legal-box h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.legal-box p {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.75;
}

.legal-space {
  margin-top: 10px;
}

.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
  margin-top: 10px;
  margin-right: 8px;
}

.legal-badge-navy {
  background: var(--navy);
}

.legal-badge-gold {
  background: var(--gold);
}

.legal-badge-green {
  background: var(--green);
}

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

.editorial-card {
  border: 1px solid var(--border);
  overflow: hidden;
}

.editorial-card a,
.post-card a {
  display: block;
  height: 100%;
}

.ed-img,
.post-card-image {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.ed-img-cover {
  background-size: cover;
  background-position: center;
  position: relative;
}

.ed-img-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 32, 68, 0.12) 0%, rgba(15, 32, 68, 0.32) 100%);
}

.tone-navy {
  background: var(--navyl);
}

.tone-gold {
  background: var(--goldl);
}

.tone-green {
  background: var(--greenl);
}

.ed-body,
.post-card-body {
  padding: 18px;
}

.ed-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.ed-cat::before {
  content: none;
}

.ed-title,
.post-card-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}

.ed-excerpt,
.post-card-excerpt {
  font-size: 12px;
  color: var(--ink3);
  line-height: 1.6;
}

.ed-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  color: var(--ink4);
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.eeat-box {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0;
}

.eeat-div {
  background: var(--border);
}

.eeat-item {
  padding: 0 28px;
}

.eeat-item:first-child {
  padding-left: 0;
}

.eeat-item:last-child {
  padding-right: 0;
}

.eeat-ico {
  font-size: 24px;
  margin-bottom: 8px;
}

.eeat-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.eeat-text {
  font-size: 12px;
  color: var(--ink3);
  line-height: 1.6;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  border: 0;
  text-align: left;
}

.faq-q:hover {
  color: var(--navy);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--ink3);
  flex-shrink: 0;
  transition: all 0.2s;
}

.faq-item.open .faq-icon {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.faq-a {
  padding: 0 0 16px;
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.75;
}

.page-shell {
  padding-top: 32px;
  padding-bottom: 56px;
}

.entry-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 32px;
}

.entry-hero,
.archive-head {
  margin-bottom: 28px;
}

.archive-intro {
  margin-bottom: 28px;
}

.entry-meta {
  flex-wrap: wrap;
  margin-bottom: 18px;
  color: var(--ink3);
  font-size: 13px;
}

.entry-featured-image {
  margin-bottom: 28px;
  border-radius: 8px;
  overflow: hidden;
}

.content-surface {
  padding: 28px;
}

.content-surface.entry-content {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.entry-content {
  color: var(--ink2);
}

.entry-content > * + * {
  margin-top: 1em;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-family: var(--font-serif);
  color: var(--ink);
  line-height: 1.2;
}

.entry-content h2 {
  font-size: 30px;
}

.entry-content h3 {
  font-size: 24px;
}

.entry-content ul,
.entry-content ol,
.front-page-content ul,
.front-page-content ol,
.hero-intro ul,
.hero-intro ol {
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  text-align: left;
}

.entry-content blockquote {
  padding: 20px 24px;
  border-left: 4px solid var(--gold);
  background: var(--paper2);
  color: var(--ink);
}

.entry-content a {
  color: var(--navy);
  text-decoration: underline;
}

.entry-content a.cr-btn,
.entry-content a.cr-btn:hover,
.entry-content a.cr-btn:focus,
.entry-content a.cr-btn:active,
.entry-content a.cr-btn:visited {
  color: var(--white);
  text-decoration: none;
}

.entry-content a.cr-btn.gold,
.entry-content a.cr-btn.gold:hover,
.entry-content a.cr-btn.gold:focus,
.entry-content a.cr-btn.gold:active,
.entry-content a.cr-btn.gold:visited {
  color: var(--white);
  text-decoration: none;
}

.entry-content code {
  background: var(--paper2);
  padding: 0.15em 0.35em;
  border-radius: 4px;
}

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

.post-card {
  border: 1px solid var(--border);
  overflow: hidden;
}

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card-image-fallback {
  font-size: 42px;
}

.pagination-wrap {
  margin-top: 28px;
}

.nav-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-links a,
.nav-links span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.nav-links .current {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.not-found-card {
  text-align: center;
}

.post-navigation-wrap {
  margin-top: 24px;
}

.post-navigation {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.post-navigation .nav-links {
  justify-content: space-between;
}

footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  border-top: 4px solid var(--gold);
  margin-top: 24px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 28px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  color: var(--white);
}

.footer-logo .logo-text sub {
  color: rgba(255, 255, 255, 0.4);
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
  line-height: 1.65;
}

.footer-col h5 {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 9px;
  transition: color 0.2s;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-single {
  justify-content: flex-start;
}

.footer-bottom-copy {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.plus18 {
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 60, 60, 0.8);
  color: var(--white);
  padding: 2px 7px;
  border-radius: 4px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes casino-row-reveal {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero,
.section,
.page-shell {
  animation: fadeUp 0.55s ease both;
}

@media (prefers-reduced-motion: reduce) {
  .hero,
  .section,
  .page-shell,
  .casino-row.is-revealing {
    animation: none !important;
  }
}

@media (max-width: 1100px) {
  .mainnav a {
    padding: 7px 12px;
  }

  .ct-head,
  .casino-row {
    grid-template-columns: 40px minmax(0, 1fr) 100px 80px 80px 80px 120px;
  }

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

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

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

  .eeat-box {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .eeat-div {
    display: none;
  }

  .eeat-item,
  .eeat-item:first-child,
  .eeat-item:last-child {
    padding: 0;
  }
}

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

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

  .topbar-right {
    gap: 12px;
  }
}

@media (max-width: 700px) {
  .topbar-inner,
  .header-inner,
  .bc,
  .hero,
  .section,
  .expert-bar-inner,
  .page-shell,
  .footer-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .topbar-inner,
  .topbar-right,
  .expert-bar-inner {
    align-items: flex-start;
  }

  .topbar-inner,
  .topbar-right {
    flex-direction: column;
  }

  .header-inner {
    min-height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
    flex-wrap: wrap;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .header-actions {
    width: 100%;
    display: block;
  }

  .mainnav {
    display: none;
    width: 100%;
    margin-top: 14px;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
  }

  body.menu-open .mainnav {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .hero-h1,
  .entry-title {
    font-size: 36px;
  }

  .hero-stats {
    gap: 20px;
  }

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

  .ct-head span:nth-child(4),
  .ct-head span:nth-child(5),
  .ct-head span:nth-child(6),
  .casino-row .cr-rtp,
  .casino-row .cr-paypal,
  .casino-row .cr-rating {
    display: none;
  }

  .editorial-grid,
  .post-grid,
  .footer-grid,
  .hub-grid {
    grid-template-columns: 1fr;
  }

  .sec-hdr {
    align-items: center;
  }

  .sec-line {
    display: none;
  }

  .entry-card,
  .content-surface {
    padding: 20px;
  }

  .footer-links {
    gap: 10px;
    flex-wrap: wrap;
  }
}
