:root {
  /* Color Palette - Premium & Modern */
  --primary: #33beb3;
  /* Logo Cyan */
  --primary-hover: #2aa197;
  /* Deep Cyan */

  --text-main: #0f172a;
  /* Very Dark Slate */
  --text-muted: #475569;
  /* Medium Soft Slate */
  --text-light: #94a3b8;
  /* Light Slate */

  --bg-body: #f8fafc;
  /* Ultra-light Cool Gray */
  --bg-card: #ffffff;
  /* Pure White */

  --border: #e2e8f0;
  /* Subtle Border */
  --border-light: #f1f5f9;
  /* Even Subtle-r Border */

  --success: #059669;
  /* Rich Green */
  --danger: #e11d48;
  /* Rich Rose */

  /* Typography */
  --font-serif: var(--font-sans);
  --font-sans: 'Poppins', sans-serif;
  --heading-weight: 700;
  --heading-transform: capitalize;

  /* Layout */
  --container-max-width: 1280px;
  --section-gap: clamp(36px, 4.5vw, 52px);
  --section-gap-sm: var(--section-gap);

  /* Geometry */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Modern Multi-layered Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 20px -4px rgba(15, 23, 42, 0.08), 0 4px 8px -4px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 24px 36px -8px rgba(15, 23, 42, 0.1), 0 12px 16px -8px rgba(15, 23, 42, 0.04);
  --shadow-inner: inset 0 2px 4px 0 rgba(15, 23, 42, 0.02);

  /* Sticky sidebars sit below the glass header */
  --sticky-header-offset: 5.5rem;

  /* Breadcrumb */
  --bc-bar-bg: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  --bc-bar-border: var(--border);
  --bc-link: #64748b;
  --bc-link-hover: var(--primary);
  --bc-current: var(--text-main);
  --bc-separator: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23cbd5e1' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E");
  --bc-inline-padding-x: max(28px, env(safe-area-inset-left, 0px));
  --bc-inline-padding-x-end: max(28px, env(safe-area-inset-right, 0px));

  /* Shared horizontal inset — header + full-bleed sections align to --container-max-width */
  --site-inline: max(var(--bc-inline-padding-x), calc((100% - var(--container-max-width)) / 2));
  --site-inline-end: max(var(--bc-inline-padding-x-end), calc((100% - var(--container-max-width)) / 2));
  --malaysia-inline: var(--site-inline);
  --malaysia-inline-end: var(--site-inline-end);
}

/* Reset & Base */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.active {
    transition: none !important;
  }

  .hero-card {
    transition: none !important;
  }

  .accordion-icon,
  .accordion-icon-wrap,
  .accordion-content {
    transition: none !important;
  }

  .vertical-card:hover,
  .criteria-card:hover,
  .tier-card:hover,
  .vertical-card:hover .card-icon,
  .page-malaysia .malaysia-operator-row:hover,
  .page-malaysia .btn-play-here:hover,
  .page-malaysia .btn-play-here:focus-visible,
  .page-malaysia .malaysia-operator-row:hover .btn-play-here,
  .page-malaysia .malaysia-operator-row:focus-within .btn-play-here {
    transform: none;
  }

  .cr-gallery-item:hover,
  .cr-ac-card:hover,
  .gc-link-wrap:hover {
    transform: none;
  }

  .cr-gallery-item:hover .cr-gallery-img,
  .gc-link-wrap:hover .gc-image {
    transform: none;
  }

  .home-intro__pill:hover,
  .home-intro__card:hover,
  .home-intro__card-link:hover {
    transform: none;
  }

  .home-intro__card-link:hover i {
    transform: none;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none !important;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s ease;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

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

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding-left: var(--bc-inline-padding-x);
  padding-right: var(--bc-inline-padding-x-end);
}

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

/* Typography Mastery */
h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.5vw, 5rem);
  line-height: 1.05;
  font-weight: var(--heading-weight);
  text-transform: var(--heading-transform);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: #020617;
}

h1 em {
  font-style: normal;
  font-weight: var(--heading-weight);
  font-family: var(--font-serif);
  color: var(--primary);
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: var(--heading-weight);
  text-transform: var(--heading-transform);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  color: #020617;
}

h3 {
  font-size: 1.25rem;
  font-weight: var(--heading-weight);
  text-transform: var(--heading-transform);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  color: var(--text-main);
}

h4,
h5,
h6 {
  font-weight: var(--heading-weight);
  text-transform: var(--heading-transform);
  color: var(--text-main);
}

/* Display titles: consistent bold weight site-wide */
:is(.gh-title,
  .dh-title,
  .slots-hero-title,
  .gc-title,
  .fg-title,
  .bc-title,
  .bd-title,
  .ph-title,
  .pd-title,
  .sv-title,
  .cr-heading,
  .cr-section-heading,
  .cr-ac-title,
  .cr-verdict-title,
  .cr-pc-heading,
  .cr-error-title,
  .pc-title,
  .bh-title,
  .providers-hero__title,
  .card-title,
  .filter-title,
  .casinos-hero__title,
  .listing-header h1,
  .section-header h2,
  .guides-directory-header h2,
  .news-directory-header h2,
  .slots-listing-seo h2,
  .providers-listing-seo h2,
  .vm-title,
  .vm-heading,
  .bd-section-title,
  .bd-code-heading,
  .bd-sidebar-title,
  .pv-section-title,
  .gi-content h3,
  .gn-card h2,
  .hook-widget h3,
  .post-body h2,
  .post-body h3,
  .cr-article .rich-text-body h2,
  .cr-article .rich-text-body h3,
  .cr-article .rich-text-body h4,
  .casinos-seo h2,
  .providers-seo h2,
  .bonuses-seo h2,
  .slots-seo h2,
  .guides-seo h2,
  .home-intro__col--head h2,
  .info-header h3,
  .vertical-card h3,
  .criteria-card h3,
  .hero-card__headline,
  .hero-card__brand-name,
  .post-core-content.cr-article .guide-post-md h1,
  .post-core-content.cr-article .guide-post-md h2,
  .post-core-content.cr-article .guide-post-md h3,
  .post-core-content.cr-article .guide-post-md h4,
  .about-article__intro h2,
  .about-section h2,
  .privacy-article__intro h2,
  .privacy-section h2,
  .terms-article__intro h2,
  .terms-section h2,
  .how-we-rate-article__intro h2,
  .how-we-rate-section h2,
  .contact-email-card__title) {
  font-weight: var(--heading-weight);
  text-transform: var(--heading-transform);
}

p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Header: no backdrop-filter here - it creates a containing block and breaks position:fixed full-screen mobile nav */
site-header {
  display: block;
  width: 100%;
}

.header {
  background: rgba(255, 255, 255, 0.92);
  padding: 0.65rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
  border-bottom-color: #e2e8f0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: var(--site-inline);
  padding-right: var(--site-inline-end);
}

.header>.header-inner.container {
  max-width: none;
  width: 100%;
  margin: 0;
  padding-left: var(--site-inline);
  padding-right: var(--site-inline-end);
}

/* Brand logo image in the bar (stacked 888 + REVIEWS artwork) */
.logo {
  line-height: 0;
  flex-shrink: 0;
}

.logo a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo .site-logo--header {
  display: block;
  height: clamp(50px, 8vw, 44px);
  width: auto;
  max-width: min(112px, 38vw);
  object-fit: contain;
}

.main-nav__list {
  display: flex;
  gap: clamp(12px, 1.15vw, 24px);
  align-items: center;
  flex-wrap: nowrap;
}

.main-nav__list>li {
  list-style: none;
  flex-shrink: 0;
}

.main-nav a {
  font-size: clamp(0.78rem, 0.4vw + 0.68rem, 0.875rem);
  font-weight: 600;
  color: #475569;
  text-transform: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    background 0.2s ease;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a.active,
.main-nav__dropdown-trigger.active {
  color: var(--primary);
}

.main-nav__item--dropdown {
  position: relative;
}

.main-nav__dropdown-trigger,
.main-nav__dropdown-label {
  font-size: clamp(0.78rem, 0.4vw + 0.68rem, 0.875rem);
  font-weight: 600;
  color: #475569;
  text-transform: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    background 0.2s ease;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
}

.main-nav__dropdown-trigger:hover,
.main-nav__item--dropdown.active .main-nav__dropdown-trigger,
.main-nav__item--dropdown.active .main-nav__dropdown-label {
  color: var(--primary);
}

.main-nav__dropdown {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav__dropdown a {
  display: block;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  text-transform: none;
  white-space: nowrap;
  text-decoration: none;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

@media (min-width: 1025px) {
  .main-nav {
    margin-left: auto;
  }

  .main-nav__list {
    gap: 0.35rem;
    padding: 0.35rem 0.4rem;
    background: rgba(15, 23, 42, 0.035);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  }

  /* Visual split: core hubs | utilities */
  .main-nav__list>li:nth-child(5) {
    margin-left: 0.4rem;
    padding-left: 0.65rem;
    border-left: 1px solid rgba(15, 23, 42, 0.08);
  }

  .main-nav__list>li>a,
  .main-nav__dropdown-trigger {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    line-height: 1.2;
  }

  .main-nav__list>li>a:hover,
  .main-nav__dropdown-trigger:hover {
    color: #1e293b;
    background: rgba(15, 23, 42, 0.05);
  }

  .main-nav__list>li>a.active,
  .main-nav__item--dropdown.active>.main-nav__dropdown-trigger {
    color: #fff;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary, #33beb3) 0%, #2aa89f 100%);
    box-shadow:
      0 2px 10px rgba(51, 190, 179, 0.32),
      inset 0 1px 0 rgba(255, 255, 255, 0.22);
  }

  .main-nav__list>li>a.active:hover,
  .main-nav__item--dropdown.active>.main-nav__dropdown-trigger:hover {
    color: #fff;
    background: linear-gradient(135deg, #3bcfc4 0%, var(--primary, #33beb3) 100%);
  }

  .main-nav__dropdown-trigger,
  .main-nav__dropdown-label {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
  }

  .main-nav__dropdown-trigger::after,
  .main-nav__dropdown-label::after {
    content: '';
    width: 0.35rem;
    height: 0.35rem;
    margin-left: 0.1rem;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.18s ease;
    flex-shrink: 0;
  }

  .main-nav__item--dropdown:hover .main-nav__dropdown-trigger::after,
  .main-nav__item--dropdown:hover .main-nav__dropdown-label::after,
  .main-nav__item--dropdown.is-open .main-nav__dropdown-trigger::after,
  .main-nav__item--dropdown.is-open .main-nav__dropdown-label::after,
  .main-nav__item--dropdown:focus-within .main-nav__dropdown-trigger::after,
  .main-nav__item--dropdown:focus-within .main-nav__dropdown-label::after {
    transform: rotate(-135deg) translateY(-1px);
  }

  .main-nav__item--dropdown:hover,
  .main-nav__item--dropdown.is-open,
  .main-nav__item--dropdown:focus-within {
    z-index: 130;
  }

  .main-nav__dropdown {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 10.5rem;
    padding: 0.4rem 0 0;
    background: transparent;
    border: none;
    box-shadow: none;
    z-index: 120;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(0.15rem);
    transition:
      opacity 0.16s ease,
      transform 0.16s ease,
      visibility 0.16s ease;
  }

  /* Invisible bridge so the menu stays open while moving the pointer down */
  .main-nav__dropdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: -0.25rem;
    right: -0.25rem;
    height: 0.4rem;
  }

  .main-nav__dropdown::after {
    content: '';
    position: absolute;
    inset: 0.4rem 0 0;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 0.625rem;
    box-shadow:
      0 8px 20px rgb(15 23 42 / 8%),
      0 2px 4px rgb(15 23 42 / 4%);
    z-index: -1;
  }

  .main-nav__dropdown>li {
    padding: 0 0.375rem;
  }

  .main-nav__dropdown>li:first-child {
    padding-top: 0.4rem;
  }

  .main-nav__dropdown>li:last-child {
    padding-bottom: 0.4rem;
  }

  .main-nav__dropdown a {
    position: relative;
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 0.5rem 0.7rem;
    margin: 0;
    border-radius: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.35;
    color: var(--text-main, #334155);
  }

  .main-nav__dropdown a:hover,
  .main-nav__dropdown a:focus-visible {
    background: rgba(51, 190, 179, 0.12);
    color: var(--primary, #33beb3);
    font-weight: 600;
  }

  .main-nav__dropdown a.active {
    background: rgba(51, 190, 179, 0.16);
    color: var(--primary-hover, #2aa89f);
    font-weight: 700;
    box-shadow: inset 0 0 0 1px rgba(51, 190, 179, 0.28);
  }

  .main-nav__item--dropdown:hover .main-nav__dropdown,
  .main-nav__item--dropdown.is-open .main-nav__dropdown,
  .main-nav__item--dropdown:focus-within .main-nav__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

@media (min-width: 1025px) {
  .main-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
    min-width: 0;
  }
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--text-main);
  border-radius: 50%;
  background: transparent;
  transition: background 0.2s;
}

.icon-btn:hover {
  color: var(--primary);
  background: rgba(29, 78, 216, 0.05);
}

.mobile-menu-btn {
  display: none;
}

/* Lock scroll when mobile drawer is open (iOS + desktop) */
html.mobile-menu-open,
body.mobile-menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

/* Mobile drawer: parts hidden on desktop */
.mobile-nav-panel__top,
.mobile-nav-panel__foot,
.mobile-nav-panel__tagline {
  display: none;
}

/* Beautiful Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-small {
  padding: 12px 24px;
  font-size: 0.75rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 10px rgba(29, 78, 216, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(29, 78, 216, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-main);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  background-color: #f1f5f9;
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

/* Polished Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge-light {
  background: #e2e8f0;
  color: #334155;
  margin-bottom: 24px;
}

.badge-green {
  background: #dcfce7;
  color: var(--success);
  padding: 4px 10px;
}

.badge-icon {
  width: 14px;
  height: 14px;
}

/* Page heroes — shared vertical rhythm + horizontal inset */
:is(.hero,
  .bonuses-hero,
  .guides-hero,
  .providers-hero,
  .directory-hero,
  .slots-hero,
  .casinos-hero,
  .page-about .about-hero,
  .page-how-we-rate .how-we-rate-hero,
  .page-privacy .privacy-hero,
  .page-terms .terms-hero,
  .page-contact .contact-hero) {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
  padding-left: var(--bc-inline-padding-x);
  padding-right: var(--bc-inline-padding-x-end);
}

/* Same element carries .container — inset from container padding only */
.guides-hero.container,
.bonuses-hero.container,
.directory-hero.container,
.slots-hero.container,
.casinos-hero.container,
.page-about .about-hero.container,
.page-how-we-rate .how-we-rate-hero.container,
.page-privacy .privacy-hero.container,
.page-terms .terms-hero.container,
.page-contact .contact-hero.container {
  padding-left: 0;
  padding-right: 0;
}

.hero>.container,
.hero>.hero-inner {
  padding-left: 0;
  padding-right: 0;
}

/* Hero Refinement */
.hero {
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-body) 100%);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 4vw, 48px);
}

.hero-content {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
  padding-right: clamp(8px, 2vw, 24px);
}

.hero-content h1 {
  font-size: clamp(2.5rem, 3.8vw + 0.75rem, 4.25rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: clamp(16px, 2.5vw, 22px);
  max-width: none;
}

.hero-content .badge-light {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 7px 14px;
  margin-bottom: clamp(18px, 2.5vw, 24px);
}

.hero-content p {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: var(--section-gap);
  max-width: 95%;
  line-height: 1.7;
}

.hero-content p.hero-lead {
  font-family: var(--font-sans);
  font-size: clamp(0.875rem, 0.35vw + 0.82rem, 0.975rem);
  line-height: 1.65;
  color: #64748b;
  max-width: none;
  margin-bottom: clamp(28px, 3.5vw, 36px);
}

.hero-content p.hero-lead strong {
  color: #475569;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-actions .btn {
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 0.8rem;
}

.hero-card-wrapper {
  flex: 0 0 clamp(320px, 34vw, 420px);
  width: clamp(320px, 34vw, 420px);
  max-width: 100%;
  position: relative;
}

.hero-card {
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 16px 40px -12px rgba(15, 23, 42, 0.12);
  border: 1px solid var(--border-light);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.hero-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 4px 12px rgba(15, 23, 42, 0.06),
    0 24px 48px -16px rgba(15, 23, 42, 0.14);
  border-color: #cbd5e1;
}

/* Minimal hero card: logo + name + offer + CTA (API-driven; BK8 preferred) */
.hero-card--simple {
  padding: clamp(22px, 3vw, 28px) clamp(22px, 3vw, 26px);
}

.hero-card__brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.hero-card__brand-name {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: #020617;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

.hero-card__brand-name:empty {
  display: none;
}

.hero-card__headline-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: 0;
}

.hero-card__headline-row .hero-card__headline {
  flex: 1;
  min-width: 0;
}

.hero-card__kicker {
  font-size: 0.62rem;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 2px;
}

.hero-card--no-offer .hero-card__kicker {
  color: #94a3b8;
}

.hero-card--no-offer .hero-card__headline {
  color: #0f172a;
}

.hero-card__headline {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  line-height: 1.3;
}

.hero-card__dek {
  font-size: 0.75rem;
  line-height: 1.5;
  color: #94a3b8;
  margin: 0;
}

.hero-card__amount {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 700;
  color: #0f172a;
  margin: 4px 0 0;
  line-height: 1.25;
}

.hero-card--simple .claim-link {
  margin-bottom: 12px;
  margin-top: 4px;
}

.hero-card--simple .claim-link--visit {
  width: 100%;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  font-size: 0.875rem;
  text-transform: none;
  letter-spacing: 0.01em;
  font-weight: 700;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(51, 190, 179, 0.28);
}

.hero-card--simple .terms {
  margin: 0;
  font-size: 0.65rem;
  letter-spacing: 0.02em;
}

.hero-card--simple .claim-link--visit i {
  width: 18px;
  height: 18px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

/* Hero featured casino: light tile so dark logos + black wordmark read like the reference */
.card-logo-placeholder {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background: #ffffff;
  color: #0f172a;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.hero-card--simple .card-logo-placeholder {
  width: min(160px, 100%);
  height: 72px;
  min-height: 56px;
  align-self: flex-start;
}

.hero-card--simple .hero-card__headline-row .card-logo-placeholder {
  width: 48px;
  height: 48px;
  min-height: 48px;
  flex-shrink: 0;
  align-self: center;
}

.hero-card--simple .card-logo-placeholder.hero-logo--has-image {
  padding: 6px 8px;
}

.hero-card--simple .hero-card__headline-row .card-logo-placeholder.hero-logo--has-image {
  padding: 4px;
}

.hero-card--simple .card-logo-placeholder .hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.hero-card--simple .card-logo-placeholder.hero-logo--text {
  padding: 6px 8px;
  justify-content: flex-start;
}

.hero-card--simple .card-logo-placeholder .hero-logo-text {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 700;
  color: #020617;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: left;
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.35rem;
  color: #020617;
  background: #fffbeb;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid #fde68a;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.15);
}

.star-icon {
  color: #f59e0b;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.card-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.card-title {
  font-size: 1.75rem;
  font-family: var(--font-serif);
  font-weight: 700;
  color: #020617;
}

.card-subtitle {
  font-size: 0.75rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 32px;
  font-weight: 800;
  position: relative;
  z-index: 2;
}

.offer-box {
  position: relative;
  z-index: 2;
  background: linear-gradient(145deg, #f8fafc, #f1f5f9);
  border: 2px dashed rgba(51, 190, 179, 0.4);
  padding: 20px;
  text-align: center;
  border-radius: var(--radius-md);
  margin-bottom: 28px;
  transition: all 0.3s;
}

.offer-box:hover {
  border-style: solid;
  border-color: var(--primary);
  background: #f0fdfa;
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(51, 190, 179, 0.15);
}

.offer-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.offer-value {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--primary), #0284c7);
  -webkit-background-clip: text;
  color: transparent;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(2, 132, 199, 0.1);
}

.claim-link {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1rem;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  padding: 18px 24px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 25px rgba(51, 190, 179, 0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
}

.claim-link i {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  width: 20px;
  height: 20px;
  color: white;
}

.claim-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(51, 190, 179, 0.5);
  color: white;
  border: none;
}

.claim-link:hover i {
  transform: translateX(6px);
}

.terms {
  position: relative;
  z-index: 2;
  font-size: 0.7rem;
  color: #94a3b8;
  text-align: center;
  font-weight: 500;
}

/* Verticals - The Micro-interactive Grid */
.verticals {
  padding: var(--section-gap) 0;
  background: #ffffff;
}

.section-header {
  margin-bottom: var(--section-gap);
  max-width: var(--container-max-width);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.section-header.center {
  margin: 0 auto var(--section-gap);
  text-align: center;
}

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.vertical-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 40px;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease-out,
    box-shadow 0.25s ease-out,
    border-color 0.25s ease-out;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.vertical-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #cbd5e1;
}

.card-icon {
  margin-bottom: 28px;
  color: var(--primary);
  width: 48px;
  height: 48px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition:
    background 0.25s ease-out,
    color 0.25s ease-out,
    transform 0.25s ease-out;
}

.vertical-card:hover .card-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.05);
}

.vertical-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.vertical-card.large {
  grid-row: span 2;
}

.vertical-card--featured.vertical-card.large>p:first-of-type {
  margin-bottom: 6px;
}

.vertical-card__label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
  margin: 18px 0 10px !important;
}

.vertical-card__checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vertical-card__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.vertical-card__checklist li i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--primary);
  stroke-width: 3px;
}

.vertical-card__footnote {
  font-size: 0.78rem !important;
  font-style: italic;
  color: #94a3b8 !important;
  margin: 14px 0 0 !important;
  line-height: 1.5 !important;
}

.spacer {
  flex: 1;
}

.vertical-card.large .view-link {
  margin-top: 20px;
}

.view-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 36px;
}

.view-link i {
  width: 18px;
  height: 18px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.vertical-card:hover .view-link i {
  transform: translate(3px, -3px);
}

/* Homepage: editorial & criteria (matches verticals / tier tone) */
.home-intro {
  position: relative;
  padding: var(--section-gap) 0;
  border-bottom: 1px solid var(--border-light);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-body) 100%);
  overflow: hidden;
}

.home-intro::before {
  content: "";
  position: absolute;
  top: -28%;
  right: -6%;
  width: min(48vw, 440px);
  height: min(48vw, 440px);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(51, 190, 179, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.home-intro::after {
  content: none;
}

.home-intro .container {
  position: relative;
  z-index: 1;
}

.home-intro__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 4vw, 48px);
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.home-intro__col--head {
  flex: 1 1 0;
  min-width: 0;
  padding-right: clamp(8px, 2vw, 20px);
}

.home-intro__col--body {
  flex: 0 0 clamp(340px, 40vw, 500px);
  min-width: 0;
  max-width: 100%;
}

.home-intro__col--head .badge-light {
  display: inline-block;
  margin-bottom: clamp(14px, 2vw, 20px);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 7px 14px;
}

.home-intro__col--head h2 {
  margin: 0 0 clamp(14px, 2vw, 18px);
  max-width: none;
  font-size: clamp(1.9rem, 2.6vw + 0.55rem, 2.85rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.home-intro__dek {
  font-family: var(--font-sans);
  font-size: clamp(0.875rem, 0.35vw + 0.82rem, 0.975rem);
  font-weight: 400;
  color: #64748b;
  line-height: 1.65;
  margin: 0 0 clamp(20px, 2.5vw, 28px);
  max-width: none;
}

.home-intro__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-intro__pill {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  color: #0f172a;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 100px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-intro__pill:hover {
  border-color: rgba(51, 190, 179, 0.42);
  box-shadow:
    0 4px 14px rgba(15, 23, 42, 0.07),
    inset 0 0 0 1px rgba(51, 190, 179, 0.08);
  transform: translateY(-1px);
}

.home-intro__pill i {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.home-intro__card {
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  min-height: 0;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 16px 40px -12px rgba(15, 23, 42, 0.12);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.home-intro__card:hover {
  transform: translateY(-2px);
  border-color: #cbd5e1;
  box-shadow:
    0 4px 12px rgba(15, 23, 42, 0.06),
    0 24px 48px -16px rgba(15, 23, 42, 0.14);
}

.home-intro__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(51, 190, 179, 0.55) 0%, rgba(51, 190, 179, 0.12) 100%);
  pointer-events: none;
}

.home-intro__card-inner {
  position: relative;
  padding: clamp(22px, 3vw, 28px) clamp(22px, 3vw, 26px) clamp(20px, 2.5vw, 24px);
  flex: 0 0 auto;
}

.home-intro__quote-mark {
  position: absolute;
  left: clamp(18px, 2.8vw, 22px);
  top: clamp(14px, 2vw, 18px);
  font-family: var(--font-serif);
  font-size: 1.65rem;
  line-height: 0.5;
  color: rgba(51, 190, 179, 0.22);
  user-select: none;
  pointer-events: none;
  margin: 0;
}

.home-intro__lead {
  font-family: var(--font-sans);
  font-size: clamp(0.84rem, 0.25vw + 0.8rem, 0.92rem);
  font-weight: 400;
  line-height: 1.68;
  color: #64748b;
  margin: 0;
  position: relative;
  z-index: 1;
  max-width: none;
}

.home-intro__lead-kicker {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.2vw + 0.65rem, 1.15rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.45;
  color: #0f172a;
  margin: 0 0 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-light);
}

.home-intro__card-foot {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 12px 20px;
  padding: 14px clamp(22px, 3vw, 26px) 16px;
  flex: 0 0 auto;
  border-top: 1px solid var(--border-light);
  background: #f8fafc;
}

.home-intro__card-meta {
  font-size: 0.8rem;
  font-weight: 500;
  color: #64748b;
  letter-spacing: 0.02em;
  line-height: 1.58;
  min-width: 0;
  flex: 0 1 auto;
  max-width: 32rem;
}

@media (min-width: 1025px) {
  .home-intro__card-meta {
    flex: 1 1 12rem;
  }
}

.home-intro__card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--primary);
  font-family: var(--font-sans);
  flex-shrink: 0;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(51, 190, 179, 0.28);
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.home-intro__card-link:hover {
  color: #fff;
  background: var(--primary-hover);
  box-shadow: 0 4px 14px rgba(51, 190, 179, 0.35);
  transform: translateY(-1px);
}

.home-intro__card-link:hover i {
  transform: translateX(3px);
}

.home-intro__card-link i {
  width: 16px;
  height: 16px;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 640px) {
  .home-intro__card-inner {
    padding: 20px 18px 18px;
  }

  .home-intro__quote-mark {
    font-size: 1.45rem;
    top: 12px;
    left: 14px;
  }

  .home-intro__card-foot {
    flex-direction: column;
    align-items: stretch;
    padding: 14px 18px 16px;
    gap: 12px;
  }

  .home-intro__card-link {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .home-intro__wrap {
    flex-direction: column;
    align-items: stretch;
    gap: var(--section-gap);
  }

  .home-intro__col--head {
    padding-right: 0;
    text-align: center;
  }

  .home-intro__pills {
    justify-content: center;
  }

  .home-intro__col--body {
    flex: none;
    width: 100%;
  }

  .home-intro__card-foot {
    flex-direction: column;
    align-items: flex-start;
  }
}

.home-criteria {
  padding: var(--section-gap) 0;
  background: var(--bg-body);
  border-bottom: 1px solid var(--border);
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.criteria-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s ease-out,
    box-shadow 0.2s ease-out,
    border-color 0.2s ease-out;
}

.criteria-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #cbd5e1;
}

.criteria-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(51, 190, 179, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.criteria-card__icon i {
  width: 22px;
  height: 22px;
}

.criteria-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-sans);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: #020617;
}

.criteria-card p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 1100px) {
  .criteria-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Homepage BOC-style layout (scoped to .page-home) */
.page-home .hero-inner--text-only {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  max-width: var(--container-max-width);
}

.page-home .hero-inner--text-only .hero-content {
  flex: none;
  width: 100%;
  max-width: 100%;
  padding-right: 0;
}

.page-home .tier-one {
  background: var(--bg-card);
  border-top: none;
  padding-top: clamp(28px, 3.5vw, 40px);
}

.page-home .home-disclosure {
  padding: 20px 0;
  background: linear-gradient(180deg, #f0fdfa 0%, #ecfdf5 100%);
  border-top: 1px solid rgba(51, 190, 179, 0.22);
  border-bottom: 1px solid rgba(51, 190, 179, 0.22);
}

.page-home .home-disclosure .container {
  display: flex;
  justify-content: center;
}

.page-home .home-disclosure p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 10px 18px;
  max-width: var(--container-max-width);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #0f766e;
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(51, 190, 179, 0.18);
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(15, 118, 110, 0.06);
}

.page-home .home-disclosure p :is(i, svg) {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--primary);
}

.page-home .home-disclosure a {
  color: var(--primary);
  font-weight: 600;
}

.page-home .home-disclosure a:hover {
  color: var(--primary-hover);
}

.page-home .criteria-checklist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .criteria-checklist__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}

.page-home .criteria-checklist__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(51, 190, 179, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.page-home .criteria-checklist__icon i,
.page-home .criteria-checklist__icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.25;
}

.page-home .criteria-checklist__item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-sans);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--text-main);
}

.page-home .criteria-checklist__item p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.page-home .home-spotlight {
  padding: var(--section-gap) 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.page-home .home-spotlight__inner {
  display: block;
}

.page-home .home-spotlight .hero-card-wrapper {
  flex: none;
  width: 100%;
  max-width: none;
}

.page-home .hero-card--spotlight {
  padding: clamp(22px, 3vw, 32px) clamp(22px, 4vw, 40px);
}

.page-home .hero-card__spotlight {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(0, 1fr) minmax(180px, 240px);
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}

.page-home .hero-card__spotlight-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.page-home .hero-card__spotlight-brand-meta {
  min-width: 0;
}

.page-home .hero-card--spotlight .card-logo-placeholder {
  width: 64px;
  height: 64px;
  min-height: 64px;
  flex-shrink: 0;
  align-self: center;
}

.page-home .hero-card--spotlight .card-logo-placeholder.hero-logo--has-image {
  padding: 6px;
}

.page-home .hero-card--spotlight .card-logo-placeholder .hero-logo-img {
  object-position: center;
}

.page-home .hero-card__spotlight-offer {
  min-width: 0;
}

.page-home .hero-card--spotlight .hero-card__brand-block {
  margin-bottom: 0;
}

.page-home .hero-card--spotlight .hero-card__headline {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  margin-bottom: 6px;
}

.page-home .hero-card--spotlight .hero-card__dek {
  font-size: 0.82rem;
  max-width: 52ch;
}

.page-home .hero-card__spotlight-action {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.page-home .hero-card--spotlight .claim-link {
  margin: 0;
}

.page-home .hero-card--spotlight .claim-link--visit {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
}

.page-home .hero-card--spotlight .terms {
  text-align: center;
}

@media (max-width: 768px) {
  .page-home .hero-card__spotlight {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .page-home .hero-card__spotlight-brand {
    justify-content: center;
  }

  .page-home .hero-card__spotlight-offer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .page-home .hero-card--spotlight .hero-card__dek {
    max-width: none;
  }
}

.page-home .home-conclusion {
  padding: var(--section-gap) 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.page-home .home-conclusion__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  max-width: var(--container-max-width);
}

.page-home .home-conclusion__dek {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.page-home .home-intro__card-foot {
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .page-home .criteria-checklist {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .page-home .criteria-checklist {
    grid-template-columns: 1fr;
  }
}

.home-why {
  padding: var(--section-gap) 0;
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.home-why .why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.home-why .why-grid .vertical-card {
  height: 100%;
}

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

.top-providers {
  padding: var(--section-gap) 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

/* Tier One Refinement */
.tier-one {
  padding: var(--section-gap) 0;
  background: var(--bg-body);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

@media (max-width: 1024px) {
  .tier-list {
    gap: 16px;
  }
}

/* Homepage: reviews column + optional sticky BK8 offer (from API) */
.tier-one-layout {
  display: grid;
  gap: 32px;
  align-items: start;
  grid-template-columns: minmax(0, 1fr);
}

.tier-one-layout--with-sidebar {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
}

.tier-one-main {
  min-width: 0;
}

.tier-one-sidebar {
  position: sticky;
  top: var(--sticky-header-offset);
  z-index: 1;
}

.tier-one-sidebar__inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  box-shadow: var(--shadow-md);
  border-left: 3px solid rgba(51, 190, 179, 0.45);
}

.tier-one-sidebar__tag {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.tier-one-sidebar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  min-width: 0;
}

.tier-one-sidebar__logo-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  padding: 6px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.tier-one-sidebar__logo-wrap[hidden] {
  display: none !important;
}

.tier-one-sidebar__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tier-one-sidebar__name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: #020617;
  margin: 0;
  line-height: 1.2;
  flex: 1;
  min-width: 0;
}

.tier-one-sidebar__label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 8px;
}

.tier-one-sidebar__amount {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 16px;
  line-height: 1.35;
}

.tier-one-sidebar__terms {
  font-size: 0.72rem;
  color: var(--text-light);
  line-height: 1.45;
  margin: 0 0 18px;
}

.tier-one-sidebar .btn-block {
  width: 100%;
  text-align: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .tier-one-layout--with-sidebar {
    grid-template-columns: 1fr;
  }

  .tier-one-sidebar {
    position: static;
    order: -1;
  }
}

.filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: var(--section-gap);
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: white;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(29, 78, 216, 0.2);
}

.tier-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* center: rank, logo, and CTA align vertically with the tall middle column (was stretch + top-aligned logo) */
.tier-card {
  display: flex;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  gap: 32px;
  transition:
    transform 0.25s ease-out,
    box-shadow 0.25s ease-out,
    border-color 0.25s ease-out;
  box-shadow: var(--shadow-md);
}

.tier-card--casino .tier-info {
  flex: 2;
  min-width: 0;
}

.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: #cbd5e1;
}

/* Rank above logo: single column */
.tier-rank-logo-col {
  flex-shrink: 0;
  width: 140px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.tier-rank-wrap {
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 10px 12px;
  text-align: center;
  border-radius: 12px;
  background: linear-gradient(165deg, #ffffff 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-top: none;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
}

/* Metallic top-edge cap (sides/bottom use the normal border) */
.tier-rank-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: -1px;
  right: -1px;
  height: 3px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(90deg, #94a3b8, #cbd5e1, #e2e8f0, #cbd5e1, #94a3b8);
  z-index: 2;
  pointer-events: none;
}

.tier-rank-wrap::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  z-index: 2;
  pointer-events: none;
}

/* Single line: 1st, 2nd, … 5th (no duplicate 01) */
.tier-rank-ordinal {
  display: block;
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
  color: #475569;
  letter-spacing: 0.02em;
  text-align: center;
  position: relative;
  z-index: 1;
  text-transform: none;
}

/* Top 3: podium rank badges (restrained / editorial) */
.tier-rank-wrap--p1 {
  padding: 12px 14px;
  border-color: rgba(180, 148, 96, 0.42);
  background: linear-gradient(165deg, #fafaf9 0%, #f5f5f4 48%, #eeece8 100%);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
}

.tier-rank-wrap--p1::before {
  height: 3px;
  background: linear-gradient(90deg,
      #8a6420 0%,
      #b8892e 16%,
      #d4af37 32%,
      #f5e6a8 50%,
      #d4af37 68%,
      #b8892e 84%,
      #8a6420 100%);
  box-shadow: 0 1px 2px rgba(138, 100, 32, 0.28);
}

.tier-rank-wrap--p1 .tier-rank-ordinal {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #1c1917;
}

.tier-rank-wrap--p2 {
  padding: 12px 14px;
  border-color: rgba(113, 113, 122, 0.38);
  background: linear-gradient(165deg, #fafafa 0%, #f4f4f5 50%, #e4e4e7 100%);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.055);
}

.tier-rank-wrap--p2::before {
  height: 3px;
  background: linear-gradient(90deg,
      #71717a 0%,
      #a1a1aa 16%,
      #d4d4d8 32%,
      #f4f4f5 50%,
      #d4d4d8 68%,
      #a1a1aa 84%,
      #71717a 100%);
  box-shadow: 0 1px 2px rgba(113, 113, 122, 0.22);
}

.tier-rank-wrap--p2 .tier-rank-ordinal {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #3f3f46;
}

.tier-rank-wrap--p3 {
  padding: 12px 14px;
  border-color: rgba(120, 113, 108, 0.4);
  background: linear-gradient(165deg, #fafaf9 0%, #f5f0eb 52%, #ebe4dd 100%);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.055);
}

.tier-rank-wrap--p3::before {
  height: 3px;
  background: linear-gradient(90deg,
      #6b4226 0%,
      #9a6b4a 16%,
      #b8875a 32%,
      #e8c9a8 50%,
      #b8875a 68%,
      #9a6b4a 84%,
      #6b4226 100%);
  box-shadow: 0 1px 2px rgba(107, 66, 38, 0.24);
}

.tier-rank-wrap--p3 .tier-rank-ordinal {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #44403c;
}

/* Top 3: subtle whole-card accent */
.tier-card--podium {
  position: relative;
}

.tier-card--podium::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid transparent;
}

.tier-card--podium-1::before {
  border-color: rgba(197, 165, 114, 0.28);
  box-shadow: inset 0 0 0 1px rgba(245, 240, 230, 0.6);
}

.tier-card--podium-2::before {
  border-color: rgba(161, 161, 170, 0.35);
  box-shadow: inset 0 0 0 1px rgba(244, 244, 245, 0.65);
}

.tier-card--podium-3::before {
  border-color: rgba(160, 130, 110, 0.3);
  box-shadow: inset 0 0 0 1px rgba(245, 240, 235, 0.55);
}

.tier-rank-logo-col .tier-logo-col {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Premium unified rank + logo review panel (listing + tier casino cards) */
.review-rank-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 12px 12px 14px;
  border-radius: 14px;
  background: linear-gradient(165deg, #0c1424 0%, #1a2744 46%, #0f172a 100%);
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow:
    0 2px 8px rgba(15, 23, 42, 0.1),
    0 10px 28px rgba(15, 23, 42, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.2s ease;
}

.listing-card:hover .review-rank-panel,
.tier-card:hover .review-rank-panel {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.42);
  box-shadow:
    0 4px 12px rgba(15, 23, 42, 0.12),
    0 16px 36px rgba(15, 23, 42, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.review-rank-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  min-height: 22px;
}

.review-rank-panel__pick-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #1c1917;
  background: linear-gradient(135deg, #b8892e 0%, #f5e6a8 48%, #d4af37 100%);
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 1px 4px rgba(138, 100, 32, 0.28);
  line-height: 1.2;
}

.review-rank-panel__verified,
.review-rank-panel__verified-spacer {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.review-rank-panel__verified {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--success);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.92);
  color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.22);
}

.review-rank-panel__verified svg {
  width: 12px;
  height: 12px;
  stroke-width: 3;
}

.review-rank-panel__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 6px 4px 4px;
  border-radius: 10px;
  box-sizing: border-box;
}

.review-rank-panel__logo--mat-light {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 1px 3px rgba(15, 23, 42, 0.12);
}

.review-rank-panel__logo--mat-light .review-rank-panel__logo-img {
  filter: contrast(1.02);
}

.review-rank-panel__logo--mat-dark {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.review-rank-panel__logo-img {
  max-width: 88%;
  max-height: 54px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.review-rank-panel__logo-fallback {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  padding: 0 6px;
}

.review-rank-panel__logo-fallback--light {
  color: #475569;
}

.review-rank-panel__logo-fallback--dark {
  color: #f8fafc;
}

.review-rank-panel--p1 {
  border-color: rgba(212, 175, 55, 0.42);
}

.review-rank-panel--p1 .review-rank-panel__pick-badge {
  background: linear-gradient(135deg, #8a6420 0%, #f5e6a8 50%, #d4af37 100%);
}

.review-rank-panel--p2 {
  border-color: rgba(161, 161, 170, 0.38);
}

.review-rank-panel--p2 .review-rank-panel__pick-badge {
  color: #27272a;
  background: linear-gradient(135deg, #71717a 0%, #f4f4f5 50%, #d4d4d8 100%);
  box-shadow: 0 1px 4px rgba(113, 113, 122, 0.22);
}

.review-rank-panel--p3 {
  border-color: rgba(160, 130, 110, 0.38);
}

.review-rank-panel--p3 .review-rank-panel__pick-badge {
  color: #44403c;
  background: linear-gradient(135deg, #6b4226 0%, #e8c9a8 50%, #b8875a 100%);
  box-shadow: 0 1px 4px rgba(107, 66, 38, 0.22);
}

.review-rank-panel--default .review-rank-panel__pick-badge {
  color: #334155;
  background: linear-gradient(135deg, #e2e8f0 0%, #f8fafc 50%, #cbd5e1 100%);
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}

.tier-rank-logo-col .review-rank-panel {
  width: 100%;
}

.listing-card__review-panel {
  flex-shrink: 0;
  width: clamp(148px, 20vw, 176px);
}

.listing-card__review-panel .review-rank-panel {
  width: 100%;
}

.tier-logo {
  position: relative;
  width: 100%;
  height: 80px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  overflow: visible;
  box-shadow: var(--shadow-sm);
}

.tier-logo.dark {
  background: #0f172a;
  border-color: #0f172a;
}

.tier-logo.white {
  background: white;
  border-color: var(--border);
}

.tier-logo.abstract {
  background: linear-gradient(135deg, #1e293b, #020617);
  border: none;
}

/* Homepage top providers: mat from providerLogoMatIsDark(); do not use raw Strapi LogoStyle as .tier-logo.dark/.white */
.tier-card--provider .tier-logo--mat-light {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  border-color: #cbd5e1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 1px 2px rgba(15, 23, 42, 0.06);
}

.tier-card--provider .tier-logo--mat-light .tier-logo-img {
  filter: contrast(1.02);
}

.tier-card--provider .tier-logo--mat-dark {
  background: linear-gradient(165deg, #1e293b 0%, #0f172a 100%);
  border-color: #334155;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.tier-card--provider .tier-logo--mat-light .placeholder-text {
  color: #475569;
}

.tier-card--provider .tier-logo--mat-dark .placeholder-text {
  color: #f1f5f9;
}

.tier-logo>.tier-logo-img {
  display: block;
  max-width: 80%;
  max-height: 80%;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: auto;
}

.logo-abstract-icon {
  width: 36px;
  height: 36px;
  color: white;
  opacity: 0.9;
}

.placeholder-text {
  font-size: 0.75rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: white;
}

.text-dark {
  color: #0f172a;
}

.verified-icon-wrapper {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 26px;
  height: 26px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid white;
  color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.verified-icon-svg {
  width: 14px;
  height: 14px;
  stroke-width: 3.5px;
}

.tier-info {
  flex: 1.5;
  min-width: 0;
}

.info-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin-bottom: 8px;
}

.info-header h3 {
  font-size: 1.25rem;
  margin: 0;
  color: #020617;
}

.tier-card .info-header h3 {
  font-size: clamp(1.45rem, 2.35vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: #020617;
}

.tier-card .info-header {
  margin-bottom: 10px;
}

.tier-head-left .info-header {
  margin-bottom: 0;
  gap: 8px 10px;
}

/* Title left, rating stack beside it (no space-between: avoids huge middle gap) */
.tier-head-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 8px;
}

.tier-head-left {
  flex: 0 1 auto;
  min-width: 0;
}

.tier-head-right {
  flex: 0 0 auto;
}

.rating-row--trailing {
  align-items: flex-start;
  margin-bottom: 0;
}

.tier-head-right .stars {
  justify-content: flex-start;
}

.tier-head-right .rating-row--with-badge {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .tier-head-row {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-bottom: 8px;
  }

  .tier-head-right .rating-row--trailing {
    align-items: flex-start;
  }

  .tier-head-right .stars {
    justify-content: flex-start;
  }
}

.tier-editor-chip {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--primary-hover);
  background: rgba(51, 190, 179, 0.12);
  border: 1px solid rgba(51, 190, 179, 0.35);
  padding: 5px 11px;
  border-radius: 100px;
  font-family: var(--font-sans);
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.rating-row--stack {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
}

.tier-head-right .rating-row--stack {
  gap: 3px;
}

.rating-row--with-badge {
  margin-bottom: 18px;
}

.tier-head-right .rating-row--with-badge {
  margin-bottom: 0;
}

.tier-card .rating-row--stack .stars-meter--units {
  font-size: 1.125rem;
}

.stars {
  display: flex;
  gap: 3px;
  align-items: center;
}

/* Five discrete ★ cells; each star clips its own gold layer (e.g. 4.7 → 4 full + 5th at 70%) */
.stars-meter {
  font-family: var(--font-sans);
  vertical-align: middle;
}

.stars-meter--units {
  display: inline-flex;
  align-items: center;
  gap: 0.18em;
  line-height: 1;
}

.star-unit {
  position: relative;
  display: inline-block;
  width: 1em;
  min-width: 1em;
  height: 1em;
  line-height: 1;
  font-size: 1em;
  vertical-align: middle;
}

.star-unit__track {
  position: absolute;
  inset: 0;
  display: block;
  width: 1em;
  height: 1em;
  line-height: 1;
  color: #cbd5e1;
}

.star-unit__fill {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  /* Width set inline (0-100%). Never default to 100%: invalid/missing vars looked all full. */
  width: 0;
  height: 1em;
  color: #f59e0b;
  line-height: 1;
}

.star-unit__fill-inner {
  display: block;
  width: 1em;
  min-width: 1em;
  height: 1em;
  line-height: 1;
}

.rating .stars-meter--units {
  font-size: 0.95rem;
  gap: 0.16em;
}

.rating .star-unit__fill {
  color: #d4af37;
}

.rating-text {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text-main);
  font-family: var(--font-sans);
  font-style: normal;
}

.tier-card .rating-row--stack .rating-text {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  line-height: 1.2;
}

/* Provider card: title → stars + score + badge (single readable row) */
.tier-provider-head {
  margin-bottom: 14px;
}

.tier-provider-head .info-header {
  margin-bottom: 0;
}

.tier-provider-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(226, 232, 240, 0.85);
}

.tier-provider-meta .stars-meter--units {
  font-size: 1.1rem;
  gap: 0.2em;
}

.tier-rating-score {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.tier-rating-score .tier-rating-num {
  font-weight: 800;
  color: #020617;
}

.tier-rating-score .tier-rating-denom {
  font-weight: 600;
  color: #94a3b8;
}

.tier-rating-score--plain {
  font-weight: 700;
  color: var(--text-muted);
}

.tier-provider-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: 100px;
  font-family: var(--font-sans);
}

.tier-provider-badge--default {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
}

.tier-provider-badge--top {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #7dd3fc;
  color: #0369a1;
  box-shadow: 0 1px 2px rgba(14, 165, 233, 0.12);
}

.tier-provider-badge--innovator {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border: 1px solid #fecaca;
  color: #b91c1c;
}

@media (min-width: 560px) {
  .tier-provider-meta {
    justify-content: flex-start;
  }

  .tier-provider-meta .tier-provider-badge {
    margin-left: auto;
  }
}

/* Tablet: title + rating use full width; avoid empty space on the trailing side */
@media (min-width: 769px) and (max-width: 1024px) {
  .tier-card.tier-card--casino .tier-head-row {
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px 20px;
    width: 100%;
  }

  .tier-card.tier-card--casino .tier-head-left {
    flex: 1 1 auto;
    min-width: 0;
  }

  .tier-card.tier-card--casino .tier-head-right {
    flex: 0 0 auto;
    margin-left: auto;
  }

  .tier-card.tier-card--casino .tier-head-right .rating-row--stack {
    align-items: flex-end;
  }

  .tier-card.tier-card--casino .tier-head-right .stars {
    justify-content: flex-end;
  }

  .tier-card.tier-card--casino .tier-head-right .rating-text {
    text-align: right;
  }
}

.tier-payments-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  padding: 4px 0 6px;
  border-bottom: 1px solid var(--border-light);
}

.tier-payments-label {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tier-payments-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tier-payment-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  background: #f8fafc;
  border: 1px solid var(--border-light);
  padding: 5px 10px;
  border-radius: 100px;
}

.tier-payment-chip svg,
.tier-payment-chip i {
  width: 14px !important;
  height: 14px !important;
  min-width: 14px;
  min-height: 14px;
  flex-shrink: 0;
  display: block;
  opacity: 0.9;
}

.tier-pros-cons {
  margin-top: 0;
}

.tier-info>.pros-cons {
  margin-top: 6px;
}

.pros-cons-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}

.pros-cons-col-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.tier-pros-cons:not(.is-expanded) .tier-extra {
  display: none;
}

.tier-pros-cons.is-expanded .tier-extra {
  display: flex;
}

.tier-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 6px 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary-hover);
  font-family: var(--font-sans);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.tier-expand-btn:hover {
  color: var(--text-main);
}

.tier-expand-chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.tier-pros-cons.is-expanded .tier-expand-chevron {
  transform: rotate(180deg);
}

.pros-cons {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pros-cons li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 6px;
  line-height: 1.4;
}

/* Lucide replaces <i> with <svg>: size the icon node, not the removed <i> */
.pros-cons li>svg,
.pros-cons li>i {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
  min-height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  display: block;
}

.pros-cons li.pro>svg,
.pros-cons li.pro>i {
  color: var(--success);
}

.pros-cons li.con>svg,
.pros-cons li.con>i {
  color: var(--danger);
}

.tier-features {
  flex: 1;
  border-left: 1.5px dashed var(--border);
  padding-left: 40px;
}

.col-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.col-label.mt {
  margin-top: 24px;
}

.icon-row {
  display: flex;
  gap: 16px;
  color: var(--text-muted);
  align-items: center;
  flex-wrap: wrap;
}

.icon-row svg,
.icon-row i {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px;
  min-height: 22px;
  flex-shrink: 0;
  display: block;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.icon-row i:hover,
.icon-row svg:hover {
  opacity: 1;
  color: var(--primary);
}

/* Bonus / promotion column: fixed-width sidebar beside review body; sticks while the card is in view */
.tier-bonus {
  flex: 0 0 min(280px, 28vw);
  min-width: 0;
  max-width: 300px;
  position: sticky;
  top: var(--sticky-header-offset);
  align-self: flex-start;
  padding: 18px 18px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid rgba(51, 190, 179, 0.35);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06), 0 0 0 1px rgba(15, 23, 42, 0.03);
}

.tier-bonus--no-offer {
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
  border-style: dashed;
  border-color: rgba(148, 163, 184, 0.55);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.tier-bonus__top-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  border-radius: 12px;
  background: rgba(51, 190, 179, 0.12);
  border: 1px solid rgba(51, 190, 179, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.tier-bonus__top-icon--muted {
  background: rgba(148, 163, 184, 0.14);
  border-color: rgba(148, 163, 184, 0.4);
  color: #64748b;
}

/* Provider card: game portfolio tile (homepage) */
.tier-bonus__top-icon--provider {
  background: rgba(30, 58, 95, 0.09);
  border-color: rgba(30, 58, 95, 0.22);
  color: #1e3a5f;
}

.tier-bonus--provider {
  padding: 16px 16px 12px;
}

.tier-bonus--provider .bonus-amount {
  margin-bottom: 10px;
}

.bonus-actions .btn-dossier {
  flex: 1;
  min-width: 0;
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  padding: 11px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #0f172a;
  border-color: rgba(51, 190, 179, 0.35);
  background: rgba(248, 250, 252, 0.95);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.bonus-actions .btn-dossier:hover {
  transform: translateY(-1px);
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(51, 190, 179, 0.07);
}

.bonus-actions .btn-dossier i,
.bonus-actions .btn-dossier svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.tier-bonus__top-icon i,
.tier-bonus__top-icon svg {
  width: 22px;
  height: 22px;
}

.tier-bonus__eyebrow {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
  margin: 0 0 8px;
}

.tier-bonus__no-offer-msg {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #64748b;
  margin: 0 0 14px;
  text-align: center;
}

.bonus-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
  max-width: 100%;
}

.bonus-amount {
  font-size: clamp(0.95rem, 1.6vw, 1.25rem);
  font-weight: 800;
  margin: 0 0 14px;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.35;
  max-width: 100%;
  min-width: 0;
  white-space: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.tier-bonus .bonus-actions {
  width: 100%;
  max-width: 100%;
}

.bonus-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: stretch;
}

.bonus-actions--solo {
  margin-bottom: 0;
}

.bonus-actions .btn-visit-site {
  flex: 1;
  min-width: 0;
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  padding: 12px 16px;
  box-shadow: 0 4px 14px rgba(51, 190, 179, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bonus-actions .btn-visit-site i,
.bonus-actions .btn-visit-site svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.bonus-actions .btn-visit-site:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(51, 190, 179, 0.35);
}

.bonus-terms.terms,
p.bonus-terms {
  font-size: 0.68rem;
  color: var(--text-light);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
  margin: 0;
}

p.bonus-terms.bonus-terms--expanded {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
  text-align: left;
}

.info-btn {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  width: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
  cursor: pointer;
}

.info-btn:hover {
  background: rgba(51, 190, 179, 0.08);
  border-color: rgba(51, 190, 179, 0.45);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(51, 190, 179, 0.15);
}

.info-btn i,
.info-btn svg {
  width: 20px;
  height: 20px;
}

/* SEO Accordion */
.seo-accordion {
  padding: var(--section-gap) 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

.casinos-faq.seo-accordion,
.slots-faq.seo-accordion,
.providers-faq.seo-accordion,
.bonuses-faq.seo-accordion,
.guides-faq.seo-accordion,
.how-we-rate-faq.seo-accordion,
.about-faq.seo-accordion,
.privacy-faq.seo-accordion {
  border-top: 1px solid var(--border-light);
}

.seo-accordion .section-header {
  margin-bottom: var(--section-gap-sm);
}

.accordion {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion.accordion--two-cols {
  max-width: var(--container-max-width);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  align-items: start;
}

.accordion--two-cols .accordion-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

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

.accordion-item {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.accordion-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: #cbd5e1;
}

.accordion-item.active {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 32px;
  background: transparent;
  color: var(--text-main);
  text-align: left;
}

.accordion-title {
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-sans);
  flex: 1;
  min-width: 0;
}

/* Lucide renders <svg>; keep the hit area square or flex-shrink turns it into a tall oval */
.accordion-icon-wrap {
  box-sizing: border-box;
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  flex-shrink: 0;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--primary);
}

.accordion-header:hover .accordion-icon-wrap {
  background: var(--primary);
  color: white;
  transform: scale(1.05);
}

.accordion-item.active .accordion-icon-wrap {
  background: var(--primary);
  color: white;
}

.accordion-icon-wrap :is(svg, i.accordion-icon),
.accordion-icon {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  min-height: 18px;
  flex-shrink: 0;
  display: block;
  transition: transform 0.25s ease-out;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-out;
}

.accordion-item.active .accordion-content {
  grid-template-rows: 1fr;
}

.accordion-inner {
  overflow: hidden;
}

.accordion-inner p {
  padding: 0 32px 32px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.casinos-seo,
.providers-seo,
.bonuses-seo,
.slots-seo,
.guides-seo {
  padding: var(--section-gap) 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-top: 1px solid var(--border);
}

.slots-seo .container {
  max-width: var(--container-max-width);
}

/* Providers editorial: full site container width + aside (see `.providers-seo__grid`) */

/* Casinos directory editorial: full site width (section only used on /casinos) */
.casinos-seo .container {
  max-width: var(--container-max-width);
}

/* Bonuses page editorial SEO: full site width (section only used on /bonuses) */
.bonuses-seo .container {
  max-width: var(--container-max-width);
}

/* Guides hub editorial SEO: full site width (section only used on /guides) */
.guides-seo .container {
  max-width: var(--container-max-width);
}

/* Slots editorial: same max-width as global `.container` */
.page-slots .slots-seo .container {
  max-width: var(--container-max-width);
}

.casinos-seo h2,
.providers-seo h2,
.bonuses-seo h2,
.slots-seo h2,
.guides-seo h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: #020617;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.casinos-seo p,
.providers-seo p,
.providers-seo__main p,
.bonuses-seo p,
.slots-seo p,
.guides-seo p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.casinos-seo p:last-child,
.providers-seo__main p:last-child,
.bonuses-seo p:last-child,
.slots-seo>.container>p:last-child,
.guides-seo__intro p:last-child {
  margin-bottom: 0;
}

.providers-seo__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: start;
}

.providers-seo__main {
  min-width: 0;
}

.providers-seo__panel {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  padding: clamp(1.1rem, 2.5vw, 1.35rem);
  box-shadow: var(--shadow-sm);
}

.providers-seo__panel-kicker {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 0.35rem;
}

.providers-seo__panel-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.85rem;
  line-height: 1.25;
}

.providers-seo__panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.providers-seo__panel-list a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.providers-seo__panel-list a:hover {
  color: #1e3a5f;
}

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

/* Slots editorial block: intro + tip cards */
.page-slots .slots-seo__header {
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.page-slots .slots-seo__header h2 {
  margin-bottom: 0.85rem;
}

.page-slots .slots-seo__intro p {
  font-size: 0.9rem;
  line-height: 1.68;
  color: #475569;
  margin: 0 0 0.85rem;
}

.page-slots .slots-seo__intro p:last-child {
  margin-bottom: 0;
}

.page-slots .slots-seo__intro a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-slots .slots-seo__intro a:hover {
  color: #2a9d91;
}

.page-slots .slots-seo__tips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 2vw, 20px);
}

@media (min-width: 768px) {
  .page-slots .slots-seo__tips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.page-slots .slots-seo__tip {
  margin: 0;
  padding: 1.15rem 1.2rem 1.2rem 1.15rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  border-left: 4px solid var(--primary);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 10px 28px rgba(15, 23, 42, 0.06);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.page-slots .slots-seo__tip:hover {
  border-color: rgba(51, 190, 179, 0.45);
  box-shadow:
    0 4px 12px rgba(15, 23, 42, 0.06),
    0 16px 40px rgba(15, 23, 42, 0.08);
}

.page-slots .slots-seo__tip-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0.55rem;
}

.page-slots .slots-seo__tip-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(51, 190, 179, 0.14) 0%, rgba(51, 190, 179, 0.06) 100%);
  color: #0f766e;
  border: 1px solid rgba(51, 190, 179, 0.28);
}

.page-slots .slots-seo__tip-icon i,
.page-slots .slots-seo__tip-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.25px;
}

.page-slots .slots-seo__tip h3 {
  font-family: var(--font-sans, Poppins, system-ui, sans-serif);
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f172a;
  margin: 2px 0 0;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.page-slots .slots-seo__tip p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #64748b;
  margin: 0;
  padding-left: 52px;
}

@media (max-width: 480px) {
  .page-slots .slots-seo__tip p {
    padding-left: 0;
    margin-top: 0.35rem;
  }
}

/* Post & Sidebar Layout */
.post-layout {
  display: flex;
  gap: 64px;
  padding: 100px 32px;
  align-items: flex-start;
}

.post-content {
  flex: 1;
  max-width: var(--container-max-width);
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.post-date {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.post-lead {
  font-size: 1.25rem;
  font-family: var(--font-serif);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 48px;
  font-style: italic;
}

.post-body p {
  margin-bottom: 24px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-main);
}

.post-body h2 {
  font-size: 2rem;
  margin: 48px 0 24px;
}

.post-body h3 {
  font-size: 1.5rem;
  margin: 32px 0 16px;
  font-family: var(--font-serif);
}

.post-body blockquote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 600;
  color: var(--primary);
  padding-left: 24px;
  border-left: 4px solid var(--primary);
  margin: 48px 0;
  line-height: 1.5;
}

.sidebar {
  flex: 0 0 320px;
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hook-widget {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 32px;
  border-radius: var(--radius-lg);
  color: white;
  text-align: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  border: 1px solid #334155;
}

.hook-widget::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: var(--primary);
  filter: blur(40px);
  opacity: 0.5;
  border-radius: 50%;
}

.hook-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #60a5fa;
}

.hook-widget h3 {
  color: white;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.hook-widget p {
  color: #cbd5e1;
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.hook-btn {
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
}

.hook-btn i {
  transition: transform 0.3s;
}

.hook-btn:hover i {
  transform: translateX(4px);
}

.hook-terms {
  display: block;
  font-size: 0.65rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sidebar-widget h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
  color: #020617;
}

.trending-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trending-list li a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.3s;
}

.trending-list li a:hover {
  color: var(--primary);
}

/* Casinos directory page */
.casinos-page {
  background: #fafafa;
}

.casinos-hero {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-body) 100%);
  border-bottom: 1px solid var(--border-light);
}

.casinos-hero__inner {
  max-width: var(--container-max-width);
}

.casinos-hero__content {
  min-width: 0;
}

.casinos-hero__kicker {
  margin: 0 0 clamp(14px, 2vw, 20px);
}

.casinos-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.15rem, 3.8vw + 0.5rem, 3.35rem);
  font-weight: var(--heading-weight);
  line-height: 1.3;
  letter-spacing: -0.025em;
  color: #020617;
  margin: 0 0 clamp(16px, 2vw, 22px);
}

.casinos-hero__title em {
  font-style: normal;
  color: var(--primary);
}

.casinos-hero__desc {
  font-size: clamp(0.8125rem, 0.25vw + 0.78rem, 0.9rem);
  line-height: 1.62;
  color: #64748b;
  margin: 0;
  max-width: none;
}

.casinos-hero__desc a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.casinos-hero__desc a:hover {
  color: #1e3a5f;
}

.casinos-hero__pills {
  margin-top: clamp(20px, 2.5vw, 28px);
}

/* Casinos listing: filter drawer toggle (hidden on desktop) */

.listing-filter-toolbar {
  display: none;
  box-sizing: border-box;
  padding-top: 0;
  padding-bottom: clamp(16px, 2.5vw, 24px);
  padding-left: var(--bc-inline-padding-x);
  padding-right: var(--bc-inline-padding-x-end);
  margin-top: calc(-1 * clamp(8px, 1.5vw, 16px));
}

.listing-filter-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
  margin-top: 0.35rem;
  padding: 10px 16px;
  border-radius: 100px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
}

.listing-filter-toggle i,
.listing-filter-toggle svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.listing-filter-toggle:hover {
  color: #0f766e;
  border-color: rgba(20, 184, 166, 0.45);
  background: rgba(20, 184, 166, 0.06);
}

.listing-filter-toggle:focus-visible {
  outline: 2px solid #14b8a6;
  outline-offset: 2px;
}

.listing-filter-backdrop {
  display: none;
}

.listing-filters-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.listing-filters-card__head .filter-title {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}

.listing-filter-close {
  display: none;
  flex-shrink: 0;
}

/* Listing Layout (casinos.html): single column in DOM = title → filters → cards; grid on wide screens = sidebar | header+cards */
.listing-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 40px);
  padding: clamp(32px, 4vw, 48px) var(--bc-inline-padding-x-end) clamp(72px, 8vw, 100px) var(--bc-inline-padding-x);
  align-items: start;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

@media (min-width: 1025px) {
  .listing-layout {
    grid-template-columns: 250px 1fr;
    grid-template-rows: auto;
    column-gap: 48px;
    row-gap: 0;
  }

  .listing-sidebar {
    grid-column: 1;
    grid-row: 1;
  }

  .listing-main {
    grid-column: 2;
    grid-row: 1;
  }

  body.page-casinos .listing-filter-backdrop {
    display: none !important;
  }
}

.listing-sidebar {
  position: sticky;
  top: 120px;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

/* Casinos directory: filters wrapped so tablet grid does not fragment the heading */
.listing-filters-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.listing-filters-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.listing-filters-grid .filter-group {
  margin-bottom: 0;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid #f1f5f9;
}

.listing-filters-grid .filter-group:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.filter-title {
  font-size: 1.25rem;
  font-family: var(--font-serif);
  margin: 0 0 20px;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-align: left;
}

.filter-group {
  margin-bottom: 32px;
}

.filter-heading {
  font-size: 0.65rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: block;
}

/* Custom Checkbox & Radio */
.custom-checkbox,
.custom-radio {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 14px;
  position: relative;
}

.custom-checkbox input,
.custom-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.filter-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s;
}

.custom-checkbox input:checked~.filter-label,
.custom-radio input:checked~.filter-label {
  color: #020617;
  font-weight: 600;
}

.checkmark {
  width: 16px;
  height: 16px;
  border: 1.5px solid #cbd5e1;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  transition: all 0.2s;
  flex-shrink: 0;
}

.custom-checkbox:hover .checkmark {
  border-color: var(--primary);
}

.custom-checkbox input:checked~.checkmark {
  background: var(--primary);
  border-color: var(--primary);
}

.custom-checkbox input:checked~.checkmark::after {
  content: '';
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}

.radiomark {
  width: 16px;
  height: 16px;
  border: 1.5px solid #cbd5e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  transition: all 0.2s;
  flex-shrink: 0;
}

.custom-radio:hover .radiomark {
  border-color: var(--primary);
}

.custom-radio input:checked~.radiomark {
  border-color: var(--primary);
  border-width: 4px;
}

.guarantee-box {
  background: #f8fafc;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.guarantee-icon {
  width: 32px;
  height: 32px;
  background: white;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.guarantee-icon i {
  width: 16px;
  height: 16px;
}

.guarantee-box h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #0f172a;
}

.guarantee-box p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Listing Main */
.listing-main {
  flex: 1;
  min-width: 0;
  scroll-margin-top: 120px;
}

.listing-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.listing-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 26px 28px;
  display: flex;
  gap: clamp(20px, 3vw, 32px);
  align-items: center;
  transition: box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s, border-color 0.2s;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.listing-card:hover {
  box-shadow: 0 12px 40px -12px rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
  border-color: rgba(51, 190, 179, 0.35);
}

.card-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

.card-logo-area {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: 1px solid var(--border-light);
}

.casino-logo-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid #e2e8f0;
  text-align: center;
}

.luxury-gold {
  background: linear-gradient(135deg, #d4af37, #f3e5ab, #aa8623);
  border-color: #fceea7;
  color: #443000;
}

.luxury-dark {
  background: #0f172a;
  border-color: #334155;
}

.luxury-black {
  background: #000000;
  border-color: #1a1a1a;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.1;
  display: inline-block;
  padding: 0 4px;
}

.logo-text.gold {
  color: #d4af37;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.card-content-area {
  flex: 1;
}

.card-top {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.casino-name {
  font-size: 1.6rem;
  font-family: var(--font-serif);
  margin: 0;
  color: #020617;
  font-weight: 700;
}

.badge-sm {
  font-size: 0.55rem;
  padding: 4px 10px;
  border-radius: 12px;
  background: #e2e8f0;
  color: #475569;
  font-family: var(--font-sans);
  letter-spacing: 0.05em;
  font-weight: 700;
}

.rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #020617;
}

.rating svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.rating svg.fill {
  fill: #d4af37;
  color: #d4af37;
  stroke: #d4af37;
}

.rating svg.half {
  fill: #d4af37;
  color: #d4af37;
  stroke: #d4af37;
}

.rating svg.empty {
  fill: none;
  color: #cbd5e1;
  stroke: #cbd5e1;
}

.card-stats {
  display: flex;
  gap: clamp(8px, 1.5vw, 18px);
  align-items: flex-start;
  flex-wrap: nowrap;
  width: 100%;
}

.stat-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1 1 0;
  max-width: none;
}

.stat-label-row {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
}

.stat-label-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  color: #94a3b8;
  opacity: 0.95;
}

.stat-label-icon svg {
  width: 12px;
  height: 12px;
}

.stat-col--bonus .stat-label-row .stat-label {
  letter-spacing: 0.07em;
  font-size: 0.52rem;
}

.stat-label {
  font-size: 0.56rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-sans);
  line-height: 1.2;
}

.stat-value {
  font-size: 0.8rem;
  font-weight: 600;
  color: #020617;
  font-family: var(--font-sans);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.stat-value.primary {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: -0.02em;
}

.stat-value--muted {
  color: #94a3b8;
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.01em;
}

.card-action-area {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.5vw, 20px);
  align-items: center;
  min-width: 132px;
  border-left: 1px solid var(--border-light);
  padding-left: clamp(22px, 2.5vw, 30px);
}

.card-action-area .btn {
  padding: 11px 18px;
  font-size: 0.78rem;
  border-radius: 10px;
}

.listing-visit-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 12px rgba(51, 190, 179, 0.22);
}

.listing-visit-btn i,
.listing-visit-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.card-action-area .read-review-link {
  margin-top: 2px;
  padding: 6px 4px;
}

.read-review-link {
  font-size: 0.68rem;
  font-weight: 700;
  color: #475569;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
  font-family: var(--font-sans);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.read-review-link i,
.read-review-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.read-review-link:hover {
  color: var(--primary);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 48px;
  margin-top: 48px;
  border-top: 1px solid var(--border-light);
}

.pagination a.prev,
.pagination a.next {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.pagination a.prev i,
.pagination a.next i {
  width: 16px;
  height: 16px;
}

.pagination a.prev:not(.disabled):hover,
.pagination a.next:not(.disabled):hover {
  color: var(--primary);
}

.pagination a.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.page-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-numbers a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  color: #475569;
  font-weight: 500;
  font-size: 0.85rem;
  transition: background 0.3s, color 0.3s;
}

.page-numbers a:hover {
  background: #f1f5f9;
}

.page-numbers a.active {
  background: var(--primary);
  color: white;
  font-weight: 600;
}

.page-numbers .ellipsis {
  color: #94a3b8;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 0 4px;
}

@media (max-width: 1024px) {
  body.page-casinos.listing-filter-open {
    overflow: hidden;
  }

  body.page-casinos .listing-filter-toolbar {
    display: block;
  }

  body.page-casinos .listing-filter-toolbar .listing-filter-toggle {
    display: inline-flex;
    margin-top: 0;
  }

  body.page-casinos .listing-filter-close {
    display: flex;
  }

  body.page-casinos .listing-filter-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 99980;
    background: rgba(15, 23, 42, 0.42);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease;
  }

  body.page-casinos.listing-filter-open .listing-filter-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.page-casinos .listing-sidebar.listing-filter-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(336px, 90vw);
    max-width: 100%;
    z-index: 99990;
    margin: 0;
    padding:
      max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
    background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
    box-shadow: 8px 0 32px rgba(15, 23, 42, 0.14);
    transform: translateX(-105%);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    flex-direction: column;
    gap: 16px;
  }

  body.page-casinos .listing-sidebar.listing-filter-drawer.is-open {
    transform: translateX(0);
  }

  body.page-casinos .listing-filter-drawer .listing-filters-card {
    flex: 0 0 auto;
  }

  body.page-casinos .listing-filter-drawer .listing-filters-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  body.page-casinos .listing-filter-drawer .listing-filters-grid .filter-group {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }

  body.page-casinos .listing-filter-drawer .listing-filters-grid .filter-group:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }

  body.page-casinos .listing-filter-drawer .guarantee-box {
    flex: 0 0 auto;
    max-width: none;
    margin: 0;
    text-align: left;
  }

  body.page-casinos .listing-filter-drawer .guarantee-box .guarantee-icon {
    margin-left: 0;
    margin-right: 0;
  }

  .listing-layout {
    grid-template-columns: 1fr;
    padding: 40px clamp(16px, 4vw, 24px) 72px;
  }

  .listing-sidebar,
  .listing-main {
    grid-column: auto;
    grid-row: auto;
  }

  body.page-casinos .listing-sidebar.listing-filter-drawer {
    grid-row: auto;
    width: min(336px, 90vw);
    margin-bottom: 0;
  }

  .listing-sidebar {
    flex: none;
    width: 100%;
    position: static;
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 3vw, 28px);
    margin-bottom: clamp(28px, 4vw, 40px);
  }

  .listing-filters-card {
    padding: clamp(20px, 3vw, 28px);
  }

  .listing-filters-card .filter-title {
    margin-bottom: clamp(20px, 3vw, 28px);
  }

  .listing-filters-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 28px;
    align-items: start;
  }

  .listing-filters-grid .filter-group {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }

  .listing-filters-grid .filter-group:not(:last-child) {
    border-right: 1px solid #f1f5f9;
    padding-right: clamp(16px, 3vw, 24px);
    margin-right: 0;
  }

  .listing-sidebar .guarantee-box {
    text-align: center;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  }

  .listing-sidebar .guarantee-box .guarantee-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .listing-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 18px;
    padding: clamp(20px, 3vw, 28px);
  }

  .listing-card__review-panel {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .card-top {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .card-title-row {
    justify-content: center;
  }

  .rating {
    justify-content: center;
  }

  .card-stats {
    justify-content: center;
    flex-wrap: nowrap;
    gap: clamp(8px, 2vw, 16px);
    max-width: 100%;
  }

  .card-action-area {
    border-left: none;
    border-top: 1px solid var(--border-light);
    padding-left: 0;
    padding-top: 20px;
    min-width: 100%;
    gap: clamp(18px, 3vw, 22px);
  }
}

/* Below ~900px the three filter columns get cramped - stack with dividers */
@media (max-width: 900px) {
  .listing-filters-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .listing-filters-grid .filter-group:not(:last-child) {
    border-right: none;
    padding-right: 0 !important;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .listing-filters-grid .filter-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {

  body.page-casinos .listing-sidebar.listing-filter-drawer,
  body.page-casinos .listing-filter-backdrop {
    transition: none !important;
  }
}

/* Casinos directory: two cards per row from 768px up to tablet/laptop */
@media (min-width: 768px) and (max-width: 1024px) {
  body.page-casinos .listing-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 2.5vw, 24px);
    align-items: stretch;
  }

  body.page-casinos .listing-card {
    min-width: 0;
    height: 100%;
  }
}

@media (max-width: 768px) {
  .post-layout {
    flex-direction: column;
  }

  .sidebar {
    flex: none;
    width: 100%;
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  /* Casinos directory - phones & small tablets */
  body.page-casinos .listing-layout {
    padding-top: 28px;
    padding-bottom: 56px;
  }

  body.page-casinos .listing-sidebar {
    flex-direction: column;
    gap: 24px;
  }

  body.page-casinos .filter-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  body.page-casinos .guarantee-box {
    padding: 22px 20px;
    max-width: none;
  }

  body.page-casinos .listing-card {
    gap: 20px;
    padding: 20px 18px;
  }

  body.page-casinos .listing-card .card-stats {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
    text-align: center;
  }

  body.page-casinos .listing-card .stat-col {
    max-width: none;
    flex: 1 1 0;
    min-width: 0;
    padding: 10px 4px 0;
    border-bottom: none;
  }

  body.page-casinos .listing-card .stat-label-row {
    justify-content: center;
    flex-wrap: wrap;
  }

  body.page-casinos .listing-card .stat-col:last-child {
    padding-bottom: 0;
  }

  body.page-casinos .listing-card .card-action-area .btn {
    width: 100%;
    max-width: none;
  }

  body.page-casinos .casinos-seo .container {
    padding-inline: clamp(16px, 4vw, 24px);
  }
}

@media (max-width: 640px) {
  body.page-casinos .pagination {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding-top: 36px;
    margin-top: 36px;
  }

  body.page-casinos .pagination .page-numbers {
    flex-wrap: wrap;
    justify-content: center;
    order: -1;
  }

  body.page-casinos .pagination a.prev,
  body.page-casinos .pagination a.next {
    justify-content: center;
  }
}

/* Enhanced Footer */
.footer {
  padding: 100px 0 40px;
  background: #0f172a;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
}

.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: white;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 0.95rem;
  max-width: 320px;
  line-height: 1.7;
}

.footer-links h4,
.footer-social h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  color: white;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links a {
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-links a:hover {
  color: #60a5fa;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1e293b;
  border: 1px solid #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icons a:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
}

.social-icons i {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.bottom-badges {
  display: flex;
  gap: 12px;
}

.small-badge {
  background: #1e293b;
  border: 1px solid #334155;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  color: #cbd5e1;
  font-weight: 700;
}

/* Trust band — compact editorial stats (footer) */
.trust-band {
  width: 100%;
  background: linear-gradient(180deg, rgba(51, 190, 179, 0.07) 0%, var(--bg-body) 100%);
  border-top: 2px solid var(--primary);
  border-bottom: 1px solid var(--border);
}

.trust-band__inner {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0 0.75rem;
  width: 100%;
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding: 0.85rem clamp(12px, 2vw, 16px) 0.75rem;
}

.trust-band__col {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 0;
}

.trust-band__stat,
.trust-band__feature {
  margin: 0;
}

.trust-band__stat {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.3rem 0.35rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(51, 190, 179, 0.18);
  font-size: 0.6875rem;
  line-height: 1.35;
}

.trust-band__stat strong {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary-hover);
}

.trust-band__stat span {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 600;
}

.trust-band__feature {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-muted);
}

.trust-band__feature span {
  min-width: 0;
}

.trust-band__feature :is(i, svg) {
  width: 0.8rem;
  height: 0.8rem;
  flex-shrink: 0;
  color: var(--primary);
  stroke-width: 2.25;
}

.site-footer-inlined>site-trust-band {
  display: block;
}

.site-footer-inlined>site-trust-band+.footer.footer-light {
  border-top: none;
}

@media (max-width: 900px) {
  .trust-band__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 0.85rem;
  }
}

@media (max-width: 640px) {
  .trust-band__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-block: 0.75rem;
    padding-inline: clamp(12px, 3vw, 16px);
    row-gap: 0.75rem;
  }
}

/* Light footer (hub + legal pages) — kept in base bundle for all pages */
.footer.footer-light {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(48px, 6vw, 72px) 0 clamp(28px, 3.5vw, 40px);
  border-top: 1px solid #e2e8f0;
}

.footer-grid-4 {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

.footer-brand-light .fbl-title {
  margin-bottom: 20px;
}

.footer-brand-light .site-logo--footer {
  display: block;
  height: 44px;
  width: auto;
}

.footer-brand-light p {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.65;
  max-width: 22rem;
  margin: 0;
}

.footer-col h4 {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #334155;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col a {
  font-size: 0.875rem;
  font-weight: 450;
  color: #64748b;
  transition: color 0.15s ease;
  text-decoration: none;
}

.footer-col a:hover {
  color: #0f172a;
}

.footer-col a.text-blue {
  color: var(--primary);
  font-weight: 500;
}

.footer-col a.text-blue:hover {
  color: var(--primary-hover);
}

.footer-rg-banner {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: clamp(32px, 4vw, 48px);
  padding: 1rem 1.25rem;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, var(--bg-body) 100%);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.footer-rg-banner__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-sm);
  background: rgba(51, 190, 179, 0.12);
  color: var(--primary);
  line-height: 0;
}

.footer-rg-banner__icon i {
  width: 18px;
  height: 18px;
}

.footer-rg-banner__text p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.footer-rg-banner__text strong {
  color: var(--text-main);
  font-weight: 600;
}

.footer-rg-banner__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.5rem;
  margin-top: 0.5rem !important;
  font-size: 0.8125rem;
}

.footer-rg-banner__links a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.footer-rg-banner__links a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.footer-rg-banner__links span {
  color: var(--text-light);
  user-select: none;
}

.footer-meta {
  margin-top: clamp(40px, 5vw, 56px);
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid #e2e8f0;
}

.footer.footer-light .footer-disclosure {
  margin: 0;
  padding: 0;
  border: none;
}

.footer.footer-light .footer-disclosure p {
  margin: 0;
  max-width: none;
  text-align: left;
  font-size: 0.6875rem;
  line-height: 1.8;
  color: #94a3b8;
}

.footer.footer-light .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #f1f5f9;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: normal;
}

.footer.footer-light .footer-bottom__copy {
  margin: 0;
  font-size: 0.8125rem;
  color: #64748b;
}

.footer.footer-light .footer-bottom__disclaimer {
  margin: 0;
  font-size: 0.8125rem;
  color: #94a3b8;
}

.footer-disclosure {
  margin-top: clamp(28px, 3vw, 36px);
  padding-top: clamp(16px, 2vw, 20px);
  border-top: 1px solid var(--border);
}

.footer-disclosure p {
  margin: 0 auto;
  max-width: var(--container-max-width);
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-muted);
  text-align: center;
}

@media (max-width: 1024px) and (min-width: 641px) {
  .footer-grid-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px 28px;
  }

  .footer-brand-light {
    grid-column: 1 / -1;
  }

  .footer-brand-light p {
    max-width: 40rem;
  }
}

@media (max-width: 640px) {
  .footer-grid-4 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand-light {
    grid-column: auto;
  }

  .footer-brand-light p {
    max-width: none;
  }

  .footer.footer-light .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.375rem;
  }

  .footer-rg-banner {
    align-items: center;
  }
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
  pointer-events: none;
}

.scroll-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-to-top:hover {
  background: var(--primary-hover);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(29, 78, 216, 0.4);
}

/* Section hooks: content visible immediately (no scroll-triggered hide/show). */
.reveal,
.reveal.active {
  opacity: 1;
  transform: none;
}

.delay-100,
.delay-200,
.delay-300,
.delay-400,
.delay-500,
.delay-600,
.delay-700,
.delay-800 {
  transition-delay: 0s;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 48px;
  }

  .hero-content {
    margin: 0 auto;
    max-width: var(--container-max-width);
    padding-right: 0;
  }

  .hero-content h1 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-content p {
    margin: 0 auto 32px;
  }

  .hero-content p.hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-card-wrapper {
    flex: none;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .hero-card {
    transform: none;
  }

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

  .vertical-card.large {
    grid-column: span 2;
    grid-row: auto;
  }

  .tier-card {
    flex-wrap: wrap;
    gap: 20px;
    padding: 22px 20px;
  }

  .tier-rank-logo-col {
    width: 120px;
  }

  .tier-bonus,
  .tier-features {
    border-left: none;
    padding-left: 0;
  }

  .tier-bonus {
    position: static;
    align-self: stretch;
    flex: 1 1 100%;
    max-width: none;
    width: 100%;
    margin-left: 0;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px 18px;
  }

  .pros-cons-grid-2col {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}

/* ≤1024px: horizontal nav + 9 links + CTA does not fit - use hamburger drawer (GET BONUS stays until 768px) */
@media (max-width: 1024px) {

  /* JS sets --app-vh from visualViewport.height so fixed overlays match the visible screen */
  :root {
    --app-vh: 100vh;
    --mobile-nav-pad-y: max(20px, env(safe-area-inset-top, 0px));
    --mobile-nav-pad-y-end: max(24px, env(safe-area-inset-bottom, 0px));
    --mobile-nav-section-gap: 1.5rem;
    --mobile-nav-link-gap: 12px;
  }

  /* Override desktop `.main-nav ul { gap: 36px }` inside the drawer */
  .main-nav ul {
    flex-direction: column;
    gap: var(--mobile-nav-link-gap);
  }

  body.mobile-menu-open site-header,
  body.mobile-menu-open .header,
  body.mobile-menu-open .header-inner {
    overflow: visible;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-nav-panel__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    grid-area: navtop;
    flex-shrink: 0;
    padding-top: 0.35rem;
    padding-bottom: calc(var(--mobile-nav-section-gap) + 0.25rem);
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
    position: relative;
    z-index: 1;
  }

  .mobile-nav-panel__brand {
    display: flex;
    align-items: center;
    line-height: 0;
    text-decoration: none;
  }

  .mobile-nav-panel__logo {
    display: block;
    height: clamp(24px, 6svh, 34px);
    width: auto;
    max-width: min(108px, 44vw);
    object-fit: contain;
    object-position: left center;
  }

  .mobile-nav-close {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: var(--app-vh, 100svh);
    max-height: var(--app-vh, 100svh);
    z-index: 100000;
    display: none;
    grid-template-rows: auto minmax(0, 1fr) auto;
    grid-template-areas:
      "navtop"
      "navlinks"
      "navfoot";
    box-sizing: border-box;
    margin: 0;
    max-width: none;
    padding:
      var(--mobile-nav-pad-y) var(--bc-inline-padding-x-end) var(--mobile-nav-pad-y-end) var(--bc-inline-padding-x);
    background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 52%, #eef2f7 100%);
    box-shadow: -20px 0 48px rgba(15, 23, 42, 0.12);
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  body.mobile-menu-open .header {
    z-index: 100010;
  }

  body.mobile-menu-open .main-nav {
    display: grid;
  }

  body.mobile-menu-open .main-nav.is-slide-in {
    transform: translateX(0);
  }

  /* Bar controls sit above page content but below the full-screen drawer; hide hamburger (drawer has close) */
  body.mobile-menu-open .header .logo,
  body.mobile-menu-open .header .header-actions {
    position: relative;
    z-index: 0;
    pointer-events: none;
  }

  body.mobile-menu-open .mobile-menu-btn {
    display: none !important;
  }

  body.mobile-menu-open .header-actions .header-bonus-btn {
    visibility: hidden;
  }

  .main-nav ul.main-nav__list {
    grid-area: navlinks;
    align-self: start;
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    max-height: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: var(--mobile-nav-link-gap);
    list-style: none;
    margin: 0;
    padding: 1.25rem 0 1.75rem;
    overflow: visible;
  }

  .main-nav ul.main-nav__list li {
    margin: 0;
    flex: 0 0 auto;
  }

  .main-nav ul.main-nav__list a {
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 15px 22px;
    border-radius: 100px;
    border: none;
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.01em;
    text-transform: none;
    color: #334155;
    text-decoration: none;
    transition:
      color 0.15s ease,
      background 0.15s ease;
  }

  .main-nav ul.main-nav__list a::after {
    display: none;
  }

  .main-nav ul.main-nav__list a:hover {
    color: #0f172a;
    background: rgba(15, 23, 42, 0.04);
  }

  .main-nav ul.main-nav__list a:focus-visible {
    outline: 2px solid #14b8a6;
    outline-offset: 2px;
  }

  .main-nav ul.main-nav__list a.active {
    color: #fff;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary, #33beb3) 0%, #2aa89f 100%);
    box-shadow: 0 2px 10px rgba(51, 190, 179, 0.28);
  }

  .main-nav__dropdown-trigger,
  .main-nav__dropdown-label {
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 15px 22px;
    border-radius: 100px;
    font-size: 1.0625rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    text-align: left;
  }

  .main-nav__item--dropdown.active .main-nav__dropdown-trigger,
  .main-nav__item--dropdown.active .main-nav__dropdown-label {
    color: #fff;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary, #33beb3) 0%, #2aa89f 100%);
    box-shadow: 0 2px 10px rgba(51, 190, 179, 0.28);
  }

  .main-nav__dropdown {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    position: static;
    transform: none;
    min-width: 0;
    margin: 0.25rem 0 0.35rem;
    padding: 0.15rem 0 0.15rem 0.75rem;
    border: none;
    border-left: 2px solid rgba(51, 190, 179, 0.35);
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav__dropdown::before,
  .main-nav__dropdown::after {
    display: none;
  }

  .main-nav__dropdown-trigger::after,
  .main-nav__dropdown-label::after {
    display: none;
  }

  .main-nav__item--dropdown:not(.is-open) .main-nav__dropdown {
    display: none;
  }

  .main-nav__item--dropdown.is-open .main-nav__dropdown,
  .main-nav__item--dropdown:focus-within .main-nav__dropdown {
    display: block;
  }

  .main-nav__dropdown a {
    padding: 0.65rem 0.875rem;
    margin: 0;
    border-radius: 100px;
    font-size: 0.975rem;
  }

  .mobile-nav-panel__foot {
    display: block;
    grid-area: navfoot;
    flex-shrink: 0;
    padding-top: calc(var(--mobile-nav-section-gap) + 0.25rem);
    margin-top: 0.5rem;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    position: relative;
    z-index: 1;
  }

  .main-nav .mobile-nav-cta {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.2;
  }

  .main-nav .mobile-nav-cta:hover,
  .main-nav .mobile-nav-cta:focus-visible,
  .main-nav .mobile-nav-cta.active {
    color: #ffffff;
    background-color: var(--primary-hover);
  }

  .mobile-nav-cta {
    margin: 0;
    text-align: center;
    padding: 15px 22px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 6px 18px rgba(51, 190, 179, 0.28);
  }

  @media (max-height: 620px) {
    :root {
      --mobile-nav-section-gap: 1.125rem;
      --mobile-nav-link-gap: 8px;
      --mobile-nav-pad-y-end: max(18px, env(safe-area-inset-bottom, 0px));
    }

    .main-nav ul.main-nav__list {
      padding-block: 0.875rem 1.25rem;
    }

    .main-nav ul.main-nav__list a {
      padding: 13px 18px;
      font-size: 1rem;
    }
  }

  @media (max-height: 520px) {
    :root {
      --mobile-nav-section-gap: 0.875rem;
      --mobile-nav-link-gap: 6px;
    }

    .mobile-nav-panel__top {
      margin-bottom: 0.35rem;
      padding-bottom: 0.75rem;
    }

    .mobile-nav-panel__logo {
      height: clamp(24px, 6svh, 34px);
    }

    .mobile-nav-close {
      width: 36px;
      height: 36px;
    }

    .main-nav ul.main-nav__list {
      padding-block: 0.625rem 1rem;
    }

    .main-nav ul.main-nav__list a {
      padding: 11px 16px;
      font-size: 0.9375rem;
    }

    .mobile-nav-panel__foot {
      margin-top: 0.35rem;
      padding-top: 0.75rem;
    }

    .mobile-nav-cta {
      padding: 12px 18px;
      font-size: 0.8125rem;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .main-nav {
      transition: none !important;
    }

    .main-nav ul.main-nav__list a {
      transition: none;
    }
  }
}

@media (max-width: 768px) {
  .header-actions .header-bonus-btn {
    display: none;
  }

  .hero {
    padding: var(--section-gap) 0;
    min-height: auto;
  }

  .hero-inner {
    gap: 32px;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-card-wrapper {
    max-width: 360px;
  }

  .hero-card--simple {
    padding: 24px 22px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

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

  .vertical-card.large {
    grid-column: span 1;
  }

  .tier-card {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    overflow: hidden;
  }

  /* Rank + logo unified panel - full width header strip on tablet */
  .tier-rank-logo-col {
    width: 100%;
    max-width: none;
    margin: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 16px 16px 14px;
    background: transparent;
    border-bottom: none;
  }

  .tier-rank-logo-col .review-rank-panel {
    max-width: 280px;
  }

  .tier-info {
    width: 100%;
    min-width: 0;
    padding: 14px 16px;
  }

  .tier-payments-strip {
    flex-direction: row;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    flex-wrap: wrap;
  }

  .tier-payments-label {
    font-size: 0.62rem;
  }

  .tier-payment-chip {
    font-size: 0.72rem;
    padding: 4px 10px;
  }

  .pros-cons-col-label {
    font-size: 0.68rem;
    margin-bottom: 6px;
  }

  .tier-card .pros-cons {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .tier-expand-btn {
    font-size: 0.8rem;
    margin-top: 10px;
    padding: 8px 6px;
  }

  .tier-bonus {
    width: 100%;
    max-width: none;
    align-self: stretch;
    padding: 18px 16px;
    position: static;
    border-radius: 0;
    border-left: none;
    border-top: 1px solid rgba(51, 190, 179, 0.22);
    background: #ffffff;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px 16px;
  }

  .tier-bonus--no-offer {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-top-color: rgba(148, 163, 184, 0.35);
  }

  .tier-bonus .tier-bonus__top-icon {
    margin-bottom: 8px;
  }

  .tier-bonus .tier-bonus__eyebrow,
  .tier-bonus .tier-bonus__no-offer-msg {
    width: 100%;
  }

  .tier-bonus .bonus-label {
    width: 100%;
    text-align: center;
    margin-bottom: 4px;
  }

  .tier-bonus .bonus-amount {
    margin-bottom: 8px;
    font-size: clamp(0.95rem, 3.5vw, 1.2rem);
  }

  .tier-bonus--provider {
    padding: 16px 16px 12px;
  }

  .tier-bonus .bonus-actions {
    width: 100%;
  }

  .tier-bonus .bonus-terms {
    width: 100%;
  }

  .bonus-label {
    font-size: 0.65rem;
    margin-bottom: 10px;
  }

  /* Casino card at ≤768: center-aligned stack.
     Row 1: unified review panel, Row 2: title (+ editor chip), Row 3: rating.
     Then payments, pros/cons, and the visit-site bonus panel.
     display:contents flattens .tier-rank-logo-col, .tier-info, and .tier-head-row
     so each piece becomes its own grid row without touching the JS template. */
  .tier-card.tier-card--casino {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "panel"
      "title"
      "rating"
      "payments"
      "proscons"
      "bonus";
    row-gap: 0;
    align-items: stretch;
  }

  .tier-card--casino .tier-rank-logo-col,
  .tier-card--casino .tier-info,
  .tier-card--casino .tier-head-row {
    display: contents;
  }

  .tier-card--casino .review-rank-panel {
    grid-area: panel;
    justify-self: center;
    width: calc(100% - 40px);
    max-width: 260px;
    margin: 20px 20px 16px;
  }

  .tier-card--casino .tier-head-left {
    grid-area: title;
    justify-self: center;
    align-self: center;
    width: 100%;
    min-width: 0;
    padding: 4px 20px 8px;
    text-align: center;
  }

  .tier-card--casino .tier-head-left .info-header {
    justify-content: center;
    text-align: center;
    margin-bottom: 0;
  }

  .tier-card--casino .tier-head-right {
    grid-area: rating;
    justify-self: stretch;
    display: flex;
    justify-content: center;
    margin: 0 20px;
    padding: 12px 0 16px;
    border-bottom: 1px solid var(--border-light);
  }

  .tier-card--casino .tier-head-right .rating-row--stack {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .tier-card--casino .tier-head-right .stars {
    justify-content: center;
  }

  .tier-card--casino .tier-head-right .rating-text {
    text-align: center;
  }

  .tier-card--casino .tier-payments-strip {
    grid-area: payments;
    justify-content: center;
    margin: 16px 20px 14px;
  }

  .tier-card--casino .tier-pros-cons {
    grid-area: proscons;
    margin: 0 20px 18px;
  }

  .tier-card--casino .tier-bonus {
    grid-area: bonus;
  }

  /* Provider card at ≤768: matching center-aligned stack.
     Row 1: unified review panel, Row 2: title, Row 3: rating/badge meta.
     Remaining sections (pros, features, bonus) stack vertically as before. */
  .tier-card.tier-card--provider {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "panel"
      "title"
      "meta"
      "pros"
      "features"
      "bonus";
    row-gap: 0;
    align-items: stretch;
  }

  .tier-card--provider .tier-rank-logo-col,
  .tier-card--provider .tier-info,
  .tier-card--provider .tier-provider-head {
    display: contents;
  }

  .tier-card--provider .review-rank-panel {
    grid-area: panel;
    justify-self: center;
    width: calc(100% - 40px);
    max-width: 260px;
    margin: 20px 20px 16px;
  }

  .tier-card--provider .info-header {
    grid-area: title;
    justify-content: center;
    text-align: center;
    margin: 4px 20px 8px;
  }

  .tier-card--provider .tier-provider-meta {
    grid-area: meta;
    justify-content: center;
    margin: 10px 20px 16px;
    padding-top: 14px;
    padding-bottom: 4px;
    border-top: 1px solid var(--border-light);
  }

  .tier-card--provider .tier-provider-meta .stars {
    justify-content: center;
  }

  /* Override the ≥560 rule that pushes the tier badge to the right so it stays
     part of the centered rating cluster on mobile. */
  .tier-card--provider .tier-provider-meta .tier-provider-badge {
    margin-left: 0;
  }

  .tier-card--provider .tier-info>ul.pros-cons {
    margin: 0 20px 16px;
  }

  /* At ≤768 the global .tier-features rule removes its border-left + padding-left,
     leaving the flagship-games + expertise block flush to the card edge. Restore
     symmetric horizontal padding for the mobile provider card. */
  .tier-card--provider .tier-features {
    padding: 6px 20px 18px;
  }

  .tier-card--provider .tier-info>ul.pros-cons {
    grid-area: pros;
    margin: 0 16px 12px;
  }

  .tier-card--provider .tier-features {
    grid-area: features;
  }

  .tier-card--provider .tier-bonus {
    grid-area: bonus;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}

/* ========================================= */
/* Casino review page (.cr-page) - AskGamblers-style */
/* ========================================= */
.cr-page {
  background: #fff;
}

/* Breadcrumb — casino review, slot, provider */
.cr-breadcrumb {
  padding: 12px 0;
  background: var(--bc-bar-bg);
  border-bottom: 1px solid var(--bc-bar-border);
}

.cr-crumbs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  font-size: 0.8125rem;
  line-height: 1.4;
}

.cr-crumbs>li {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.cr-crumbs>li:not([aria-current='page'])::after {
  content: '›';
  display: inline-block;
  margin: 0 0.625rem;
  color: #94a3b8;
  font-size: 1.125em;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  pointer-events: none;
  user-select: none;
}

.cr-crumbs a {
  color: var(--bc-link);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cr-crumbs a:hover {
  color: var(--bc-link-hover);
}

.cr-crumbs [aria-current='page'] {
  color: var(--bc-current);
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(51, 190, 179, 0.1);
  border: 1px solid rgba(51, 190, 179, 0.22);
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---- Hero: 3-column grid (image | text | sidebar) ---- */
.cr-hero-section {
  background: linear-gradient(165deg, #f8fafc 0%, #f1f5f9 42%, #e8eef5 100%);
  padding:
    clamp(24px, 3.5vh, 40px) var(--bc-inline-padding-x-end) clamp(40px, 6vh, 64px) var(--bc-inline-padding-x);
  border-bottom: 1px solid #e2e8f0;
}

/* ---- Hero v2: banner + identity strip (casino review) ---- */
.cr-hero-section.cr-hero-v2 {
  padding: 0 0 clamp(20px, 3vw, 32px);
  background: #fff;
}

.cr-hero-v2 .cr-hero-strip.container {
  padding-left: var(--bc-inline-padding-x);
  padding-right: var(--bc-inline-padding-x-end);
}

.cr-hero-v2 .cr-hero-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 1600 / 320;
  max-height: 360px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.cr-hero-v2 .cr-hero-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cr-hero-v2 .cr-hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 55%, rgba(15, 23, 42, 0.08) 100%);
}

.cr-hero-v2 .cr-hero-strip {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas: "logo identity ratings";
  align-items: center;
  gap: 20px 32px;
  padding-top: 18px;
}

.cr-hero-v2 .cr-hero-logo-v2 {
  grid-area: logo;
  width: clamp(96px, 12vw, 132px);
  height: clamp(96px, 12vw, 132px);
  margin-top: calc(-1 * clamp(60px, 7vw, 80px));
  border-radius: 50%;
  background: #0f172a;
  border: 4px solid #fff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cr-hero-v2 .cr-hero-logo-v2__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cr-hero-v2 .cr-hero-logo-v2.cr-hero-logo-v2--contain {
  background: #fff;
}

.cr-hero-v2 .cr-hero-logo-v2--contain .cr-hero-logo-v2__img {
  object-fit: contain;
  padding: 14px;
  background: #fff;
}

.cr-hero-v2 .cr-hero-identity {
  grid-area: identity;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cr-hero-v2 .cr-hero-identity .cr-hero-status {
  margin-bottom: 0;
}

.cr-hero-v2 .cr-hero-identity .cr-heading {
  margin: 0;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.cr-hero-v2 .cr-hero-ratings {
  grid-area: ratings;
  display: flex;
  align-items: flex-start;
  gap: clamp(20px, 3vw, 40px);
}

.cr-hero-v2 .cr-rating {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.cr-hero-v2 .cr-rating-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.02em;
}

.cr-hero-v2 .cr-rating-value {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: #0f172a;
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.1;
  flex-wrap: wrap;
}

.cr-hero-v2 .cr-rating-value strong {
  font-size: 1.45rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.cr-hero-v2 .cr-rating-max {
  font-size: 0.92rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.01em;
  margin-left: -2px;
}

.cr-hero-v2 .cr-rating-icon {
  width: 18px;
  height: 18px;
  align-self: center;
}

.cr-hero-v2 .cr-rating-icon--curator {
  color: #ef4444;
  fill: #ef4444;
}

.cr-hero-v2 .cr-rating-icon--player {
  color: #3b82f6;
  fill: #3b82f6;
}

.cr-hero-v2 .cr-rating-link {
  font-size: 0.78rem;
  font-weight: 500;
  color: #64748b;
  text-decoration: underline;
  text-decoration-color: rgba(100, 116, 139, 0.4);
  text-underline-offset: 3px;
  margin-left: 4px;
  transition: color 0.18s, text-decoration-color 0.18s;
}

.cr-hero-v2 .cr-rating-link:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}

@media (max-width: 900px) {
  .cr-hero-v2 .cr-hero-strip {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "logo identity"
      "ratings ratings";
    gap: 16px 20px;
  }

  .cr-hero-v2 .cr-hero-ratings {
    gap: 28px;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .cr-hero-v2 .cr-hero-banner {
    aspect-ratio: 16 / 8;
  }

  .cr-hero-v2 .cr-hero-strip {
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "identity"
      "ratings";
    text-align: left;
    gap: 12px;
  }

  .cr-hero-v2 .cr-hero-logo-v2 {
    margin-top: calc(-1 * clamp(44px, 14vw, 60px));
  }

  .cr-hero-v2 .cr-hero-ratings {
    flex-direction: column;
    gap: 12px;
  }
}

/* Provider detail: casino-style hero v2 with teal-tinted banner + circular logo */
.page-provider-detail .pv-provider-hero.cr-hero-v2 .cr-hero-banner {
  background: linear-gradient(125deg, #0f172a 0%, #134e4a 42%, #1e293b 100%);
}

.page-provider-detail .pv-provider-hero.cr-hero-v2 .cr-hero-banner::after {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 45%, rgba(19, 78, 74, 0.22) 100%);
}

/* Slot detail: hero v2 with teal-tinted banner (aligned with provider) */
.page-slot-detail .sv-slot-hero.cr-hero-v2 .cr-hero-banner {
  background: linear-gradient(125deg, #0f172a 0%, #134e4a 42%, #1e293b 100%);
}

.page-slot-detail .sv-slot-hero.cr-hero-v2 .cr-hero-banner::after {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 45%, rgba(19, 78, 74, 0.22) 100%);
}

/* Hero + lede read as one panel: no gray #fafafa band (page bg) between them */
.page-slot-detail .sv-slot-hero.cr-hero-section.cr-hero-v2 {
  border-bottom: none;
  padding-bottom: 0;
}

/* Circular slot key art: cover the disc (no contain / white mat) */
.page-slot-detail .sv-slot-hero-logo {
  background: #0f172a;
}

.page-slot-detail .sv-slot-hero-logo .cr-hero-logo-v2__img {
  object-fit: cover;
  object-position: center 42%;
}

.page-slot-detail .pv-hero-lede-wrap {
  background: #fff;
  padding-top: clamp(12px, 2vw, 22px);
  padding-bottom: clamp(12px, 2vw, 24px);
  margin-bottom: clamp(12px, 2vw, 24px);
}

.page-slot-detail .pv-hero-lede__text {
  font-family: var(--font-sans, Poppins, system-ui, sans-serif);
  font-size: clamp(0.94rem, 1vw + 0.8rem, 1.06rem);
  line-height: 1.62;
  color: #334155;
  max-width: var(--container-max-width);
  margin: 0 0 clamp(22px, 2.8vw, 32px);
}

.page-slot-detail .pv-hero-lede__text[hidden] {
  display: none !important;
}

.page-slot-detail .pv-hero-lede__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  margin-bottom: clamp(8px, 1.2vw, 14px);
}

.page-slot-detail .ph-btn-site {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 20px;
}

.page-slot-detail .sv-hero-compliance {
  margin: 0 0 clamp(12px, 1.5vw, 18px);
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.page-slot-detail .sv-hero-responsible {
  margin: clamp(10px, 1.2vw, 16px) 0 0;
  font-size: 0.68rem;
  color: #94a3b8;
  font-weight: 500;
  letter-spacing: 0.02em;
  max-width: var(--container-max-width);
  line-height: 1.55;
}

.page-provider-detail .pv-provider-hero .pv-hero-logo--dark-mat {
  background: #0f172a;
}

.page-provider-detail .pv-provider-hero .pv-hero-logo--dark-mat .cr-hero-logo-v2__img {
  object-fit: contain;
  padding: clamp(14px, 2.5vw, 22px);
}

.page-provider-detail .pv-hero-lede-wrap {
  padding-top: clamp(8px, 1.2vw, 16px);
  padding-bottom: clamp(12px, 2vw, 24px);
  margin-bottom: clamp(12px, 2vw, 24px);
}

.page-provider-detail .pv-hero-lede__text {
  font-family: var(--font-sans, Poppins, system-ui, sans-serif);
  font-size: clamp(0.94rem, 1vw + 0.8rem, 1.06rem);
  line-height: 1.62;
  color: #334155;
  max-width: var(--container-max-width);
  margin: 0 0 clamp(22px, 2.8vw, 32px);
}

.page-provider-detail .pv-hero-lede__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  margin-bottom: clamp(8px, 1.2vw, 14px);
}

.page-provider-detail .pv-hero-lede__actions[hidden],
.page-provider-detail .pv-hero-lede__text[hidden] {
  display: none !important;
}

.cr-hero-grid {
  display: grid;
  grid-template-columns: minmax(140px, 176px) minmax(0, 1fr) minmax(220px, 280px);
  gap: clamp(20px, 3vw, 32px);
  align-items: center;
}

/* Logo-only hero: no left column - logo sits inline on the heading */
.cr-hero-grid--no-media {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
}

/* Hero media (left) */
.cr-hero-media {
  justify-self: center;
}

.cr-hero-frame {
  width: 168px;
  height: 168px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 8px 28px rgba(15, 23, 42, 0.08);
}

.cr-hero-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  background: linear-gradient(160deg, #eef2f7, #cbd5e1);
}

.cr-hero-visual--logo .cr-hero-frame {
  background: linear-gradient(168deg, #f8fafc, #e8edf4 40%);
}

.cr-hero-visual--logo .cr-hero-img {
  object-fit: contain;
  padding: 28px;
  background: transparent;
}

/* Hero body (center) */
.cr-hero-body {
  min-width: 0;
}

.cr-hero-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.cr-status-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0f766e;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(45, 212, 191, 0.45);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.cr-status-tag i {
  width: 12px;
  height: 12px;
}

.cr-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  line-height: 1.08;
  color: #020617;
  margin: 0 0 6px;
  letter-spacing: -0.035em;
  font-weight: 700;
}

.cr-heading.cr-heading--with-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cr-heading-logo-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  padding: 6px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 4px 16px rgba(15, 23, 42, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cr-heading-logo-wrap[hidden] {
  display: none !important;
}

.cr-heading-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.cr-slogan {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-style: italic;
  font-weight: 500;
  color: #64748b;
  margin: 0 0 10px;
  line-height: 1.45;
}

.cr-slogan:empty {
  display: none;
}

.cr-excerpt {
  font-size: 0.93rem;
  line-height: 1.62;
  color: var(--text-muted);
  margin: 0 0 18px;
  max-width: 52ch;
}

/* Single primary CTA + terms as text link */
.cr-hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  padding-top: 4px;
}

.cr-btn-visit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  background: linear-gradient(135deg, #0d9488 0%, var(--primary) 50%, #14b8a6 100%);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(13, 148, 136, 0.35), 0 1px 2px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  text-decoration: none;
}

.cr-btn-visit i {
  width: 16px;
  height: 16px;
}

.cr-btn-visit:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 10px 28px rgba(13, 148, 136, 0.4), 0 2px 8px rgba(15, 23, 42, 0.08);
}

.cr-btn-visit--sm {
  padding: 10px 22px;
  font-size: 0.8rem;
}

.cr-terms-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
  border-bottom: 1px solid transparent;
}

.cr-terms-link i {
  width: 13px;
  height: 13px;
}

.cr-terms-link:hover {
  color: var(--primary);
  border-bottom-color: rgba(51, 190, 179, 0.35);
}

/* Hero sidebar (right): score + bonus card */
.cr-hero-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-self: stretch;
}

/* Curator score - pill card, thin teal ring, centered figure + /5 (reference) */
.cr-score-card {
  --cr-ring-teal: #40b3a2;
  --cr-ring-track: #eef2f7;
  background: #fff;
  border: none;
  border-radius: 40px;
  padding: 28px 24px 26px;
  text-align: center;
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.02),
    0 22px 48px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(226, 232, 240, 0.65);
}

.cr-score-ring {
  position: relative;
  width: 132px;
  height: 132px;
  margin: 0 auto 14px;
}

.cr-ring-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  overflow: visible;
}

.cr-ring-track {
  fill: none;
  stroke: var(--cr-ring-track);
  stroke-width: 4;
}

.cr-ring-fill {
  fill: none;
  stroke: var(--cr-ring-teal);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 326.73;
  stroke-dashoffset: 326.73;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Score: "4.7" + "/5" inline, centered inside the ring (baseline-aligned) */
.cr-score-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  pointer-events: none;
}

.cr-score-main {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
  max-width: 100%;
}

.cr-score-val {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 800;
  color: #020617;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  line-height: 1;
}

.cr-score-max {
  font-size: 1.05rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.02em;
  line-height: 1;
}

.cr-score-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #1e3a5f;
  margin: 0;
}

.cr-score-card .cr-stars {
  justify-content: center;
  display: flex;
  gap: 4px;
  min-height: 1.2em;
  margin: 0 auto 16px;
}

.cr-score-card .cr-stars .stars-meter--units {
  font-size: 1.05rem;
  gap: 0.12em;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.4));
}

.cr-score-card .star-unit__fill {
  color: #fbbf24;
}

.cr-score-card .star-unit__track {
  color: #e5e7eb;
}

/* ---- Sticky section navigation ---- */
.cr-section-nav {
  position: sticky;
  top: var(--cr-header-height, 64px);
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.cr-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.cr-nav-links::-webkit-scrollbar {
  display: none;
}

.cr-nav-links a {
  display: block;
  padding: 14px 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #64748b;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.cr-nav-links a:hover {
  color: #020617;
}

.cr-nav-links a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* Reviews follows Verdict in nav - light separator */
#cr-nav-verdict+li#cr-nav-reviews>a {
  margin-left: 4px;
  padding-left: 22px;
}

/* ---- Quick-facts info panel ---- */
.cr-info-section {
  padding: 48px 0 40px;
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
}

.cr-section-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #020617;
  margin: 0 0 28px;
  letter-spacing: -0.02em;
}

.cr-section-heading i {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
}

.cr-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
}

.cr-info-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-rows: auto auto;
  gap: 0 12px;
  padding: 18px 20px;
  border-bottom: 1px solid #f1f5f9;
  border-right: 1px solid #f1f5f9;
  transition: background 0.2s;
}

.cr-info-item:hover {
  background: #f8fafc;
}

.cr-info-icon {
  grid-row: 1 / -1;
  align-self: center;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0fdfa;
  color: var(--primary);
  border-radius: 8px;
}

.cr-info-icon i {
  width: 18px;
  height: 18px;
}

.cr-info-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  line-height: 1.3;
  align-self: end;
}

.cr-info-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
  align-self: start;
  margin-top: 2px;
}

.cr-info-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.cr-info-chips .tier-payment-chip {
  font-size: 0.65rem;
  padding: 2px 7px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  color: #475569;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.cr-info-chips .tier-payment-chip i {
  width: 11px;
  height: 11px;
}

/* Section shared */
.cr-section-dek {
  max-width: var(--container-max-width);
  margin: -16px 0 32px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- Analysis cards ---- */
.cr-analysis-section {
  padding: 56px 0 48px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.cr-analysis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.cr-ac-card {
  position: relative;
  background: #fff;
  padding: 24px 20px 20px;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.cr-ac-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #22d3ee);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease-out;
}

.cr-ac-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.cr-ac-card:hover::after {
  transform: scaleX(1);
}

.cr-ac-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.cr-ac-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0fdfa;
  color: var(--primary);
  border-radius: var(--radius-sm);
}

.cr-ac-icon i {
  width: 18px;
  height: 18px;
}

.cr-ac-score {
  font-size: 1.5rem;
  font-weight: 800;
  color: #020617;
  line-height: 1;
}

.cr-ac-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: #0f172a;
}

.cr-ac-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ---- Gallery ---- */
.cr-gallery-section {
  padding: 56px 0 56px;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}

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

.cr-gallery-item {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

.cr-gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.cr-gallery-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: #e2e8f0;
  transition: transform 0.25s ease-out;
}

.cr-gallery-item:hover .cr-gallery-img {
  transform: scale(1.04);
}

/* ---- Inline ad banner (review page) - edge-to-edge image only; swap src for your creative ---- */
.cr-ad-banner-wrap {
  position: relative;
  z-index: 8;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  line-height: 0;
  border-bottom: 1px solid var(--border);
  background: #e2e8f0;
}

.cr-ad-banner__img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
  object-fit: cover;
  object-position: center;
}

/* ---- Article / verdict (structured layout) ---- */
.cr-verdict-article {
  padding: 48px 0 72px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 45%, #fff 100%);
}


.cr-article-layout {
  max-width: var(--container-max-width);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* Verdict: main column + sticky bonus (wider than single-column article) */
.cr-article-layout.cr-article-layout--verdict-split {
  max-width: var(--container-max-width);
}

.cr-verdict-shell {
  display: flow-root;
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.03), 0 24px 48px rgba(15, 23, 42, 0.06);
  padding: clamp(24px, 4vw, 40px) clamp(20px, 3vw, 36px) clamp(28px, 4vw, 44px);
}

.cr-verdict-header {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 36px);
  padding-bottom: 28px;
  border-bottom: 1px solid #f1f5f9;
}

.cr-verdict-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}

.cr-verdict-kicker i {
  width: 16px;
  height: 16px;
}

.cr-verdict-title {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  line-height: 1.15;
  margin: 0 0 14px;
  padding: 0;
  border: none;
  color: #020617;
  letter-spacing: -0.03em;
}

.cr-verdict-sub {
  margin: 0 auto;
  max-width: 42ch;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  font-weight: 400;
}

.cr-verdict-flow {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 36px);
}

/* Verdict two-column: aside floats right, shell forms a BFC beside it.
   Row uses clearfix (not overflow:hidden) so sticky works on the aside. */
.cr-verdict-row::after {
  content: '';
  display: table;
  clear: both;
}

.cr-verdict-row>.cr-verdict-bonus-sidebar {
  float: right;
  width: 280px;
  margin-left: 28px;
  margin-bottom: 20px;
  position: sticky;
  /* Must clear both the site header (~64px) AND the sticky section nav (~48px) */
  top: calc(var(--cr-header-height, 64px) + 48px + 12px);
}

.cr-verdict-row>.cr-verdict-bonus-sidebar[hidden] {
  display: none !important;
}

.cr-verdict-row>.cr-verdict-shell {
  overflow: hidden;
  /* BFC: sits beside the float, never overlaps */
}

/* Casino review: verdict + player reviews share one float row; BFC wraps both columns */
.cr-verdict-row>.cr-review-page__main {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 56px);
  min-width: 0;
}

.cr-review-page-combined {
  border-bottom: 1px solid #f1f5f9;
}

.cr-review-page-combined .pr-section {
  padding: 0;
  background: transparent;
  border-bottom: none;
}

@media (max-width: 899px) {
  .cr-verdict-row>.cr-verdict-bonus-sidebar {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-bottom: 24px;
    position: static;
  }

  /* Align bonus card with centered verdict header (stacked layout). */
  .cr-verdict-bonus-sidebar__inner {
    text-align: center;
    padding: 24px 22px;
  }

  .cr-verdict-bonus-sidebar__brand {
    justify-content: center;
    margin-bottom: 12px;
  }

  .cr-verdict-bonus-sidebar__offer {
    text-align: center;
  }

  .cr-verdict-bonus-sidebar__chips {
    justify-content: center;
  }

  .cr-verdict-bonus-sidebar__terms {
    text-align: center;
  }

  .cr-verdict-bonus-sidebar__logo-wrap {
    width: 58px;
    height: 58px;
  }

  .cr-verdict-bonus-sidebar__name {
    font-size: clamp(1.42rem, 4.2vw, 1.6rem);
  }
}

.cr-verdict-bonus-sidebar__inner {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(38, 166, 154, 0.22);
  border-radius: var(--radius-lg);
  padding: 20px 18px 16px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 8px 28px rgba(15, 23, 42, 0.07);
}

.cr-verdict-bonus-sidebar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  min-width: 0;
}

.cr-verdict-bonus-sidebar__logo-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  padding: 6px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.cr-verdict-bonus-sidebar__logo-wrap[hidden] {
  display: none !important;
}

.cr-verdict-bonus-sidebar__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cr-verdict-bonus-sidebar__name {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  line-height: 1.25;
  flex: 1;
  min-width: 0;
  letter-spacing: -0.01em;
}

.cr-verdict-bonus-sidebar__name:empty {
  display: none;
}

.cr-verdict-bonus-sidebar__offer {
  padding: 14px 12px 16px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: linear-gradient(165deg, rgba(51, 190, 179, 0.08) 0%, rgba(255, 255, 255, 0.92) 55%);
  border: 1px solid rgba(51, 190, 179, 0.18);
}

.cr-verdict-bonus-sidebar__label {
  font-size: 0.62rem;
  font-weight: 800;
  color: #0f766e;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 8px;
}

.cr-verdict-bonus-sidebar__label:empty,
.cr-verdict-bonus-sidebar__label[hidden] {
  display: none !important;
}

.cr-verdict-bonus-sidebar__amount {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.28rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.cr-verdict-bonus-sidebar__amount:empty {
  display: none;
}

.cr-verdict-bonus-sidebar__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cr-verdict-bonus-sidebar__chips:empty,
.cr-verdict-bonus-sidebar__chips[hidden] {
  display: none !important;
}

.cr-verdict-bonus-sidebar__chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #334155;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 100px;
  line-height: 1.2;
}

.cr-verdict-bonus-sidebar__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.cr-verdict-bonus-sidebar__terms {
  font-size: 0.65rem;
  color: #94a3b8;
  line-height: 1.4;
  margin: 14px 0 0;
  text-align: center;
}

.cr-verdict-bonus-cta {
  width: 100%;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  border-radius: 999px;
}

.cr-verdict-bonus-sidebar__detail-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
  letter-spacing: 0;
  text-transform: none;
  text-align: center;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.cr-verdict-bonus-sidebar__detail-link i,
.cr-verdict-bonus-sidebar__detail-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.cr-verdict-bonus-sidebar__detail-link:hover {
  color: var(--primary);
}

.cr-verdict-bonus-sidebar__detail-link:hover i,
.cr-verdict-bonus-sidebar__detail-link:hover svg {
  transform: translateX(2px);
}

.cr-verdict-bonus-sidebar__detail-link[hidden] {
  display: none !important;
}

.cr-verdict-panel {
  margin: 0;
}

.cr-verdict-panel-h {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
  margin: 0 0 14px;
}

.cr-verdict-panel--main .cr-verdict-panel-h {
  color: #0f172a;
  border-left: 3px solid var(--primary);
  padding-left: 12px;
  margin-bottom: 16px;
}

.cr-verdict-panel--secondary {
  padding-top: 8px;
  border-top: 1px dashed #e2e8f0;
  margin-top: 4px;
}

.cr-verdict-shell--secondary-only .cr-verdict-panel--secondary {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.cr-at-a-glance-section {
  padding: clamp(28px, 5vw, 52px) 0 clamp(36px, 6vw, 64px);
  margin: 0;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

/* Full width of site .container (wider than the verdict column below) */
.cr-at-a-glance-section .cr-pros-cons {
  max-width: none;
  width: 100%;
}

#cr-verdict-secondary-wrap {
  margin-top: clamp(8px, 2vw, 24px);
}

.cr-verdict-panel--secondary .cr-verdict-panel-h {
  color: #475569;
}

/* Optional drop cap on first paragraph of main review */
@media (min-width: 480px) {
  .cr-verdict-panel--main .rich-text-body>p:first-of-type {
    overflow: visible;
  }

  .cr-verdict-panel--main .rich-text-body>p:first-of-type::first-letter {
    float: left;
    font-family: var(--font-serif);
    font-size: 3.1rem;
    line-height: 0.85;
    font-weight: 700;
    color: #0f172a;
    margin-right: 10px;
    margin-top: 4px;
  }
}

/* Pros / Cons - “At a glance” band */
.cr-pros-cons {
  margin: 0;
  padding: 20px 18px 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, #f8fafc 0%, #fff 60%);
  border: 1px solid #e2e8f0;
}

.cr-pros-cons-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #475569;
}

.cr-pros-cons-label i {
  width: 15px;
  height: 15px;
  color: var(--primary);
}

.cr-pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cr-pc-col {
  padding: 20px 18px;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.cr-pc-pros {
  background: linear-gradient(168deg, rgba(240, 253, 250, 0.95), #fff 55%);
  border-color: rgba(45, 212, 191, 0.35);
}

.cr-pc-cons {
  background: linear-gradient(168deg, rgba(255, 241, 242, 0.9), #fff 55%);
  border-color: rgba(244, 63, 94, 0.25);
}

.cr-pc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.cr-pc-header :is(i, svg) {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Highlights: green icon accents (Lucide renders <svg>) */
.cr-pc-pros .cr-pc-header :is(i, svg) {
  color: #059669;
}

/* Room for growth: red icon accents */
.cr-pc-cons .cr-pc-header :is(i, svg) {
  color: #dc2626;
}

.cr-pc-heading {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #475569;
}

.cr-pc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cr-pc-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.52;
  margin-bottom: 10px;
  color: var(--text-main);
}

.cr-pc-list li:last-child {
  margin-bottom: 0;
}

.cr-pc-list li :is(i, svg) {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cr-pc-pros .cr-pc-list :is(i, svg) {
  color: #059669;
}

.cr-pc-cons .cr-pc-list :is(i, svg) {
  color: #dc2626;
}

/* Trust */
.cr-trust-section {
  padding: 28px 16px 44px;
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
}

.cr-trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.cr-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cr-trust-item i {
  width: 20px;
  height: 20px;
  color: #94a3b8;
}

/* Error */
.cr-error-state {
  text-align: center;
  padding: 100px 16px 120px;
}

.cr-error-icon {
  margin-bottom: 20px;
}

.cr-error-icon i {
  width: 48px;
  height: 48px;
  color: #cbd5e1;
}

.cr-error-title {
  font-family: var(--font-serif);
  margin-bottom: 12px;
  color: #020617;
  font-size: 1.75rem;
}

.cr-error-text {
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* Rich text (casino verdict) */
.cr-verdict-shell .rich-text-body {
  display: flow-root;
  font-size: 1.05rem;
  line-height: 1.82;
  color: var(--text-main);
}

.cr-verdict-panel--secondary .rich-text-body {
  font-size: 1.02rem;
  line-height: 1.78;
}

.cr-article .rich-text-body>*:first-child {
  margin-top: 0;
}

.cr-article .rich-text-body p {
  margin: 0 0 1.15em;
}

.cr-article .rich-text-body p:last-child {
  margin-bottom: 0;
}

.cr-article .rich-text-body h2,
.cr-article .rich-text-body h3,
.cr-article .rich-text-body h4 {
  font-family: var(--font-serif);
  color: #020617;
  margin: 1.65em 0 0.65em;
  line-height: 1.28;
  font-weight: var(--heading-weight);
}

.cr-article .rich-text-body h2:first-child,
.cr-article .rich-text-body h3:first-child {
  margin-top: 0;
}

.cr-article .rich-text-body h2 {
  font-size: clamp(1.2rem, 2.4vw, 1.4rem);
}

.cr-article .rich-text-body h3 {
  font-size: 1.08rem;
}

.cr-article .rich-text-body ul,
.cr-article .rich-text-body ol {
  margin: 0 0 1.15em;
  padding-left: 1.35em;
}

.cr-article .rich-text-body li {
  margin-bottom: 0.45em;
}

.cr-article .rich-text-body li::marker {
  color: #94a3b8;
}

.cr-article .rich-text-body blockquote {
  margin: 1.25em 0;
  padding: 1rem 1.1rem 1rem 1.15rem;
  border-left: 4px solid var(--primary);
  background: linear-gradient(90deg, rgba(45, 212, 191, 0.08), rgba(248, 250, 252, 0.9));
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: #475569;
}

.cr-article .rich-text-body a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cr-article .rich-text-body a:hover {
  color: #0d9488;
}

.cr-article .rich-text-body pre {
  overflow-x: auto;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: #0f172a;
  color: #e2e8f0;
  font-size: 0.88em;
  line-height: 1.55;
}

.cr-article .rich-text-body .rich-text-figure {
  margin: 1.35em 0;
}

.cr-article .rich-text-body .rich-text-figure img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
}

.cr-article .rich-text-body strong {
  font-weight: 600;
  color: #0f172a;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .cr-hero-grid {
    grid-template-columns: 140px 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
  }

  /* Logo-inline hero: keep branding + curator score side-by-side (not stacked). */
  .cr-hero-grid--no-media {
    grid-template-columns: minmax(0, 1fr) minmax(200px, 280px);
    grid-template-rows: auto;
    align-items: start;
  }

  .cr-hero-sidebar {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .cr-hero-grid--no-media .cr-hero-sidebar {
    grid-column: auto;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-self: stretch;
  }

  .cr-score-card {
    flex: 1;
    min-width: 200px;
  }

  .cr-hero-grid--no-media .cr-score-card {
    flex: none;
    min-width: 0;
    width: 100%;
  }

  .cr-hero-frame {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 700px) {
  .cr-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Stack hero + score below 700px (override 900px two-column logo layout). */
  .cr-hero-grid--no-media {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .cr-heading.cr-heading--with-logo {
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
    font-size: clamp(2.15rem, 6.8vw, 2.85rem);
    line-height: 1.06;
  }

  .cr-heading.cr-heading--with-logo .cr-heading-logo-wrap {
    width: 76px;
    height: 76px;
    border-radius: 18px;
    padding: 9px;
  }

  .cr-hero-media {
    justify-self: center;
  }

  .cr-hero-frame {
    width: 120px;
    height: 120px;
  }

  .cr-hero-status {
    justify-content: center;
  }

  .cr-hero-cta {
    justify-content: center;
  }

  .cr-excerpt {
    margin-left: auto;
    margin-right: auto;
  }

  .cr-hero-sidebar {
    flex-direction: column;
    align-items: center;
  }

  /* Override 900px `.cr-hero-grid--no-media .cr-hero-sidebar { align-items: stretch }` so the score card centers. */
  .cr-hero-grid--no-media .cr-hero-sidebar {
    align-items: center;
    justify-content: flex-start;
  }

  .cr-score-card {
    max-width: 300px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  .cr-hero-grid--no-media .cr-score-card {
    flex: none;
    width: min(100%, 300px);
    margin-inline: auto;
  }

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

  .cr-info-grid {
    grid-template-columns: 1fr;
  }

  .cr-nav-links a {
    padding: 12px 16px;
    font-size: 0.72rem;
  }
}

@media (max-width: 480px) {
  .cr-analysis-grid {
    grid-template-columns: 1fr;
  }

  .cr-gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ========================================= */
/* Bonuses Page specific */
/* ========================================= */
.bonuses-page {
  background: #fafafa;
}

.bonuses-breadcrumb {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 0;
  padding-right: 0;
  background: var(--bc-bar-bg);
  border-bottom: 1px solid var(--bc-bar-border);
}

.bonuses-breadcrumb.container {
  max-width: none;
  width: 100%;
  margin-inline: 0;
  padding-left: 0;
  padding-right: 0;
}

.bonuses-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 var(--site-inline-end) 0 var(--site-inline);
  list-style: none;
  font-size: 0.8125rem;
  line-height: 1.4;
  box-sizing: border-box;
}

.bonuses-breadcrumb__list>li {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.bonuses-breadcrumb__list>li:not([aria-current='page'])::after {
  content: '›';
  display: inline-block;
  margin: 0 0.625rem;
  color: #94a3b8;
  font-size: 1.125em;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  pointer-events: none;
  user-select: none;
}

.bonuses-breadcrumb__list a {
  color: var(--bc-link);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.bonuses-breadcrumb__list a:hover {
  color: var(--bc-link-hover);
}

.bonuses-breadcrumb__list [aria-current='page'] {
  color: var(--bc-current);
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(51, 190, 179, 0.1);
  border: 1px solid rgba(51, 190, 179, 0.22);
}

/* Bonuses Hero */
.bonuses-hero {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-body) 100%);
  border-bottom: 1px solid var(--border-light);
}

.bonuses-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 4vw, 48px);
}

.bh-content {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
  padding-right: clamp(8px, 2vw, 20px);
}

.bh-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 clamp(14px, 2vw, 20px);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f766e;
  line-height: 1.25;
}

.bh-kicker i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.bh-title {
  font-size: clamp(2.15rem, 3.8vw + 0.5rem, 3.35rem);
  font-family: var(--font-serif);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: clamp(16px, 2vw, 22px);
  color: #020617;
}

.bh-title em {
  font-style: normal;
  color: var(--primary);
}

.bh-desc {
  font-size: clamp(0.8125rem, 0.25vw + 0.78rem, 0.9rem);
  color: #64748b;
  margin-bottom: clamp(20px, 2.5vw, 28px);
  line-height: 1.62;
  max-width: none;
}

.bh-desc a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.bh-desc a:hover {
  color: #1e3a5f;
}

.bh-pills {
  margin-top: 0;
}

.bh-visual {
  flex: 0 0 clamp(300px, 36vw, 440px);
  width: clamp(300px, 36vw, 440px);
  max-width: 100%;
  position: relative;
  min-width: 0;
}

/* Gradient hero panel (replaces stock photo: no logo contrast issues, faster load) */
.bh-panel {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 16px 40px -12px rgba(15, 23, 42, 0.12);
  border: 1px solid var(--border-light);
}

.bh-panel__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 65% at 12% 18%, rgba(251, 146, 60, 0.92) 0%, transparent 58%),
    radial-gradient(ellipse 75% 55% at 88% 22%, rgba(244, 114, 182, 0.78) 0%, transparent 52%),
    radial-gradient(ellipse 100% 80% at 50% 95%, rgba(56, 189, 248, 0.45) 0%, transparent 55%),
    linear-gradient(145deg, #1e1b4b 0%, #3730a3 38%, #0f172a 100%);
}

.bh-panel__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg,
      rgba(255, 255, 255, 0.15) 0%,
      transparent 42%,
      transparent 58%,
      rgba(255, 255, 255, 0.04) 100%);
  pointer-events: none;
}

.bh-score-float {
  position: absolute;
  bottom: -16px;
  left: 20px;
  max-width: calc(100% - 40px);
  background: #ffffff;
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 32px -8px rgba(15, 23, 42, 0.14);
  text-align: left;
  border: 1px solid var(--border-light);
  z-index: 5;
}

.bh-score-val {
  font-size: clamp(1.75rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #c9a227;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.bh-score-val .small-text {
  font-size: 1rem;
  font-weight: 700;
  color: #94a3b8;
}

.bh-score-label {
  font-size: 0.62rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  margin-top: 6px;
  letter-spacing: 0.08em;
  line-height: 1.35;
}

/* Filter Bar */
.bonuses-filter-bar {
  padding: 0 0 var(--section-gap-sm);
  margin-bottom: var(--section-gap-sm);
  background: transparent;
  border: none;
}

.bonuses-filter-bar .fb-inner {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: clamp(22px, 3vw, 32px) clamp(22px, 3vw, 32px) clamp(20px, 2.5vw, 28px);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 40px -12px rgba(15, 23, 42, 0.08);
}

.fb-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px 28px;
  flex-wrap: wrap;
}

.fb-lead {
  flex: 1 1 100%;
  margin: 0 0 clamp(12px, 2vw, 18px);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: none;
}

.fb-sort-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.fb-sort-label i {
  width: 18px;
  height: 18px;
  color: var(--text-light);
  flex-shrink: 0;
}

.fb-sort-field {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  cursor: pointer;
}

.fb-sort-select {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 8px 28px 8px 12px;
  box-shadow: var(--shadow-sm);
  max-width: 100%;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.fb-sort-select:hover {
  border-color: #cbd5e1;
}

.fb-sort-select:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.fb-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.fb-btn {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  background: white;
  border: 1px solid var(--border-light);
  transition: all 0.2s;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-sm);
}

.fb-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.fb-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.fb-sort-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  background: white;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}

.fb-sort-btn i {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
}

.fb-sort-btn:hover {
  border-color: #cbd5e1;
}

/* Bonuses Grid */
.bonuses-directory-header {
  margin-bottom: clamp(22px, 3.5vw, 36px);
  max-width: none;
}

.bonuses-directory-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: #020617;
  margin: 0 0 clamp(14px, 2vw, 20px);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.bonuses-directory-dek {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: none;
}

.bonuses-grid-section {
  padding-bottom: var(--section-gap);
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(24px, 3vw, 32px);
}

.bonuses-grid-loading,
.bonuses-grid-empty,
.bonuses-grid-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 16px;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.bonuses-grid-loading,
.bonuses-grid-empty {
  color: #64748b;
}

.bonuses-grid-error {
  color: #b91c1c;
}

.bonuses-grid-error code {
  font-size: 0.85em;
  padding: 2px 6px;
  background: #fef2f2;
  border-radius: 4px;
}

.page-bonuses .bonuses-seo {
  padding: var(--section-gap) 0;
}

.page-bonuses .bonuses-seo__header {
  margin-bottom: 0;
}

.page-bonuses .bonuses-seo__header h2 {
  margin-bottom: clamp(1.1rem, 2vw, 1.5rem);
  position: relative;
  padding-top: 0.35rem;
}

.page-bonuses .bonuses-seo__header h2::before {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 1.1rem;
}

.page-bonuses .bonuses-seo__intro p {
  margin-bottom: clamp(1rem, 2vw, 1.35rem);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.page-bonuses .bonuses-seo__intro p:last-child {
  margin-bottom: 0;
}

.page-bonuses .bonuses-seo__intro a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.page-bonuses .bonuses-seo__intro a:hover {
  color: #1e3a5f;
}

.page-bonuses .bonuses-faq.seo-accordion {
  padding: var(--section-gap) 0;
}

.page-bonuses .bonuses-faq .section-header.center {
  margin-bottom: var(--section-gap-sm);
}

.page-bonuses .bonuses-faq .section-header.center p {
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  color: var(--text-muted);
  line-height: 1.7;
}

.page-bonuses .accordion.accordion--two-cols {
  gap: 20px clamp(24px, 3vw, 40px);
}

.bonus-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 8px 24px -8px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--border-light);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.bonus-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 4px 12px rgba(15, 23, 42, 0.06),
    0 20px 40px -16px rgba(15, 23, 42, 0.12);
  border-color: #cbd5e1;
}

/* Circular brand mark */
.bc-logo-zone {
  position: relative;
  padding: 22px 20px 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}

.bc-logo-mat {
  width: 112px;
  height: 112px;
  margin: 0 auto;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bc-logo-img {
  width: 100%;
  height: 100%;
  display: block;
}

.bc-logo-img--contain {
  object-fit: contain;
  padding: 16px;
  box-sizing: border-box;
}

.bc-logo-img--cover {
  object-fit: cover;
}

.bc-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.bc-chip {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
  border: 1px solid var(--border-light);
  background: #ffffff;
  color: var(--text-muted);
}

.bc-chip--hot {
  color: var(--danger);
  border-color: rgba(225, 29, 72, 0.25);
  background: #fff1f2;
}

.bc-chip--exc {
  color: #0f172a;
  border-color: #e2e8f0;
  background: #f8fafc;
}

.bc-chip--new {
  color: var(--primary);
  border-color: rgba(51, 190, 179, 0.35);
  background: rgba(51, 190, 179, 0.08);
}

/* Trust strip (site voice, not third-party) */
.bc-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  background: linear-gradient(180deg, #ecfdf5 0%, #f0fdfa 100%);
  border-top: 1px solid rgba(51, 190, 179, 0.28);
  border-bottom: 1px solid var(--border-light);
  color: #0f172a;
}

.bc-trust i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--primary);
}

.bc-trust-text {
  font-size: 0.72rem;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
  color: #334155;
}

.bc-content {
  padding: clamp(22px, 4vw, 28px) 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: stretch;
  gap: 0;
  text-align: center;
}

.bc-amount {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.bc-title {
  font-size: 1.125rem;
  font-family: var(--font-sans);
  font-weight: 700;
  color: #020617;
  line-height: 1.32;
  margin: 0;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.bc-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.bc-type {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}

.bc-meta {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #475569;
  line-height: 1.5;
  margin: 0;
  padding: 11px 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  text-align: center;
}

/* Vertical rhythm inside content: value stack + meta + CTA block */
.bc-content>.bc-amount {
  margin-bottom: 10px;
}

.bc-content>.bc-title {
  margin-bottom: 8px;
}

.bc-content>.bc-type {
  margin-bottom: 14px;
}

.bc-content>.bc-meta {
  margin-bottom: 18px;
}

.bc-content>.bc-cta {
  margin-bottom: 0;
}

.bc-cta {
  margin-top: auto;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding-top: 14px;
  padding-bottom: 14px;
  border-radius: var(--radius-sm);
}

.bc-terms-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s, text-decoration 0.2s;
}

.bc-terms-link:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

/* Bonus detail (bonus.html) */
.page-bonus-detail {
  background-color: #eef1f5;
}

.bonus-detail-page {
  padding-bottom: 88px;
}

.bonus-detail-error {
  padding: 100px 24px 120px;
  text-align: center;
}

.bonus-detail-error__text {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.bonus-detail-error__hint {
  font-size: 0.9375rem;
  margin: 0 0 20px;
  color: var(--text-muted);
}

.bonus-detail-error__hint a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.bonus-detail-error__hint a:hover {
  color: #1e3a5f;
}

/* Bonus detail — breadcrumb bar */
.bd-breadcrumb-bar {
  background: #f4f7fb;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.bd-breadcrumb-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: var(--bc-inline-padding-x);
  padding-right: var(--bc-inline-padding-x-end);
}

.bd-breadcrumb {
  min-width: 0;
  flex: 1;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.bd-breadcrumb::-webkit-scrollbar {
  display: none;
}

.bd-breadcrumb__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .bd-breadcrumb__list {
    font-size: 0.875rem;
  }
}

.bd-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
}

.bd-breadcrumb__item--current {
  flex-shrink: 1;
  overflow: hidden;
  max-width: 100%;
}

.bd-breadcrumb__item:not(.bd-breadcrumb__item--current)::after {
  content: '›';
  display: inline-block;
  margin: 0 0.625rem;
  color: #94a3b8;
  font-size: 1.125em;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  pointer-events: none;
  user-select: none;
}

.bd-breadcrumb__link {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  color: #64748b;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 3px;
  transition: color 0.15s ease;
}

.bd-breadcrumb__link:hover {
  color: #0f766e;
}

.bd-breadcrumb__link:focus-visible {
  outline: 2px solid #14b8a6;
  outline-offset: 2px;
}

.bd-breadcrumb__label--short {
  display: none;
}

.bd-breadcrumb__current {
  display: inline-block;
  max-width: 100%;
  font-weight: 600;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(51, 190, 179, 0.1);
  border: 1px solid rgba(51, 190, 179, 0.22);
}

.bd-breadcrumb__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 100px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}

.bd-breadcrumb__back i,
.bd-breadcrumb__back svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.bd-breadcrumb__back:hover {
  color: #0f766e;
  border-color: rgba(20, 184, 166, 0.45);
  background: rgba(20, 184, 166, 0.06);
}

.bd-breadcrumb__back:focus-visible {
  outline: 2px solid #14b8a6;
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .bd-breadcrumb-wrap {
    gap: 12px;
  }

  .bd-breadcrumb__label--long {
    display: none;
  }

  .bd-breadcrumb__label--short {
    display: inline;
  }

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

  .bd-breadcrumb__back {
    padding: 8px;
    border-radius: 50%;
  }
}

/* Bonus detail — 3-column panel (bonus.html) */
.page-bonus-detail .bonus-detail-page .container,
.page-bonus-detail .bd-breadcrumb-wrap.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--bc-inline-padding-x);
  padding-right: var(--bc-inline-padding-x-end);
}

.page-bonus-detail .bd-section-head {
  max-width: none;
}

.bd-panel {
  position: relative;
  padding: clamp(24px, 4vw, 40px) 0 clamp(32px, 5vw, 48px);
  background: #eef1f5;
}

.bd-panel__card {
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  align-items: stretch;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 16px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.bd-col {
  min-width: 0;
  padding: clamp(22px, 3vw, 28px);
}

.bd-col-trust {
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
  border-right: 1px solid rgba(148, 163, 184, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bd-brand-logo {
  width: 100%;
  max-width: 120px;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.bd-brand-logo.bd-hero-frame--cover {
  max-width: 100%;
  aspect-ratio: 4 / 3;
}

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

.bd-brand-img.bd-hero-img--logo,
.bd-brand-img--logo {
  object-fit: contain;
  padding: 14px;
  box-sizing: border-box;
}

.bd-brand-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  margin: 0 0 6px;
}

.bd-brand-name {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.bd-brand-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.bd-brand-rating .stars-meter {
  font-size: 0.85rem;
}

.bd-brand-rating__score {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #334155;
}

.bd-trust-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.bd-trust-chips li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #475569;
  padding: 7px 10px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  line-height: 1.35;
}

.bd-trust-chips li i,
.bd-trust-chips li svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--primary);
}

.bd-col-details {
  border-right: 1px solid rgba(148, 163, 184, 0.18);
}

.bd-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.bd-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
}

.bd-type-pill {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: #e6f7f5;
  color: #0d9488;
  border: none;
}

.bonus-detail-page .bd-title {
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.22;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.bd-offer-card {
  padding: 16px 18px;
  margin-bottom: 0;
  border-radius: 12px;
  background: #e6f7f5;
  border: 1px solid rgba(51, 190, 179, 0.18);
}

.bd-amount-line {
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 700;
  color: #0f766e;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.bd-amount-line:empty {
  display: none;
}

.bd-offer-card:has(.bd-amount-line:empty):not(:has(.bd-date-row:not([hidden]))) {
  display: none;
}

.bd-dates-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bd-date-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}

.bd-date-row i,
.bd-date-row svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: #94a3b8;
}

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

.bd-desc-wrap {
  margin: 16px 0 0;
  padding: 0;
}

.bd-desc-wrap[hidden] {
  display: none !important;
}

.bd-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #64748b;
  margin: 0;
}

.bd-quick-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
}

.bd-quick-fact {
  padding: 12px 14px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.bd-quick-fact dt {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
  margin: 0 0 4px;
}

.bd-quick-fact dd {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  line-height: 1.4;
}

.bd-col-action {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.bd-action-title {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.bd-action-lede {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #64748b;
  margin: 0 0 18px;
}

.bd-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 auto;
  width: 100%;
}

.bonus-detail-page .bd-actions .btn {
  min-height: 48px;
  padding: 12px 1rem;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.bonus-detail-page .bd-actions .btn i,
.bonus-detail-page .bd-actions .btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.bonus-detail-page .bd-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(51, 190, 179, 0.28);
}

.bonus-detail-page .bd-btn-secondary {
  border-color: #e2e8f0;
  background: #ffffff;
  color: #0f172a;
}

.bonus-detail-page .bd-btn-secondary:hover {
  border-color: #cbd5e1;
  color: #0f172a;
  background: #ffffff;
}

.bd-compliance {
  font-size: 0.65rem;
  font-weight: 400;
  color: #94a3b8;
  margin: 16px 0 0;
  padding-top: 0;
  border-top: none;
  line-height: 1.5;
  text-align: center;
}

.bd-section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.6rem);
  font-weight: 700;
  color: #020617;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.bd-section-head {
  margin-bottom: 24px;
  max-width: var(--container-max-width);
}

.bd-section-head .bd-section-title {
  margin-bottom: 10px;
}

.bd-section-head .bd-section-title::after {
  content: '';
  display: block;
  width: 52px;
  height: 3px;
  margin-top: 14px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), #22d3ee);
}

.bd-section-dek {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

.bd-section-head .bd-section-dek {
  margin-top: 0.65rem;
}

.bd-code-section {
  margin-bottom: 22px;
}

.bd-keyfacts--panel .bd-code-card.bd-code-card--panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
  max-width: none;
  margin: 0;
  padding: 16px 20px;
  text-align: left;
  background: linear-gradient(90deg, rgba(51, 190, 179, 0.08) 0%, #f8fafc 42%, #ffffff 100%);
  border: 1px solid #e2e8f0;
  border-left: 3px solid rgba(51, 190, 179, 0.75);
  border-radius: var(--radius-md);
  box-shadow: none;
}

.bd-code-card__text {
  flex: 1;
  min-width: 0;
}

.bd-code-card--panel .bd-code-heading {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
  margin: 0 0 6px;
}

.bd-code-card--panel .bd-code-value {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.bd-code-card--panel .bd-code-copy {
  flex-shrink: 0;
  min-height: 42px;
}

.bd-code-card {
  position: relative;
  max-width: 28rem;
  margin: 0 auto;
  padding: 1.75rem 1.5rem 1.5rem;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(14, 165, 233, 0.38);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.bd-code-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.bd-code-value {
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #0d9488;
  margin: 0 0 16px;
  word-break: break-word;
}

.bd-code-value.bd-code-value--muted {
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  font-size: 1rem;
}

.bd-code-copy {
  min-height: 44px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 560px) {
  .bd-keyfacts--panel .bd-code-card.bd-code-card--panel {
    flex-direction: column;
    align-items: stretch;
  }

  .bd-keyfacts--panel .bd-code-card--panel .bd-code-copy {
    width: 100%;
  }
}

.bd-keyfacts {
  padding-bottom: 48px;
}

.bd-keyfacts--panel {
  padding: 28px 24px 40px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  border-top: 3px solid rgba(51, 190, 179, 0.45);
  box-shadow:
    var(--shadow-sm),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.bd-facts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

.bd-fact {
  margin: 0;
  padding: 18px 20px;
  background: linear-gradient(180deg, #fafbfc 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bd-fact:hover {
  border-color: #cbd5e1;
  box-shadow: var(--shadow-sm);
}

.bd-fact dt {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #94a3b8;
  margin-bottom: 8px;
}

.bd-fact dd {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.45;
}

.bd-terms-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.bd-terms-section-head {
  margin-bottom: 44px;
}

.bd-terms-section .bd-section-head .bd-section-title {
  margin-bottom: 12px;
}

.bd-terms-section .bd-section-head .bd-section-dek {
  margin-top: 0.85rem;
  max-width: var(--container-max-width);
}

.bd-terms-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 36px 44px;
  align-items: start;
}

.bd-terms-main {
  min-width: 0;
}

.bd-terms-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* Sticky the whole column so inner cards never overlap each other while scrolling */
  position: sticky;
  top: calc(var(--sticky-header-offset) + 0.75rem);
  align-self: start;
  z-index: 1;
}

.bd-sidebar-card {
  padding: 22px 20px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.bd-sidebar-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #020617;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.bd-sidebar-text {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 16px;
}

.bd-sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bd-sidebar-actions .btn {
  width: 100%;
  justify-content: center;
  min-height: 46px;
}

.bd-sidebar-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bd-sidebar-links li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #f1f5f9;
}

.bd-sidebar-links li:last-child {
  border-bottom: 0;
}

.bd-sidebar-links a {
  display: block;
  padding: 12px 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  transition: color 0.15s ease;
}

.bd-sidebar-links a:hover {
  color: var(--primary);
}

.bd-sidebar-card--hint {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-style: dashed;
}

.bd-sidebar-hint {
  font-size: 0.78rem;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
}

.bd-terms-main .bd-terms-prose.cr-article {
  max-width: none;
}

.bd-terms-prose.cr-article {
  max-width: var(--container-max-width);
  margin-top: 0;
  padding: 40px 40px 44px;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.bd-terms-prose.cr-article .rich-text-body,
.bd-terms-prose.cr-article .bonus-terms-md {
  font-size: 1.02rem;
  line-height: 1.75;
}

.bd-terms-prose.cr-article .rich-text-body p {
  margin: 0 0 1.3em;
}

.bd-terms-prose.cr-article .rich-text-body h2,
.bd-terms-prose.cr-article .rich-text-body h3 {
  font-family: var(--font-serif);
  margin-top: 1.85em;
  margin-bottom: 0.85em;
}

.bd-terms-prose.cr-article .rich-text-body h2:first-child,
.bd-terms-prose.cr-article .rich-text-body h3:first-child {
  margin-top: 0;
}

.bd-terms-prose.cr-article .rich-text-body ul,
.bd-terms-prose.cr-article .rich-text-body ol {
  margin: 0 0 1.35em;
  padding-left: 1.5em;
}

.bd-terms-prose.cr-article .rich-text-body li {
  margin-bottom: 0.65em;
  line-height: 1.65;
}

.bd-terms-prose.cr-article .rich-text-body li:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .bd-panel__card {
    grid-template-columns: 1fr;
  }

  .bd-col-trust {
    order: 0;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    grid-template-areas:
      'logo name rating'
      'chips chips chips';
    align-items: center;
    column-gap: 14px;
    row-gap: 14px;
    text-align: left;
    border-right: none;
    border-top: none;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    padding-bottom: clamp(18px, 3vw, 24px);
  }

  .bd-col-trust:not(:has(.bd-brand-rating:not([hidden]))) {
    grid-template-columns: 56px minmax(0, 1fr);
    grid-template-areas:
      'logo name'
      'chips chips';
  }

  .bd-brand-logo {
    grid-area: logo;
    align-self: center;
    width: 56px;
    max-width: 56px;
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  }

  .bd-brand-img.bd-hero-img--logo,
  .bd-brand-img--logo {
    padding: 8px;
  }

  .bd-brand-label {
    display: none;
  }

  .bd-brand-name {
    grid-area: name;
    align-self: center;
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .bd-brand-rating {
    grid-area: rating;
    align-self: center;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    margin: 0;
    text-align: right;
  }

  .bd-brand-rating .stars-meter {
    font-size: 0.72rem;
    flex-shrink: 0;
  }

  .bd-brand-rating__score {
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .bd-trust-chips {
    grid-area: chips;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .bd-trust-chips li {
    flex: 1 1 auto;
    justify-content: flex-start;
    padding: 8px 12px;
  }

  .bd-col-details {
    order: 1;
    border-right: none;
  }

  .bd-col-action {
    order: 2;
    grid-column: auto;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
  }

  .bd-quick-facts {
    grid-template-columns: 1fr;
  }

  .bd-compliance {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .bd-brand-logo {
    width: 52px;
    max-width: 52px;
  }

  .bd-col-trust:not(:has(.bd-brand-rating:not([hidden]))) {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .bd-brand-name {
    font-size: 1.125rem;
  }
}

@media (max-width: 340px) {
  .bd-col-trust {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    column-gap: 10px;
    row-gap: 12px;
    padding: 16px 14px 18px;
  }

  .bd-col-trust:not(:has(.bd-brand-rating:not([hidden]))) {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .bd-brand-logo {
    width: 48px;
    max-width: 48px;
  }

  .bd-brand-name {
    font-size: 1.0625rem;
  }

  .bd-brand-rating {
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
  }

  .bd-brand-rating .stars-meter {
    font-size: 0.65rem;
  }

  .bd-brand-rating__score {
    font-size: 0.6875rem;
  }

  .bd-col-details,
  .bd-col-action {
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (max-width: 900px) {
  .bd-meta-row {
    justify-content: flex-start;
  }

  .bd-section-head {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .bd-section-head .bd-section-title::after {
    margin-left: auto;
    margin-right: auto;
  }

  .bd-terms-prose.cr-article {
    padding: 28px 22px 36px;
  }

  .bd-terms-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .bd-terms-section {
    padding-top: 48px;
  }
}

/* Newsletter Section */
.newsletter-section {
  padding: 0 32px 100px;
}

.nl-box {
  background: #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}

.nl-watermark {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%) rotate(-10deg);
  width: 300px;
  height: 300px;
  color: white;
  opacity: 0.5;
  stroke-width: 1px;
}

.nl-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max-width);
}

.nl-content h2 {
  font-size: 2.5rem;
  font-family: var(--font-serif);
  margin-bottom: 16px;
  color: #0f172a;
}

.nl-content p {
  font-size: 1.05rem;
  color: #334155;
  margin-bottom: 32px;
  line-height: 1.6;
}

.nl-form {
  display: flex;
  gap: 16px;
}

.nl-form input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-sans);
  box-shadow: var(--shadow-sm);
  outline: none;
  transition: box-shadow 0.2s;
}

.nl-form input:focus {
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.2);
}

.nl-form button {
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 1024px) {
  .bonuses-hero__inner {
    flex-direction: column;
    align-items: stretch;
    gap: var(--section-gap);
  }

  .bh-content {
    padding-right: 0;
    text-align: center;
  }

  .bh-kicker {
    justify-content: center;
  }

  .bh-pills {
    justify-content: center;
  }

  .bh-visual {
    flex: none;
    width: 100%;
    max-width: 28rem;
    margin: 0 auto;
  }

  .bh-score-float {
    left: 16px;
    bottom: -14px;
    transform: none;
    text-align: left;
  }

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

  .fb-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .bonuses-filter-bar .fb-sort {
    width: 100%;
  }

  .bonuses-filter-bar .fb-sort-field {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .bonuses-filter-bar .fb-sort-select {
    flex: 1 1 auto;
    min-width: 0;
  }

  .fb-sort-label {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  :root {
    --bc-inline-padding-x: max(20px, env(safe-area-inset-left, 0px));
    --bc-inline-padding-x-end: max(20px, env(safe-area-inset-right, 0px));
  }

  .bonuses-hero {
    padding-bottom: calc(var(--section-gap) + 20px);
  }

  .bh-visual {
    margin-bottom: 12px;
  }

  .bonuses-filter-bar .fb-inner {
    padding: 20px 16px 18px;
    border-radius: 14px;
  }

  .fb-tabs {
    justify-content: center;
  }

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

  .bonuses-grid-loading,
  .bonuses-grid-empty,
  .bonuses-grid-error {
    padding: 56px 20px;
  }

  .nl-form {
    flex-direction: column;
  }

  .nl-watermark {
    display: none;
  }

  .nl-box {
    padding: 40px 24px;
    text-align: center;
  }
}

/* ========================================= */
/* Providers Page specific */
/* ========================================= */
.providers-page {
  background: #fafafa;
  padding-bottom: var(--section-gap);
}

/* Providers hub hero (matches bonuses / static page pattern) */
.providers-hero {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-body) 100%);
  border-bottom: 1px solid var(--border-light);
}

.providers-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 4vw, 48px);
}

.providers-hero__content {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
  padding-right: clamp(8px, 2vw, 20px);
}

.page-providers .providers-hero .gh-kicker {
  margin-bottom: clamp(14px, 2vw, 20px);
}

.providers-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.15rem, 3.8vw + 0.5rem, 3.35rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: clamp(16px, 2vw, 22px);
  color: #020617;
}

.providers-hero__title em {
  font-style: normal;
  color: var(--primary);
}

.providers-hero__desc {
  font-size: clamp(0.8125rem, 0.25vw + 0.78rem, 0.9rem);
  color: #64748b;
  line-height: 1.62;
  margin-bottom: 0;
  max-width: none;
}

.providers-hero__desc a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.providers-hero__desc a:hover {
  color: #1e3a5f;
}

.providers-hero__pills {
  margin-top: clamp(20px, 2.5vw, 28px);
}

.providers-hero__visual {
  flex: 0 0 clamp(300px, 36vw, 440px);
  width: clamp(300px, 36vw, 440px);
  max-width: 100%;
  min-width: 0;
  margin: 0;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 28px);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 16px 40px -12px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  box-sizing: border-box;
}

.providers-hero__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Providers listing: keep layout within the viewport (no horizontal scroll) */
.page-providers {
  overflow-x: clip;
}

.page-providers .providers-page {
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.page-providers .providers-listing-seo {
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 1024px) {
  .providers-hero__inner {
    flex-direction: column;
    align-items: stretch;
    gap: var(--section-gap);
  }

  .providers-hero__content {
    padding-right: 0;
    text-align: center;
  }

  .page-providers .providers-hero .gh-kicker {
    justify-content: center;
  }

  .providers-hero__pills {
    justify-content: center;
  }

  .providers-hero__visual {
    flex: none;
    width: 100%;
    max-width: 28rem;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-providers .container {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }
}

.dh-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}

.dh-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.dh-content {
  flex: 1;
  max-width: var(--container-max-width);
}

.dh-title {
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-family: var(--font-serif);
  font-style: normal;
  line-height: 1;
  margin-bottom: 20px;
  color: #0f172a;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.dh-desc {
  font-size: 1.25rem;
  font-family: var(--font-serif);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: var(--container-max-width);
}

.dh-stats {
  flex-shrink: 0;
  padding-bottom: 20px;
}

.dh-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e5e7eb;
  padding: 12px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #334155;
}

.dh-badge i {
  width: 18px;
  height: 18px;
  color: #b45309;
}

/* Providers Filter Bar */
.providers-filter-bar {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.pfb-inner {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: clamp(18px, 2.5vw, 24px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 24px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 40px -12px rgba(15, 23, 42, 0.08);
}

.pfb-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 10px;
  flex: 1 1 320px;
  min-width: 0;
  padding: 8px;
  background: #f1f5f9;
  border-radius: 100px;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.pfb-btn {
  min-width: 0;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
  color: #64748b;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  line-height: 1.3;
  white-space: normal;
}

.pfb-btn:hover {
  color: #0f172a;
  background: rgba(255, 255, 255, 0.65);
}

.pfb-btn:focus-visible {
  outline: 2px solid rgba(51, 190, 179, 0.5);
  outline-offset: 2px;
}

.pfb-btn.active {
  color: #0f172a;
  font-weight: 700;
  background: rgba(51, 190, 179, 0.14);
  border-color: rgba(51, 190, 179, 0.28);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.pfb-btn__label--short {
  display: none;
}

.pfb-btn.text-only {
  padding: 10px 0;
  background: transparent;
}

.pfb-btn.text-only:hover {
  color: #0f172a;
}

.pfb-sort {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  flex: 0 1 auto;
  min-width: min(100%, 240px);
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.sort-label {
  flex-shrink: 0;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pfb-sort-select {
  appearance: none;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 44px;
  padding: 10px 36px 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background:
    #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 12px center;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  max-width: 100%;
}

.pfb-sort-select:hover {
  border-color: rgba(51, 190, 179, 0.45);
}

.pfb-sort-select:focus {
  outline: 2px solid rgba(51, 190, 179, 0.45);
  outline-offset: 2px;
}

.pfb-sort-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--primary);
}

.pfb-sort-btn i {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

/* Providers Grid - same max-width as slots (`.container` horizontal padding preserved) */
.providers-grid-section {
  padding-top: 0;
  padding-bottom: var(--section-gap);
}

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

.providers-pagination-wrap,
.guides-pagination-wrap {
  display: none;
  margin-top: 24px;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Slots + providers + guides: pager card; “go to” hidden when few pages */
.listing-pager {
  flex-direction: column;
  margin-top: 28px;
  width: 100%;
  max-width: min(100%, 42rem);
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  align-items: stretch;
  gap: 14px;
  flex-wrap: wrap;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 8px 24px rgba(15, 23, 42, 0.06);
}

.listing-pager.listing-pager--hide-goto {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 16px;
}

.listing-pager:not(.listing-pager--hide-goto) {
  align-items: center;
}

@media (min-width: 640px) {
  .listing-pager:not(.listing-pager--hide-goto) {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 20px;
  }

  .listing-pager:not(.listing-pager--hide-goto) .listing-pager__goto {
    padding-left: 18px;
    margin-left: 2px;
    border-left: 1px solid #e2e8f0;
  }
}

.listing-pager--hide-goto .listing-pager__goto {
  display: none;
}

.listing-pager__main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  width: 100%;
}

.listing-pager.listing-pager--hide-goto .listing-pager__main {
  width: auto;
  flex: 0 1 auto;
}

.listing-pager__numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  max-width: min(100%, 36rem);
  min-height: 44px;
}

.listing-pager__page {
  min-width: 2.35rem;
  height: 2.35rem;
  padding: 0 8px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  color: #334155;
  font-size: 0.8125rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease;
}

.listing-pager__page:hover:not(.is-active) {
  background: rgba(51, 190, 179, 0.18);
  border-color: rgba(51, 190, 179, 0.35);
  color: #0f766e;
}

.listing-pager__page.is-active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  cursor: default;
}

.listing-pager__page:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.listing-pager__ellipsis {
  padding: 0 2px;
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 700;
  user-select: none;
  align-self: center;
}

.listing-pager__goto {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
  font-size: 0.875rem;
  color: #64748b;
}

.listing-pager__goto-label {
  font-weight: 600;
  color: #475569;
}

.listing-pager__goto-input {
  width: 4.25rem;
  padding: 8px 10px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  text-align: center;
  color: #0f172a;
  background: #fff;
  -moz-appearance: textfield;
}

.listing-pager__goto-input::-webkit-outer-spin-button,
.listing-pager__goto-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.listing-pager__goto-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(51, 190, 179, 0.2);
}

.listing-pager__goto-total {
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

.listing-pager__goto-btn {
  padding: 7px 14px;
  border: 2px solid rgba(51, 190, 179, 0.55);
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  color: var(--primary);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.listing-pager__goto-btn:hover {
  background: rgba(51, 190, 179, 0.1);
  border-color: var(--primary);
}

.listing-pager__goto-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.listing-pager__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #f1f5f9;
  color: #334155;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.listing-pager__btn:hover:not(:disabled) {
  background: rgba(51, 190, 179, 0.18);
  color: #0f766e;
  transform: scale(1.04);
}

.listing-pager__btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.listing-pager__btn:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  transform: none;
}

.listing-pager__btn i,
.listing-pager__btn svg {
  width: 22px;
  height: 22px;
}

.listing-pager__btn--first svg,
.listing-pager__btn--last svg {
  width: 20px;
  height: 20px;
}

.provider-card {
  background: var(--bg-card);
  border-radius: 14px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 32px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.85);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s, border-color 0.25s;
}

.provider-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 4px 8px rgba(15, 23, 42, 0.04),
    0 24px 48px rgba(15, 23, 42, 0.12);
  border-color: rgba(51, 190, 179, 0.28);
}

.pc-image-wrap {
  aspect-ratio: 16 / 9;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
  /* Outer frame: slightly grey rail around the mat */
  background: #d8dee6;
  border-bottom: 1px solid var(--border-light);
}

/* Light grey mat: keeps dark logos readable without pure white */
.pc-image-wrap::before {
  content: '';
  position: absolute;
  inset: max(10px, 3%);
  background: #f1f5f9;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  z-index: 0;
}

/* White wordmarks (e.g. Red Tiger): dark mat. Set via .pc-image-wrap--mat-dark or Strapi LogoCardMat=dark */
.pc-image-wrap--mat-dark {
  background: #94a3b8;
  border-bottom-color: #64748b;
}

.pc-image-wrap--mat-dark::before {
  background: linear-gradient(165deg, #1e293b 0%, #0f172a 100%);
  border-color: #334155;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pc-image {
  position: relative;
  z-index: 1;
  width: 80%;
  max-width: 80%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
}

.pc-content {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.pc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 8px;
}

.pc-badge {
  background: #e2e8f0;
  padding: 5px 8px;
  border-radius: 4px;
  font-size: 0.55rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pc-rating-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}

.pc-score {
  font-size: 1.5rem;
  font-weight: 800;
  color: #b45309;
  line-height: 1;
  letter-spacing: -0.02em;
}

.review-stars.small i {
  width: 11px;
  height: 11px;
  color: #b45309;
}

.pc-title {
  font-size: clamp(1.05rem, 1.15vw, 1.25rem);
  font-family: var(--font-serif);
  font-weight: 700;
  color: #020617;
  margin-bottom: 12px;
  line-height: 1.2;
}

.pc-signature {
  margin-bottom: 16px;
  flex: 1;
  min-height: 0;
}

.pc-sig-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pc-sig-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pc-sig-list li {
  position: relative;
  padding-left: 12px;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-muted);
  font-family: var(--font-serif);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pc-sig-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 3px;
  height: 3px;
  background: var(--primary);
  border-radius: 50%;
}

.pc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
  margin-top: auto;
}

.pc-portfolio {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.port-label {
  font-size: 0.6rem;
  color: var(--text-light);
}

.port-value {
  font-size: 0.9rem;
  color: #020617;
}

.port-value strong {
  font-weight: 800;
  font-size: 1.05rem;
}

.pc-action-btn {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--primary);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(51, 190, 179, 0.35);
  transition: transform 0.2s, background 0.2s;
}

.pc-action-btn:hover {
  background: var(--primary-hover);
  transform: translateX(3px);
}

.pc-action-btn i {
  width: 18px;
  height: 18px;
}

/* Responsive - align with slots listing breakpoints */
@media (max-width: 1024px) {
  .dh-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .pfb-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px;
  }

  .pfb-tabs {
    flex: 1 1 auto;
    width: 100%;
  }

  .pfb-sort {
    width: 100%;
    flex: 1 1 auto;
    min-width: 0;
    padding: 12px 14px;
    background: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 12px;
  }

  .pfb-sort-select {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 1000px) {
  .providers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .dh-title {
    font-size: 3rem;
  }

  .pfb-inner {
    padding: 14px;
    gap: 14px;
  }

  .pfb-tabs {
    gap: 8px;
    padding: 6px;
  }

  .pfb-btn {
    padding: 10px 10px;
    font-size: clamp(0.72rem, 2.8vw, 0.8125rem);
    min-height: 42px;
  }

  .pfb-sort {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
  }

  .sort-label {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .providers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 340px) {
  .pfb-inner {
    padding: 12px;
    gap: 12px;
    border-radius: 14px;
  }

  .pfb-tabs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    border-radius: 14px;
  }

  .pfb-btn {
    width: 100%;
    min-height: 48px;
    padding: 14px 18px;
    font-size: 0.875rem;
    line-height: 1.2;
    white-space: nowrap;
  }

  .pfb-btn__label--long {
    display: none;
  }

  .pfb-btn__label--short {
    display: inline;
  }

  .pfb-sort {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px 12px;
  }

  .pfb-sort-select {
    min-height: 46px;
  }
}

/* ========================================= */
/* Single Provider Page specific */
/* ========================================= */
.page-provider-detail .container {
  max-width: var(--container-max-width);
  padding-left: max(32px, env(safe-area-inset-left));
  padding-right: max(32px, env(safe-area-inset-right));
}

.provider-page {
  background: #fafafa;
  padding-bottom: 120px;
}

/* Redesigned provider page (2026-04): breadcrumb, refined hero, facts strip,
   signature games row, review + sticky summary sidebar. */

.page-provider-detail .pv-breadcrumb {
  padding-top: clamp(20px, 2.8vw, 32px);
  padding-bottom: clamp(12px, 1.8vw, 18px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.pv-bc-link {
  color: var(--text-muted);
  font-weight: 600;
  text-decoration: none;
}

.pv-bc-link:hover {
  color: var(--primary);
}

.pv-bc-sep {
  color: #cbd5e1;
}

.pv-bc-current {
  color: #0f172a;
  font-weight: 700;
}

.page-provider-detail .provider-hero.provider-hero--refined {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 360px);
  gap: clamp(36px, 4vw, 56px);
  align-items: start;
  padding: clamp(32px, 4.5vw, 56px);
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 60%, #eef2f7 100%);
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 14px 40px rgba(15, 23, 42, 0.06);
  margin-bottom: clamp(28px, 3.5vw, 44px);
}

.ph-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(20px, 2.5vw, 28px);
}

.ph-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}

.ph-chip[hidden] {
  display: none !important;
}

.ph-chip--tier {
  background: #0f172a;
  color: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.18);
}

.ph-chip--top {
  background: linear-gradient(180deg, rgba(51, 190, 179, 0.14) 0%, rgba(51, 190, 179, 0.08) 100%);
  color: #0f766e;
  border: 1px solid rgba(51, 190, 179, 0.35);
}

.ph-chip--top i {
  width: 13px;
  height: 13px;
}

.page-provider-detail .provider-hero--refined .ph-title {
  font-size: clamp(2rem, 3.2vw + 0.75rem, 3rem);
  margin-bottom: clamp(16px, 2vw, 22px);
}

.page-provider-detail .provider-hero--refined .ph-desc {
  font-style: normal;
  font-family: var(--font-sans, Poppins, system-ui, sans-serif);
  font-size: clamp(1rem, 0.8vw + 0.75rem, 1.1rem);
  line-height: 1.6;
  color: #334155;
  margin-bottom: clamp(22px, 3vw, 32px);
}

.page-provider-detail .provider-hero--refined .ph-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  margin-top: 0;
  padding-bottom: 20px;
}

.page-provider-detail .provider-hero--refined .ph-actions[hidden] {
  display: none;
}

.page-provider-detail .provider-hero--refined .ph-btn-site {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-provider-detail .provider-hero--refined .ph-btn-site i {
  width: 14px;
  height: 14px;
}

.ph-btn-anchor {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px dashed rgba(51, 190, 179, 0.5);
  padding-bottom: 10px;
}

.ph-btn-anchor:hover {
  color: var(--primary-hover);
  border-bottom-color: var(--primary-hover);
}

.ph-score-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 24px 22px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.05),
    0 10px 28px rgba(15, 23, 42, 0.07);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ph-score-card__top {
  display: grid;
  grid-template-columns: minmax(120px, 0.95fr) minmax(0, 1.15fr);
  gap: 20px 28px;
  align-items: center;
}

.ph-score-card__col--logo {
  min-width: 0;
}

.ph-score-card__col--score {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  min-width: 0;
}

.ph-score-card__brand {
  margin-bottom: 0;
  display: flex;
  justify-content: flex-start;
}

.page-provider-detail .ph-score-card__logo-mat {
  max-width: 100%;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border-bottom: none;
}

.ph-score-card__label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
}

.ph-score-card__headline {
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
}

.ph-score-num {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 3vw + 1rem, 3.25rem);
  font-weight: 700;
  color: #020617;
  letter-spacing: -0.02em;
}

.ph-score-denom {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: #94a3b8;
}

.ph-score-card__stars {
  line-height: 1;
}

.ph-score-card__stars .stars-meter {
  font-size: 1.05rem;
}

.ph-score-card__meta {
  margin: 4px 0 0;
  padding: 18px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  border-top: 1px solid #f1f5f9;
}

.ph-score-meta-row dt {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
  margin: 0 0 4px;
}

.ph-score-meta-row dd {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  font-variant-numeric: tabular-nums;
}

.page-provider-detail .pv-facts-strip {
  margin-top: clamp(8px, 1.5vw, 16px);
}

.pv-facts-strip {
  margin-bottom: clamp(40px, 4.5vw, 56px);
}

.pv-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.pv-fact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: clamp(20px, 2.5vw, 26px) clamp(18px, 2.2vw, 24px);
  border-right: 1px solid #f1f5f9;
  min-width: 0;
}

.pv-fact:last-child {
  border-right: none;
}

.pv-fact__label {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
}

.pv-fact__value {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  word-break: break-word;
}

.pv-signature-section {
  margin-top: clamp(8px, 1.2vw, 16px);
  margin-bottom: clamp(40px, 5vw, 56px);
}

.pv-signature-head {
  margin-bottom: clamp(22px, 2.5vw, 30px);
}

.pv-section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  font-weight: 700;
  color: #020617;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.pv-signature-desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 62ch;
}

.pv-signature-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.pv-signature-name {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-family: var(--font-serif);
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pv-signature-name:hover {
  border-color: rgba(51, 190, 179, 0.45);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.07);
}

.page-provider-detail .provider-content-section {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.page-provider-detail .provider-layout {
  gap: clamp(32px, 4vw, 56px);
}

.pv-review-head {
  margin-bottom: clamp(18px, 2vw, 24px);
}

.pv-review-head h2 {
  margin: 0 0 6px;
}

.pv-review-meta {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.page-provider-detail .provider-body {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 0;
}

.page-provider-detail .provider-body p {
  margin: 0 0 1.1em;
}

.page-provider-detail .provider-body p:last-child {
  margin-bottom: 0;
}

.pv-summary-aside {
  align-self: start;
}

.pv-summary-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: clamp(22px, 2.5vw, 28px) clamp(20px, 2.2vw, 24px) clamp(20px, 2.2vw, 24px);
  box-shadow:
    0 1px 3px rgba(15, 23, 42, 0.05),
    0 14px 36px rgba(15, 23, 42, 0.07);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pv-summary-card__top {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.5vw, 24px);
  align-items: stretch;
}

.pv-summary-card__col--logo {
  min-width: 0;
  width: 100%;
}

.pv-summary-card__col--score {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  min-width: 0;
  width: 100%;
}

.pv-summary-rating-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(16px, 3vw, 26px);
  row-gap: 0;
  width: 100%;
  align-items: start;
}

.pv-summary-rating-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  min-width: 0;
}

.pv-summary-rating-block--player {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
  border-left: 1px solid #e2e8f0;
  padding-left: clamp(14px, 2.5vw, 22px);
  margin-left: 0;
}

.pv-summary-score--player {
  margin-top: 0;
}

.pv-summary-num--player {
  font-size: clamp(1.55rem, 2.8vw, 1.85rem);
}

.pv-summary-player-link {
  font-family: var(--font-sans, Poppins, system-ui, sans-serif);
  font-size: 0.8rem;
  font-weight: 600;
  color: #0d9488;
  text-decoration: underline;
  text-decoration-color: rgba(13, 148, 136, 0.45);
  text-underline-offset: 3px;
  margin-top: 4px;
  transition: color 0.18s, text-decoration-color 0.18s;
}

.pv-summary-player-link:hover {
  color: #0f766e;
  text-decoration-color: rgba(15, 118, 110, 0.55);
}

@media (max-width: 480px) {
  .pv-summary-rating-stack {
    grid-template-columns: 1fr;
    row-gap: clamp(14px, 2vw, 18px);
    column-gap: 0;
  }

  .pv-summary-rating-block--player {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #e2e8f0;
    padding-top: clamp(14px, 2vw, 18px);
  }
}

.pv-summary-logo-row {
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}

.page-provider-detail .pv-summary-logo-mat {
  max-width: 240px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  overflow: hidden;
  border-bottom: none;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  box-sizing: border-box;
}

.pv-summary-label {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #64748b;
}

.pv-summary-score {
  display: flex;
  align-items: baseline;
  gap: 5px;
  line-height: 1.05;
}

.pv-summary-num {
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 2.8vw, 1.85rem);
  font-weight: 700;
  color: #020617;
  letter-spacing: -0.02em;
}

.pv-summary-denom {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-weight: 600;
  color: #94a3b8;
}

.pv-summary-stars {
  line-height: 1;
  margin-top: 2px;
}

.pv-summary-stars .stars-meter {
  font-size: 0.88rem;
}

.pv-summary-meta {
  margin: 4px 0 8px;
  padding: clamp(14px, 2vw, 18px) 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
  border-top: 1px solid #e2e8f0;
}

.pv-summary-meta dt {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  margin: 0 0 4px;
}

.pv-summary-meta dd {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
  font-variant-numeric: tabular-nums;
  line-height: 1.3;
}

.pv-summary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pv-summary-cta[hidden] {
  display: none;
}

.pv-summary-cta i {
  width: 14px;
  height: 14px;
}

.pv-summary-updated {
  margin: 4px 0 0;
  font-size: 0.74rem;
  font-weight: 500;
  color: #64748b;
  text-align: center;
  line-height: 1.45;
}

/* Sticky sidebar on desktop only */
@media (min-width: 1025px) {
  .page-provider-detail .pv-summary-aside {
    position: sticky;
    top: calc(var(--sticky-header-offset, 80px) + 16px);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .page-provider-detail .provider-hero.provider-hero--refined {
    grid-template-columns: 1fr;
  }

  .page-provider-detail .ph-right {
    width: 100%;
  }

  .ph-score-card__meta {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-provider-detail .provider-layout {
    flex-direction: column;
  }

  .page-provider-detail .provider-main {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  /* Full-width reading column (container padding only; no 68ch measure) */
  .page-provider-detail .provider-body {
    max-width: 100%;
  }

  .page-provider-detail .pv-signature-desc {
    max-width: none;
  }

  .pv-summary-aside {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-provider-detail .provider-hero.provider-hero--refined {
    padding: 24px 20px;
    border-radius: 14px;
    gap: 28px;
  }

  /* Score + summary cards: avoid cramped blocks on tablet / mobile */
  .page-provider-detail .ph-score-card {
    padding: 28px 24px 30px;
    gap: 20px;
  }

  .page-provider-detail .ph-score-card__top {
    gap: 22px 26px;
  }

  .page-provider-detail .ph-score-card__col--score {
    gap: 12px;
  }

  .page-provider-detail .ph-score-card__meta {
    grid-template-columns: 1fr 1fr;
    gap: 22px 26px;
    padding-top: 24px;
    margin-top: 8px;
  }

  .page-provider-detail .ph-score-meta-row dt {
    margin-bottom: 8px;
  }

  .page-provider-detail .pv-summary-card {
    padding: 28px 24px 30px;
    gap: 20px;
  }

  .page-provider-detail .pv-summary-card__top {
    gap: 22px;
  }

  .page-provider-detail .pv-summary-card__col--score {
    gap: 12px;
  }

  .page-provider-detail .pv-summary-meta {
    gap: 22px 26px;
    padding-top: 24px;
    margin-top: 8px;
  }

  .page-provider-detail .pv-summary-meta dt {
    margin-bottom: 8px;
  }

  .pv-facts {
    grid-template-columns: 1fr 1fr;
  }

  .pv-fact {
    border-right: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
  }

  .pv-fact:nth-child(2n) {
    border-right: none;
  }

  .pv-fact:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .page-provider-detail .pv-hero-lede__actions {
    gap: 10px;
  }

  .page-provider-detail .pv-hero-lede__actions .ph-btn-site {
    flex: 1 1 100%;
    justify-content: center;
  }

  .page-provider-detail .pv-hero-lede__actions .ph-btn-anchor {
    flex: 1 1 100%;
    text-align: center;
  }

  .page-slot-detail .pv-hero-lede__actions {
    gap: 10px;
  }

  .page-slot-detail .pv-hero-lede__actions .ph-btn-site {
    flex: 1 1 100%;
    justify-content: center;
  }

  .page-slot-detail .pv-hero-lede__actions .ph-btn-anchor {
    flex: 1 1 100%;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .ph-score-card__top {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ph-score-card__brand {
    justify-content: center;
  }

  .page-provider-detail .ph-score-card__logo-mat {
    max-width: 240px;
  }

  .ph-score-card__col--score {
    align-items: center;
    text-align: center;
  }

  .ph-score-card__headline {
    justify-content: center;
  }

  .pv-summary-card__top {
    gap: 22px;
  }

  .pv-summary-logo-row {
    justify-content: center;
  }

  .page-provider-detail .pv-summary-logo-mat {
    max-width: min(240px, 88vw);
  }

  .pv-summary-card__col--score {
    align-items: center;
    text-align: center;
  }

  .pv-summary-rating-stack,
  .pv-summary-rating-block {
    align-items: center;
  }

  .pv-summary-score {
    justify-content: center;
  }

  /* Narrow screens: one stat per row + dividers so the grid never feels cramped */
  .page-provider-detail .ph-score-card {
    padding: 30px 24px 32px;
    gap: 24px;
  }

  .page-provider-detail .ph-score-card__meta {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 24px;
    margin-top: 10px;
  }

  .page-provider-detail .ph-score-card__meta .ph-score-meta-row {
    padding: 18px 0;
    border-bottom: 1px solid #f1f5f9;
  }

  .page-provider-detail .ph-score-card__meta .ph-score-meta-row:first-of-type {
    padding-top: 0;
  }

  .page-provider-detail .ph-score-card__meta .ph-score-meta-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
  }

  .page-provider-detail .ph-score-meta-row dt {
    margin-bottom: 8px;
  }

  .page-provider-detail .pv-summary-card {
    padding: 30px 24px 32px;
    gap: 24px;
  }

  .page-provider-detail .pv-summary-meta {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 24px;
    margin-top: 10px;
  }

  .page-provider-detail .pv-summary-meta>div {
    padding: 18px 0;
    border-bottom: 1px solid #f1f5f9;
  }

  .page-provider-detail .pv-summary-meta>div:first-of-type {
    padding-top: 0;
  }

  .page-provider-detail .pv-summary-meta>div:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
  }

  .page-provider-detail .pv-summary-meta dt {
    margin-bottom: 8px;
  }
}

/* Provider Hero: grid layout, balanced columns, fits viewport width */
.provider-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, min(42vw, 420px));
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  padding:
    clamp(32px, 5vw, 56px) var(--bc-inline-padding-x-end) clamp(32px, 5vw, 56px) var(--bc-inline-padding-x);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: clamp(40px, 5vw, 64px);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.ph-left {
  min-width: 0;
}

.ph-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e2e8f0;
  color: var(--text-muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: clamp(16px, 2.5vw, 22px);
  text-transform: uppercase;
}

.ph-badge i {
  width: 14px;
  height: 14px;
  color: #475569;
  flex-shrink: 0;
}

.ph-title {
  font-size: clamp(2rem, 3.5vw + 0.75rem, 3.35rem);
  font-family: var(--font-serif);
  font-weight: 700;
  color: #020617;
  line-height: 1.12;
  margin-bottom: clamp(16px, 2.5vw, 22px);
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.ph-desc {
  font-size: clamp(1rem, 1.5vw + 0.6rem, 1.2rem);
  font-family: var(--font-serif);
  font-style: normal;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: min(65ch, 100%);
}

.ph-right {
  min-width: 0;
  width: 100%;
}

/* Provider stats card: dense grid, dividers, white surface */
.ph-stats-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-left: 4px solid var(--primary);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 32px rgba(15, 23, 42, 0.07);
  overflow: hidden;
}

.ph-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.ph-stats-card .stat-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px 16px 16px;
  margin: 0;
  border-right: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  min-width: 0;
  box-sizing: border-box;
}

.ph-stats-card .stat-group:nth-child(2n) {
  border-right: none;
}

.ph-stats-card .stat-group:nth-child(n + 5) {
  border-bottom: none;
}

.ph-stats-card .stat-group .stat-label {
  font-family: var(--font-sans, Poppins, system-ui, sans-serif);
  font-size: 0.625rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.35;
}

.ph-stats-card .stat-group .stat-val {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-family: var(--font-serif);
  font-weight: 700;
  color: #020617;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}

.ph-stats-card .stat-val--license {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  font-family: var(--font-sans, Poppins, system-ui, sans-serif);
}

.ph-stats-card .stat-val--license.is-stat-empty {
  font-weight: 500;
  font-style: italic;
  color: #94a3b8;
  font-size: 0.875rem;
}

.stat-val--rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  font-size: 1.25rem;
}

.ph-stats-card .stat-val--rating .review-stars {
  flex-shrink: 0;
  line-height: 1;
}

.ph-stats-card .stat-val--rating .stars-meter {
  font-size: 1.05rem;
}

.ph-stats-card .stat-val--rating #pv-rating-text {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
}

.ph-logo-row {
  margin-bottom: clamp(18px, 2.5vw, 24px);
  max-width: min(300px, 100%);
}

.ph-provider-hero-logo {
  max-width: 100%;
  border-radius: var(--radius-md, 8px);
  overflow: hidden;
}

.ph-actions {
  margin-top: clamp(20px, 3vw, 28px);
}

.page-provider-detail .ph-btn-site {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 20px;
}

.vm-list li.vm-muted {
  color: var(--text-muted);
  font-style: italic;
  padding-left: 0;
}

.vm-list li.vm-muted::before {
  display: none;
}

/* Provider Content Layout */
.provider-layout {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.provider-main {
  flex: 1;
  min-width: 0;
}

.provider-main h2 {
  margin-bottom: 32px;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: #020617;
}

.provider-main .mt-48 {
  margin-top: 64px;
}

.provider-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 64px;
}

.provider-body .rich-text-body p {
  margin: 0 0 1.1em;
}

.provider-body .rich-text-body p:last-child {
  margin-bottom: 0;
}

.provider-body .rich-text-body ul,
.provider-body .rich-text-body ol {
  margin: 0 0 1.05em;
  padding-left: 1.25em;
}

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

.game-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.game-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 24px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.game-overlay h3 {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  font-family: var(--font-serif);
}

/* Provider detail: flagship titles, editorial list (no stock imagery) */
.page-provider-detail .pv-portfolio {
  margin: 20px 0 0;
}

.page-provider-detail .pv-portfolio--flagship {
  max-width: var(--container-max-width);
}

.page-provider-detail .pv-flagship-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-provider-detail .pv-flagship-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: linear-gradient(180deg, #fafbfc 0%, #f4f6f8 100%);
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--primary);
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-provider-detail .pv-flagship-item:hover {
  border-color: rgba(51, 190, 179, 0.45);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.07);
}

.page-provider-detail .pv-flagship-index {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 700;
  color: #94a3b8;
  min-width: 2.25rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.page-provider-detail .pv-flagship-name {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.35;
}

.page-provider-detail .pv-portfolio-empty {
  margin: 0;
  padding: 20px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Provider detail: CMS featured games, card with real art or icon placeholder */
.page-provider-detail .pv-portfolio--games {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.page-provider-detail .pv-game-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.page-provider-detail .pv-game-card:hover {
  border-color: rgba(51, 190, 179, 0.35);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.1);
}

.page-provider-detail .pv-game-card__media {
  aspect-ratio: 16 / 10;
  background: #f1f5f9;
  overflow: hidden;
}

.page-provider-detail .pv-game-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-provider-detail .pv-game-card--no-image .pv-game-card__placeholder {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, #f1f5f9 0%, #e8eef4 100%);
  color: var(--primary);
}

.page-provider-detail .pv-game-card--no-image .pv-game-card__placeholder svg {
  width: 42px;
  height: 42px;
  opacity: 0.88;
  stroke-width: 1.75px;
}

.page-provider-detail .pv-game-card__body {
  padding: 14px 16px 16px;
  border-top: 1px solid #f1f5f9;
}

.page-provider-detail .pv-game-card__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.handlebars-loop-label {
  font-family: monospace;
  font-size: 0.8rem;
  color: #94a3b8;
  opacity: 0.7;
}

.handlebars-loop-label.small {
  font-size: 0.7rem;
}

.handlebars-loop-label.end-loop {
  margin-top: 4px;
  text-align: left;
}

/* Verdict Sidebar */
.provider-sidebar {
  flex: 0 0 360px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.verdict-matrix {
  background: white;
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.vm-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin-bottom: 32px;
  color: #020617;
  font-weight: 700;
}

.vm-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.vm-heading.text-blue {
  color: var(--primary);
}

.vm-heading.text-red {
  color: var(--danger);
}

.vm-heading i {
  width: 16px;
  height: 16px;
}

.vm-divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 32px 0;
}

.vm-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 12px 0;
}

.vm-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.vm-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.blue-bullets li::before {
  background: var(--primary);
}

.red-bullets li::before {
  background: var(--danger);
}

/* Lucide icon rows (slot Expert Verdict: gold-checks / red-crosses) */
.vm-list.gold-checks li::before,
.vm-list.red-crosses li::before {
  display: none;
}

.vm-list.gold-checks li,
.vm-list.red-crosses li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-left: 0;
}

/* Lucide replaces <i data-lucide> with <svg>; target both */
.vm-list.gold-checks li>i,
.vm-list.gold-checks li>svg,
.vm-list.red-crosses li>i,
.vm-list.red-crosses li>svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0;
  stroke-width: 2.25;
}

/* Pros / cons: teal and rose (explicit color/stroke; Lucide uses currentColor on paths) */
.vm-list.gold-checks li>i,
.vm-list.gold-checks li>svg {
  color: var(--primary);
  stroke: var(--primary);
}

.vm-list.gold-checks li>i svg {
  stroke: var(--primary);
  color: var(--primary);
}

.vm-list.red-crosses li>i,
.vm-list.red-crosses li>svg {
  color: var(--danger);
  stroke: var(--danger);
}

.vm-list.red-crosses li>i svg {
  stroke: var(--danger);
  color: var(--danger);
}

/* Premier Destinations */
.premier-destinations {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pd-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #020617;
  margin-bottom: 8px;
  font-weight: 700;
}

.pd-card {
  background: #f1f5f9;
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
  border: 1px solid transparent;
}

.pd-card:hover {
  background: #e2e8f0;
  border-color: #cbd5e1;
}

.pd-logo {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.pd-info {
  flex: 1;
}

.pd-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #020617;
  margin-bottom: 2px;
}

.pd-bonus {
  font-size: 0.75rem;
  font-weight: 700;
  color: #b45309;
}

/* Quote Section */
.provider-quote-section {
  padding: 80px 32px 120px;
  border-top: 1px solid var(--border-light);
  margin-top: 64px;
}

.pq-inner {
  max-width: var(--container-max-width);
  margin: 0 auto;
  text-align: center;
}

.quote-icon {
  width: 32px;
  height: 32px;
  color: var(--primary);
  margin-bottom: 32px;
}

.pq-inner blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 32px;
  font-weight: 500;
}

.quote-author {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-light);
  text-transform: uppercase;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .provider-hero {
    grid-template-columns: 1fr;
    gap: clamp(28px, 4vw, 40px);
  }

  .ph-right {
    max-width: 520px;
  }

  .provider-layout {
    flex-direction: column;
  }

  .provider-sidebar {
    width: 100%;
    flex: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
  }
}

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

  .page-provider-detail .pv-portfolio--games {
    grid-template-columns: 1fr;
  }

  .ph-stats-grid {
    grid-template-columns: 1fr;
  }

  .ph-stats-card .stat-group {
    border-right: none;
  }

  .ph-stats-card .stat-group:not(:last-child) {
    border-bottom: 1px solid #f1f5f9;
  }

  .provider-hero {
    padding-top: 28px;
    padding-bottom: 36px;
  }

  .ph-stats-card .stat-group .stat-val {
    font-size: 1.35rem;
  }

  .ph-right {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .ph-title {
    font-size: clamp(1.65rem, 1.1rem + 3vw, 2.1rem);
  }

  .ph-stats-card .stat-group {
    padding: 12px 14px 14px;
  }
}

/* ========================================= */
/* Single Slot Page specific */
/* ========================================= */
.slot-page {
  background: #fafafa;
  padding-bottom: 120px;
}

/* Slot detail: avoid a tall #fafafa band above the footer “More slots” strip (that strip has its own padding) */
.page-slot-detail .slot-page {
  padding-bottom: 0;
}

.slot-float-badge {
  position: absolute;
  bottom: -20px;
  left: 0;
  background: white;
  padding: 24px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  border-left: 4px solid var(--primary);
}

.sfb-val {
  font-size: 2rem;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
  font-style: italic;
}

.sfb-lbl {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Slot highlight (API HighlightLabel / HighlightQuote) */
.slot-highlight-strip {
  margin-top: 32px;
  margin-bottom: 16px;
}

.slot-highlight-inner {
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 3vw, 24px);
  background: linear-gradient(135deg, rgba(51, 190, 179, 0.07) 0%, rgba(248, 250, 252, 0.98) 55%, #ffffff 100%);
  border: 1px solid rgba(51, 190, 179, 0.22);
  border-left: 4px solid var(--primary);
  border-radius: 14px;
  padding: clamp(20px, 3.5vw, 28px) clamp(18px, 3vw, 28px) clamp(20px, 3.5vw, 28px) clamp(16px, 2.5vw, 22px);
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}

.slot-highlight-icon-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(51, 190, 179, 0.14);
  border: 1px solid rgba(51, 190, 179, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d9488;
}

.slot-highlight-icon-wrap i,
.slot-highlight-icon-wrap svg {
  width: 24px;
  height: 24px;
}

.slot-highlight-body {
  flex: 1;
  min-width: 0;
}

.slot-highlight-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0f766e;
  margin: 0 0 8px;
}

.slot-highlight-quote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.62;
  color: #334155;
}

@media (max-width: 540px) {
  .slot-highlight-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-left-width: 1px;
    border-top: 3px solid var(--primary);
  }

  .slot-highlight-body {
    text-align: center;
  }
}

/* Slot Stats Bar */
.slot-stats-bar {
  margin-top: 40px;
  margin-bottom: 80px;
}

.ss-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.ss-grid--slot {
  grid-template-columns: repeat(2, 1fr);
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
}

.ss-grid--slot-extended {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: var(--container-max-width);
}

.ss-val--theme {
  font-size: 1rem !important;
  line-height: 1.25;
  font-family: var(--font-sans) !important;
  font-weight: 600 !important;
  hyphens: auto;
  word-break: break-word;
}


.slot-last-reviewed {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: -8px 0 20px;
  letter-spacing: 0.02em;
}

.ss-item {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid var(--border-light);
}

.ss-item:last-child {
  border-right: none;
}

.ss-item i {
  width: 20px;
  height: 20px;
  color: var(--primary);
  margin-bottom: 12px;
}

.ss-lbl {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ss-val {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: #020617;
}

/* Destinations List */
.slot-destinations {
  padding: 0;
  margin-bottom: 80px;
}

.sd-header {
  margin-bottom: 40px;
}

.sd-header h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: #020617;
  margin-bottom: 12px;
}

.sd-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: var(--container-max-width);
  line-height: 1.6;
}

.sd-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sd-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: box-shadow 0.2s;
}

.sd-card:hover {
  box-shadow: var(--shadow-md);
}

.sd-logo-box {
  width: 64px;
  height: 64px;
  background: #f1f5f9;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
  font-style: italic;
}

.sd-info {
  flex: 1.5;
}

.sd-info h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #020617;
  margin-bottom: 8px;
}

.sd-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sd-pills span {
  background: #e2e8f0;
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--text-muted);
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.sd-bonus {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 1px solid var(--border-light);
  padding-left: 32px;
}

.sdb-lbl {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.sdb-val {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
}

.sd-action {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-left: 1px solid var(--border-light);
  padding-left: 32px;
}

.sd-action .btn {
  width: 100%;
}

.sd-tc {
  font-size: 0.6rem;
  color: var(--text-light);
}

/* Slot Content Layout */
.slot-content-split {
  margin-bottom: 80px;
}

.slot-main-content h2 {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: #020617;
  margin-bottom: 24px;
}

.slot-main-content p {
  margin-bottom: 20px;
}

.slot-bonus-box {
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 40px;
  margin-top: 48px;
}

.slot-bonus-box h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: #020617;
  margin-bottom: 32px;
}

.sbb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.sbb-item h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.sbb-item h4 i {
  width: 18px;
  height: 18px;
}

.sbb-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Expert Verdict */
.expert-verdict-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  border-top: 4px solid var(--primary);
}

.evc-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #020617;
  margin-bottom: 24px;
  font-weight: 700;
}

/* Slot detail: tighter Expert Verdict (smaller footprint, no inner scroll on sidebar) */
.page-slot-detail .expert-verdict-card {
  padding: 22px 20px 24px;
  box-shadow: var(--shadow-md);
}

.page-slot-detail .evc-title {
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.page-slot-detail .slot-content-split .vm-heading {
  font-size: 0.62rem;
  margin-bottom: 8px;
}

.page-slot-detail .slot-content-split .vm-list {
  gap: 6px;
  margin: 6px 0;
}

.page-slot-detail .slot-content-split .vm-list.gold-checks li,
.page-slot-detail .slot-content-split .vm-list.red-crosses li {
  align-items: flex-start;
  font-size: 0.82rem;
  line-height: 1.4;
  gap: 8px;
}

.page-slot-detail .slot-content-split .vm-list.gold-checks li>i,
.page-slot-detail .slot-content-split .vm-list.gold-checks li>svg,
.page-slot-detail .slot-content-split .vm-list.red-crosses li>i,
.page-slot-detail .slot-content-split .vm-list.red-crosses li>svg {
  width: 15px;
  height: 15px;
  margin-top: 0;
}

.page-slot-detail .slot-content-split .vm-section.mt-24 {
  margin-top: 18px;
}

/* Sticky sidebar on slot review: stays in view while reading the main column (no max-height = no scrollbar) */
@media (min-width: 1025px) {
  .page-slot-detail .slot-content-split .provider-sidebar.slot-sidebar {
    position: sticky;
    top: calc(var(--sticky-header-offset) + 0.75rem);
    align-self: flex-start;
    transition: padding-top 0.2s ease;
  }

  .page-slot-detail .slot-content-split .provider-sidebar.slot-sidebar.is-stuck {
    padding-top: 1.25rem;
  }
}

.vm-section.mt-24 {
  margin-top: 32px;
}

/* FAQ Section */
.slot-faq-section {
  padding: 0;
  margin-bottom: 80px;
}

.faq-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: #020617;
  margin-bottom: 40px;
  text-align: center;
}

/* More Games */
.more-games-section {
  padding: 0;
  border-top: 1px solid var(--border-light);
  padding-top: 80px;
}

.mg-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: #020617;
  margin-bottom: 40px;
}

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

.mg-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
}

.mg-card:hover .mg-img {
  transform: scale(1.02);
}

.mg-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
  background: #000;
}

.mg-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #020617;
}

.mg-meta {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive Adjustments */
@media (max-width: 1100px) {
  .ss-grid--slot-extended {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ss-grid--slot-extended .ss-item--theme {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1024px) {
  .slot-float-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -40px;
    text-align: center;
  }

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

  .ss-item:nth-child(2n) {
    border-right: none;
  }

  .ss-item:nth-child(n + 3) {
    border-top: 1px solid var(--border-light);
  }

  .sd-card {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .sd-bonus,
  .sd-action {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
    width: 100%;
    align-items: center;
  }

  .sd-pills {
    justify-content: center;
  }

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

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

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

/* Slot stats: keep 2 columns through 768px; stack only on narrow phones */
@media (max-width: 640px) {
  .ss-grid {
    grid-template-columns: 1fr;
  }

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

  .ss-grid--slot-extended .ss-item--theme {
    grid-column: auto;
  }

  .ss-item {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }

  .ss-item:last-child {
    border-bottom: none;
    border-top: none;
  }
}

/* ========================================= */
/* Guides hub (/guides): editorial SEO + FAQ */
/* ========================================= */
.page-guides .container,
.page-news .container {
  padding-left: calc(max(20px, env(safe-area-inset-left, 20px)) + 24px);
  padding-right: calc(max(20px, env(safe-area-inset-right, 20px)) + 24px);
}

.page-guides .guides-seo {
  padding: var(--section-gap) 0;
}

.page-guides .guides-seo__header {
  margin-bottom: 0;
}

.page-guides .guides-seo__header h2 {
  margin-bottom: clamp(1.1rem, 2vw, 1.5rem);
  position: relative;
  padding-top: 0.35rem;
}

.page-guides .guides-seo__header h2::before {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 0.85rem;
}

.page-guides .guides-seo__intro {
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.page-guides .guides-seo__intro p {
  margin-bottom: clamp(1rem, 2vw, 1.35rem);
}

.page-guides .guides-seo__intro p:last-child {
  margin-bottom: 0;
}

.page-guides .guides-seo__intro a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.page-guides .guides-seo__intro a:hover {
  color: #1e3a5f;
}

.page-guides .guides-seo__topics {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(14px, 2.2vw, 20px);
}

.page-guides .guides-seo__topic {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 18px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 8px 24px -12px rgba(15, 23, 42, 0.06);
}

.page-guides .guides-seo__topic-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(51, 190, 179, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.page-guides .guides-seo__topic-icon :is(svg, i) {
  width: 22px !important;
  height: 22px !important;
}

.page-guides .guides-seo__topic-title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: #020617;
  margin: 0 0 6px;
  line-height: 1.25;
}

.page-guides .guides-seo__topic-text {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #64748b;
  margin: 0;
}

.page-guides .guides-faq.seo-accordion,
.page-news .news-faq.seo-accordion {
  padding: var(--section-gap) 0;
}

.page-guides .guides-faq .section-header.center,
.page-news .news-faq .section-header.center {
  margin-bottom: var(--section-gap);
}

.page-guides .guides-faq .section-header.center p,
.page-news .news-faq .section-header.center p {
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  color: var(--text-muted);
  line-height: 1.7;
}

.page-guides .guides-faq .accordion.accordion--two-cols,
.page-news .news-faq .accordion.accordion--two-cols {
  gap: 20px clamp(24px, 3vw, 40px);
}

/* ========================================= */
/* Guides Page specific */
/* ========================================= */
.guides-page {
  background: #fafafa;
  padding-bottom: var(--section-gap);
}

.page-guides .guides-page,
.page-news .news-page {
  padding-bottom: var(--section-gap);
}

.guides-status {
  display: block;
  text-align: center;
  padding: 28px 16px 8px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0 auto;
}

.page-guides .guides-status,
.page-news .guides-status {
  padding: 12px 16px 4px;
}

.guides-status[hidden] {
  display: none !important;
}

.guides-empty-msg {
  text-align: center;
  padding: 2rem 16px 1rem;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 auto;
}

/* Hero */
.guides-hero {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

.gh-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 clamp(14px, 2vw, 20px);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f766e;
  line-height: 1.25;
}

.gh-kicker i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.gh-title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  color: #020617;
  line-height: 1.08;
  margin: 0 0 clamp(18px, 2.5vw, 26px);
  letter-spacing: -0.02em;
  font-weight: var(--heading-weight);
  max-width: none;
  width: 100%;
}

.gh-title em {
  font-style: normal;
  font-weight: var(--heading-weight);
  color: var(--primary);
}

.gh-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 0.35vw + 0.84rem, 0.975rem);
  color: #64748b;
  line-height: 1.65;
  max-width: none;
  width: 100%;
  margin: 0 0 clamp(28px, 4vw, 40px);
}

.gh-desc a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.14em;
  text-decoration-color: rgba(51, 190, 179, 0.45);
}

.gh-desc a:hover {
  color: var(--primary-hover);
  text-decoration-color: var(--primary-hover);
}

/* Guides + news hub: shared hero rhythm (kicker → title → deck → directory) */
.page-guides .guides-hero,
.page-news .guides-hero {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-body) 100%);
  border-bottom: 1px solid var(--border-light);
}

.page-guides .gh-kicker,
.page-news .gh-kicker {
  margin-bottom: clamp(18px, 2.5vw, 24px);
}

.page-guides .gh-title,
.page-news .gh-title {
  font-size: clamp(2.15rem, 3.8vw + 0.5rem, 3.35rem);
  line-height: 1.1;
  margin-bottom: clamp(16px, 2vw, 22px);
  letter-spacing: -0.025em;
}

.page-guides .gh-desc,
.page-news .gh-desc {
  font-size: clamp(0.8125rem, 0.25vw + 0.78rem, 0.9rem);
  line-height: 1.62;
  margin-bottom: 0;
  color: #64748b;
  max-width: none;
}

.page-guides .gh-desc strong,
.page-news .gh-desc strong {
  color: #475569;
  font-weight: 600;
}

.page-guides .hub-hero__pills,
.page-news .hub-hero__pills {
  margin-top: clamp(20px, 2.5vw, 28px);
}

.page-guides .guides-directory-header h2,
.page-news .guides-directory-header h2 {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  letter-spacing: -0.02em;
}

/* Static page heroes (matches guides/news hub; no vertical accent bar) */
.page-about .about-hero,
.page-how-we-rate .how-we-rate-hero,
.page-privacy .privacy-hero,
.page-terms .terms-hero,
.page-contact .contact-hero {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-body) 100%);
  border-bottom: 1px solid var(--border-light);
}

.page-about .about-hero .gh-kicker,
.page-how-we-rate .how-we-rate-hero .gh-kicker,
.page-privacy .privacy-hero .gh-kicker,
.page-terms .terms-hero .gh-kicker,
.page-contact .contact-hero .gh-kicker {
  margin-bottom: clamp(18px, 2.5vw, 24px);
}

.page-about .about-hero .gh-title,
.page-how-we-rate .how-we-rate-hero .gh-title,
.page-privacy .privacy-hero .gh-title,
.page-terms .terms-hero .gh-title,
.page-contact .contact-hero .gh-title {
  font-size: clamp(2.15rem, 3.8vw + 0.5rem, 3.35rem);
  line-height: 1.1;
  margin-bottom: clamp(16px, 2vw, 22px);
  letter-spacing: -0.025em;
}

.page-about .about-hero .gh-desc,
.page-how-we-rate .how-we-rate-hero .gh-desc,
.page-privacy .privacy-hero .gh-desc,
.page-terms .terms-hero .gh-desc,
.page-contact .contact-hero .gh-desc {
  font-size: clamp(0.8125rem, 0.25vw + 0.78rem, 0.9rem);
  line-height: 1.62;
  margin-bottom: 0;
  color: #64748b;
  max-width: none;
}

.page-about .about-hero .gh-desc strong,
.page-how-we-rate .how-we-rate-hero .gh-desc strong,
.page-privacy .privacy-hero .gh-desc strong,
.page-terms .terms-hero .gh-desc strong,
.page-contact .contact-hero .gh-desc strong {
  color: #475569;
  font-weight: 600;
}

.page-about .about-hero .gh-desc a,
.page-how-we-rate .how-we-rate-hero .gh-desc a,
.page-privacy .privacy-hero .gh-desc a,
.page-terms .terms-hero .gh-desc a,
.page-contact .contact-hero .gh-desc a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.page-about .about-hero .gh-desc a:hover,
.page-how-we-rate .how-we-rate-hero .gh-desc a:hover,
.page-privacy .privacy-hero .gh-desc a:hover,
.page-terms .terms-hero .gh-desc a:hover,
.page-contact .contact-hero .gh-desc a:hover {
  color: #1e3a5f;
}

.page-about .about-hero__pills,
.page-how-we-rate .how-we-rate-hero__pills,
.page-privacy .privacy-hero__pills,
.page-terms .terms-hero__pills,
.page-contact .contact-hero__pills {
  margin-top: clamp(20px, 2.5vw, 28px);
}

.page-how-we-rate .how-we-rate-hero .terms-last-updated,
.page-privacy .privacy-hero .privacy-last-updated,
.page-terms .terms-hero .terms-last-updated {
  margin: clamp(16px, 2vw, 22px) 0 0;
  font-size: 0.75rem;
  color: #94a3b8;
}

/* Directory heading block above guides/news grid */
.guides-directory-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(14px, 2.5vw, 22px);
  margin-top: 0;
  padding-top: 0;
  padding-bottom: var(--section-gap);
  border-bottom: 1px solid var(--border-light);
}

.guides-directory-intro .guides-directory-header {
  margin-bottom: 0;
}

.guides-directory-intro .guides-directory-header h2 {
  margin-bottom: 0;
}

.page-guides .guides-grid-section,
.page-news .guides-grid-section {
  padding-top: var(--section-gap-sm);
  margin-bottom: var(--section-gap);
}

.page-slots .slots-grid-section,
.page-bonuses .bonuses-grid-section {
  padding-top: 0;
  margin-bottom: var(--section-gap);
}

.page-providers .providers-grid-section {
  padding-top: var(--section-gap-sm);
  margin-bottom: var(--section-gap);
}

.page-guides .guides-interstitial,
.page-news .guides-interstitial {
  margin-bottom: var(--section-gap);
}

.page-guides .guides-directory-intro .guides-directory-header,
.page-news .guides-directory-intro .guides-directory-header {
  flex: 1 1 min(100%, 36rem);
  min-width: min(100%, 260px);
  margin-bottom: 0;
}

.page-guides .guides-directory-intro .guides-directory-header h2,
.page-news .guides-directory-intro .guides-directory-header h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.55rem, 2.4vw, 1.95rem);
  font-weight: 700;
  line-height: 1.2;
}

.page-guides .guides-directory-intro .guides-directory-dek {
  max-width: var(--container-max-width);
  font-size: 0.9375rem;
  line-height: 1.65;
}

@media (min-width: 768px) {
  .guides-directory-intro {
    align-items: flex-start;
    gap: clamp(20px, 3vw, 32px);
  }
}

/* Featured Guide */
.featured-guide-section {
  padding: 0 32px;
  margin-bottom: var(--section-gap);
}

.featured-guide-card {
  display: flex;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.fg-image-wrap {
  flex: 1.2;
  position: relative;
}

.fg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.fg-content {
  flex: 1;
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fg-badge {
  align-self: flex-start;
  background: #e2e8f0;
  color: #475569;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.fg-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: #020617;
  line-height: 1.2;
  margin-bottom: 20px;
}

.fg-title a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break: break-word;
  color: inherit;
  text-decoration: none;
}

.fg-excerpt {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  word-break: break-word;
}

.fg-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
}

.fga-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: var(--shadow-sm);
}

.fga-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fga-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #020617;
}

.fga-meta {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Guides / news listing header (mirrors bonuses-directory-header) */
.guides-directory-header,
.news-directory-header {
  margin-bottom: 0;
  padding: 0;
}

.guides-directory-header {
  max-width: none;
}

.news-directory-header {
  max-width: var(--container-max-width);
}

.guides-directory-header h2,
.news-directory-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: #020617;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.guides-directory-dek,
.news-directory-dek {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Regular Guides Grid */
.guides-grid-section {
  padding: 0;
  margin-bottom: var(--section-gap);
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 28px);
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.guide-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.gc-link-wrap {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
  min-width: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 8px 24px -12px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.gc-link-wrap:hover {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  box-shadow:
    0 4px 12px rgba(15, 23, 42, 0.06),
    0 16px 36px -12px rgba(15, 23, 42, 0.14);
}

.gc-link-wrap:hover .gc-title {
  color: var(--primary);
}

.gc-image-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 0;
  box-shadow: none;
}

.gc-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease-out;
}

.gc-link-wrap:hover .gc-image {
  transform: scale(1.05);
}

.gc-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding: 14px 16px 0;
}

.gc-category {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  font-size: 0.62rem;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 100px;
}

.gc-read-time {
  font-size: 0.72rem;
  color: #94a3b8;
  font-weight: 500;
  white-space: nowrap;
}

.gc-title {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1.2vw + 0.65rem, 1.2rem);
  font-weight: 700;
  color: #020617;
  line-height: 1.35;
  margin-bottom: 8px;
  padding: 0 16px;
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break: break-word;
}

.gc-excerpt {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 14px;
  padding: 0 16px;
  flex: 1;
  min-height: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  word-break: break-word;
}

.gc-read-more {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px 16px;
  margin-top: auto;
}

.gc-read-more i {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.gc-link-wrap:hover .gc-read-more i {
  transform: translateX(4px);
}

/* Interstitial */
.guides-interstitial {
  padding: 0;
  margin-bottom: var(--section-gap);
}

.gi-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 48px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(24px, 4vw, 40px);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 40px -16px rgba(15, 23, 42, 0.1);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
}

.gi-content h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  color: #020617;
  margin: 0 0 10px;
  font-weight: var(--heading-weight);
  line-height: 1.2;
  max-width: var(--container-max-width);
}

.gi-content h3 em {
  font-weight: 700;
  font-style: normal;
  color: var(--primary);
}

.gi-content p {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
  max-width: var(--container-max-width);
}

.gi-action {
  flex-shrink: 0;
}

/* Dark Newsletter */
.guides-newsletter {
  padding: 0 32px;
  margin-bottom: 40px;
}

.gn-card {
  background: #18181b;
  border-radius: var(--radius-lg);
  padding: 80px 48px;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-xl);
}

.gn-card h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: var(--heading-weight);
  margin-bottom: 16px;
  color: white;
}

.gn-card p {
  font-size: 1.1rem;
  color: #a1a1aa;
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.gn-form {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 500px;
}

.gn-form input {
  flex: 1;
  padding: 16px 20px;
  border-radius: 8px;
  border: 1px solid #3f3f46;
  background: #27272a;
  color: white;
  outline: none;
  transition: border-color 0.2s;
  font-size: 1rem;
}

.gn-form input:focus {
  border-color: #71717a;
}

.gn-form ::placeholder {
  color: #71717a;
}

.btn-primary.bg-white.text-dark {
  background: white;
  color: #18181b;
}

.btn-primary.bg-white.text-dark:hover {
  background: #f4f4f5;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .featured-guide-card {
    flex-direction: column;
  }

  .fg-image-wrap {
    height: 300px;
    width: 100%;
  }

  .fg-image {
    min-height: 100%;
  }

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

  .gi-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .fg-content {
    padding: 40px 24px;
  }

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

  .gn-card {
    padding: 48px 24px;
  }

  .gn-form {
    flex-direction: column;
  }
}

/* ========================================= */
/* Single Post/Guide Page specific */
/* ========================================= */
body.page-guide-post {
  background: #fafafa;
}

.post-page {
  background: #fafafa;
}

/* Hero */
.post-hero {
  padding:
    80px var(--bc-inline-padding-x-end) 40px var(--bc-inline-padding-x);
}

.ph-layout {
  display: flex;
  gap: 64px;
  justify-content: space-between;
  align-items: center;
}

.ph-content {
  flex: 1.5;
}

.ph-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.ph-pill {
  background: #e2e8f0;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ph-meta-text {
  font-size: 0.8rem;
  color: var(--text-light);
}

.ph-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: #020617;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.ph-subtitle {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 32px;
}

.ph-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
  max-width: 400px;
}

.pha-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.pha-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pha-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #020617;
}

.pha-date {
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

.ph-toc-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.article-toc {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--text-muted);
  position: relative;
}

.article-toc::after {
  content: '';
  position: absolute;
  top: -4px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: var(--text-muted);
  opacity: 0.1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%);
}

.toc-title {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.toc-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toc-list li {
  position: relative;
  padding-left: 0;
}

.toc-list a {
  font-size: 0.9rem;
  color: var(--text-main);
  font-weight: 500;
  transition: color 0.2s;
}

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

/* Full Width Image */
.post-hero-image {
  padding: 0 32px;
  margin-bottom: 64px;
}

/* Guide post hero: same width as .post-main-container (uses .container) */
.page-guide-post .post-hero.post-hero--guide {
  padding-top: 24px;
  padding-bottom: 16px;
  box-sizing: border-box;
}

/* Guide post breadcrumbs */
.page-guide-post .gp-breadcrumb {
  margin-bottom: clamp(16px, 2.2vw, 22px);
}

.page-guide-post .gp-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 0;
  row-gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  line-height: 1.45;
}

.page-guide-post .gp-breadcrumb__list>li {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  max-width: 100%;
}

.page-guide-post .gp-breadcrumb__list>li:not([aria-current='page'])::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 0 0.45rem;
  flex-shrink: 0;
  background: var(--bc-separator) center / contain no-repeat;
  opacity: 0.9;
  pointer-events: none;
}

.page-guide-post .gp-breadcrumb__list a {
  color: #64748b;
  font-weight: 500;
  text-decoration: none;
  padding: 0.15rem 0;
  border-radius: 2px;
  transition: color 0.15s ease;
}

.page-guide-post .gp-breadcrumb__list a:hover {
  color: var(--primary);
}

.page-guide-post .gp-breadcrumb__list a:focus-visible {
  outline: 2px solid rgba(51, 190, 179, 0.55);
  outline-offset: 2px;
}

.page-guide-post .gp-breadcrumb__list [aria-current='page'] {
  color: #0f172a;
  font-weight: 600;
  max-width: 100%;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  line-height: 1.4;
}

.page-guide-post .post-hero.post-hero--guide-fit {
  padding: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-body) 100%);
  border-bottom: 1px solid var(--border-light);
  min-height: auto;
  display: block;
  box-sizing: border-box;
}

.page-guide-post .post-hero__guide-inner {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding:
    clamp(20px, 2.5vw, 32px) var(--bc-inline-padding-x-end) clamp(16px, 2vw, 24px) var(--bc-inline-padding-x);
  box-sizing: border-box;
}

.page-guide-post .post-hero--guide-fit .ph-layout--guide-hero {
  align-items: center;
  gap: clamp(28px, 4vw, 48px);
}

.page-guide-post .post-hero--guide-fit .ph-layout--guide-hero .ph-content {
  max-width: none;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding-right: clamp(8px, 2vw, 16px);
}

.page-guide-post .post-hero--guide-fit .ph-hero-visual {
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 clamp(280px, 42vw, 480px);
  width: clamp(280px, 42vw, 480px);
  max-width: 100%;
  min-width: 0;
  padding: 0;
  box-sizing: border-box;
}

.page-guide-post .post-hero--guide-fit .ph-hero-cover-img {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  min-height: 0;
  max-height: min(420px, 52vw);
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-guide-post .post-hero .ph-layout--guide-hero {
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(1.25rem, 3vw, 2rem);
  width: 100%;
}

.page-guide-post .post-hero .ph-layout--guide-hero .ph-content {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
}

.page-guide-post .post-hero .ph-meta {
  margin-bottom: clamp(14px, 2vw, 18px);
}

.page-guide-post .post-hero .ph-pill {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #64748b;
  border-radius: 100px;
}

.page-guide-post .post-hero .ph-meta-text {
  font-size: 0.8rem;
  color: #94a3b8;
}

.page-guide-post .post-hero .ph-title {
  font-size: clamp(1.9rem, 3.2vw + 0.5rem, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: clamp(12px, 2vw, 16px);
}

.page-guide-post .post-hero .ph-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.8125rem, 0.25vw + 0.78rem, 0.9rem);
  line-height: 1.62;
  color: #64748b;
  margin-bottom: clamp(12px, 1.5vw, 16px);
}

.page-guide-post .post-hero .ph-author {
  padding-top: clamp(12px, 1.5vw, 16px);
  margin-top: 0;
  max-width: none;
  border-top-color: var(--border-light);
}

.page-guide-post .post-hero .pha-img {
  width: 56px;
  height: 56px;
}

.page-guide-post .post-hero .pha-name {
  font-size: 1.05rem;
}

.page-guide-post .post-hero .pha-date {
  font-size: 0.75rem;
}

.page-guide-post .ph-hero-visual {
  flex: 1 1 40%;
  min-width: 0;
  max-width: 100%;
  align-self: center;
}

.page-guide-post .ph-hero-visual[hidden] {
  display: none !important;
}

.page-guide-post .ph-hero-cover-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 16px 40px -12px rgba(15, 23, 42, 0.12);
}

@media (max-width: 900px) {
  .page-guide-post .post-hero__guide-inner {
    padding-top: clamp(18px, 2.5vw, 28px);
    padding-bottom: clamp(14px, 2vw, 20px);
  }

  .page-guide-post .post-hero--guide-fit .ph-hero-visual {
    flex: none;
    width: 100%;
    max-width: 28rem;
    margin: 0 auto;
  }

  .page-guide-post .post-hero--guide-fit .ph-hero-cover-img {
    max-height: min(360px, 56vw);
  }

  .page-guide-post .post-hero .ph-layout--guide-hero {
    flex-direction: column;
    align-items: stretch;
    gap: var(--section-gap);
  }

  .page-guide-post .post-hero--guide-fit .ph-layout--guide-hero .ph-content {
    padding-right: 0;
    order: 1;
  }

  .page-guide-post .ph-hero-visual {
    flex: none;
    max-width: none;
    width: 100%;
    align-self: stretch;
    order: 2;
  }
}

.phi-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Main Layout */
.post-main-container {
  padding: 0 32px;
}

.page-guide-post .post-main-container {
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding: clamp(16px, 2vw, 24px) max(20px, env(safe-area-inset-left, 20px)) var(--section-gap);
  padding-right: max(20px, env(safe-area-inset-right, 20px));
}

@media (max-width: 768px) {
  .page-guide-post .post-main-container {
    padding-left: max(clamp(16px, 4vw, 40px), env(safe-area-inset-left, 0px));
    padding-right: max(clamp(16px, 4vw, 40px), env(safe-area-inset-right, 0px));
  }
}

.post-layout {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

/* Left Share Sidebar */
.post-share-sidebar {
  flex: 0 0 60px;
}

.share-sticky {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.share-lbl {
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 0.1em;
  transform: rotate(-90deg);
  margin-bottom: 24px;
  margin-top: 24px;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}

.share-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-4px);
}

.share-btn i {
  width: 18px;
  height: 18px;
}

/* Core Content */
.post-core-content {
  flex: 1;
  min-width: 0;
}

.post-core-content h2 {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: #020617;
  margin: 48px 0 24px;
  line-height: 1.2;
}

.post-core-content h2:first-child {
  margin-top: 0;
}

.post-core-content h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: #020617;
  margin: 40px 0 20px;
}

.post-core-content p {
  font-size: 1.1rem;
  color: var(--text-main);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Guide detail: markdown from CMS (marked.js) */
.post-core-content.cr-article .rich-text-body.guide-post-md {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-main);
  max-width: var(--container-max-width);
}

.post-core-content.cr-article .guide-post-md>*:first-child {
  margin-top: 0;
}

.post-core-content.cr-article .guide-post-md h1,
.post-core-content.cr-article .guide-post-md h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: #020617;
  line-height: 1.15;
  margin: 1.5rem 0 0.75rem;
}

.post-core-content.cr-article .guide-post-md h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.post-core-content.cr-article .guide-post-md h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  margin-top: 1.75rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--border-light);
}

.post-core-content.cr-article .guide-post-md h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 1.35rem 0 0.5rem;
  color: #0f172a;
  line-height: 1.25;
}

.post-core-content.cr-article .guide-post-md h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1.5rem 0 0.5rem;
  color: #334155;
}

.post-core-content.cr-article .guide-post-md p {
  margin: 0 0 1em;
  font-size: inherit;
  line-height: inherit;
}

.post-core-content.cr-article .guide-post-md ul,
.post-core-content.cr-article .guide-post-md ol {
  margin: 0 0 1.25em;
  padding-left: 1.5em;
}

.post-core-content.cr-article .guide-post-md li {
  margin-bottom: 0.5em;
}

.post-core-content.cr-article .guide-post-md li::marker {
  color: var(--primary);
}

.post-core-content.cr-article .guide-post-md blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--primary);
  background: #f8fafc;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: #475569;
}

.post-core-content.cr-article .guide-post-md blockquote p:last-child {
  margin-bottom: 0;
}

.post-core-content.cr-article .guide-post-md hr {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid var(--border);
}

.post-core-content.cr-article .guide-post-md a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.post-core-content.cr-article .guide-post-md a:hover {
  color: var(--primary-hover);
}

.post-core-content.cr-article .guide-post-md code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.9em;
  background: #f1f5f9;
  padding: 0.15em 0.45em;
  border-radius: 4px;
  color: #0f172a;
}

.post-core-content.cr-article .guide-post-md pre {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  background: #0f172a;
  color: #e2e8f0;
  border-radius: var(--radius-md);
  overflow-x: auto;
  font-size: 0.9rem;
  line-height: 1.55;
}

.post-core-content.cr-article .guide-post-md pre code {
  background: none;
  padding: 0;
  color: inherit;
  font-size: inherit;
}

.post-core-content.cr-article .guide-post-md img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
  box-shadow: var(--shadow-md);
}

.post-core-content.cr-article .guide-post-md table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.post-core-content.cr-article .guide-post-md th,
.post-core-content.cr-article .guide-post-md td {
  border: 1px solid var(--border);
  padding: 0.6rem 0.85rem;
  text-align: left;
}

.post-core-content.cr-article .guide-post-md th {
  background: #f8fafc;
  font-weight: 700;
}

/* Editorial Inset */
.editorial-inset {
  display: flex;
  gap: 24px;
  background: #f8fafc;
  border-left: 4px solid var(--primary);
  padding: 32px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 48px 0;
  box-shadow: var(--shadow-sm);
}

.ei-icon i {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.ei-content h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #020617;
  margin-bottom: 8px;
  font-weight: 700;
}

.ei-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.ei-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 12px;
}

.ei-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: underline;
}

.ei-tc {
  font-size: 0.6rem;
  color: var(--text-light);
}

/* Pro Tips Grid */
.pro-tips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 48px 0;
}

.pt-card {
  background: #f4f4f5;
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.pt-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 16px;
}

.pt-icon.blue {
  color: var(--primary);
}

.pt-icon.gold {
  color: #b45309;
}

.pt-card h4 {
  font-size: 1.1rem;
  color: #020617;
  margin-bottom: 8px;
  font-weight: 700;
}

.pt-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* In-post FAQ */
.post-faq {
  margin: 64px 0;
}

.faq-title.left-align {
  text-align: left;
}

/* Author Bio Block */
.post-author-bio {
  background: #18181b;
  color: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  gap: 32px;
  align-items: center;
  margin-top: 80px;
  box-shadow: var(--shadow-lg);
}

.pab-img {
  width: 96px;
  height: 96px;
  border-radius: 8px;
  object-fit: cover;
}

.pab-content h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: white;
  margin: 0 0 12px;
  font-weight: 700;
}

.pab-content p {
  font-size: 0.95rem;
  color: #a1a1aa;
  line-height: 1.6;
  margin-bottom: 24px;
}

.pab-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.pab-links a {
  font-size: 0.65rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #27272a;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background 0.2s;
}

.pab-links a:hover {
  background: var(--primary);
}

/* Right Sidebar */
.post-right-sidebar {
  flex: 0 0 320px;
}

.sidebar-sticky {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Guide post: stretch columns so the aside is as tall as the article (required for sticky to track the scroll) */
.page-guide-post .post-layout {
  align-items: stretch;
  gap: clamp(1rem, 2vw, 1.25rem);
  padding-top: 0;
  padding-bottom: 0;
  /* Horizontal inset comes from `.post-main-container` only - avoid doubling with inner padding */
  padding-left: 0;
  padding-right: 0;
}

/* Guide post: article uses full row (no “Latest” rail beside body) */
.page-guide-post .post-core-content {
  flex: 1 1 0;
  min-width: 0;
}

/* Guide post: article and “Latest” share width; body uses full column (no inner 48rem cap) */
.page-guide-post .post-core-content.cr-article .rich-text-body.guide-post-md {
  max-width: none;
}

.page-guide-post .post-core-content.cr-article .guide-post-md>h1:first-child,
.page-guide-post .post-core-content.cr-article .guide-post-md>h2:first-child {
  margin-top: 0;
}

/* Guide post: “Latest” band below article (grid of cards) */
.gp-related-latest-section {
  padding: clamp(48px, 7vw, 88px) 0 clamp(56px, 8vw, 96px);
  background: linear-gradient(180deg, #fafafa 0%, #f1f5f9 100%);
  border-top: 1px solid var(--border-light);
}

.gp-related-latest-inner {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.page-guide-post .gp-related-latest-inner {
  max-width: var(--container-max-width);
  padding-left: clamp(16px, 4vw, 40px);
  padding-right: clamp(16px, 4vw, 40px);
  box-sizing: border-box;
}

.gp-related-latest-head {
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
  text-align: center;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
}

.page-guide-post .gp-related-latest-section .gp-related-title {
  font-size: clamp(1.35rem, 2vw, 1.65rem);
}

.page-guide-post .gp-related-latest-section .gp-related-dek {
  margin-bottom: 0;
}

.gp-related-latest-foot {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  justify-content: center;
}

.gp-related-latest-foot .gp-related-all {
  margin-top: 0;
}

.gp-related-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: #020617;
  margin: 0;
  letter-spacing: -0.02em;
}

.gp-related-dek {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0 0 4px;
  line-height: 1.45;
}

.gp-related-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gp-related-list--grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
  align-items: stretch;
}

.gp-related-list--grid>li {
  min-width: 0;
  display: flex;
}

.gp-related-loading {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 8px 0;
}

.gp-related-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.gp-related-list--grid .gp-related-card {
  flex: 1;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
  height: 100%;
}

.gp-related-list--grid .gp-related-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.gp-related-card:hover {
  border-color: rgba(51, 190, 179, 0.45);
  box-shadow: var(--shadow-sm);
}

.gp-related-card__img {
  flex-shrink: 0;
  width: 88px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: #f1f5f9;
  padding: 4px;
  box-sizing: border-box;
}

.gp-related-list--grid .gp-related-card__img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  border-radius: 0;
  padding: 0;
}

.gp-related-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.gp-related-list--grid .gp-related-card__img img {
  object-fit: cover;
}

.gp-related-list--grid .gp-related-card__body {
  padding: 16px 18px 18px;
  gap: 6px;
}

.gp-related-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gp-related-card__cat {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.gp-related-card__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gp-related-card__meta {
  font-size: 0.72rem;
  color: var(--text-light);
}

.gp-related-card__meta-inner {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.gp-related-card__star {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: #f59e0b;
}

.gp-related-card__star svg {
  width: 13px;
  height: 13px;
}

.gp-related-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  margin-top: 6px;
  transition: gap 0.2s ease;
}

.gp-related-all i,
.gp-related-all svg {
  width: 16px;
  height: 16px;
}

.gp-related-all:hover {
  gap: 10px;
}

@media (max-width: 900px) {
  .gp-related-list--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .gp-related-list--grid {
    grid-template-columns: 1fr;
  }
}

.rs-title {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 12px;
}

.rs-rec-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rs-rec-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  text-decoration: none;
  transition: transform 0.2s;
}

.rs-rec-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.rs-rec-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.rs-rec-content {
  padding: 20px;
}

.rs-rec-content.no-img {
  padding: 24px;
}

.rs-rec-content h5 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #020617;
  margin-bottom: 8px;
  line-height: 1.3;
}

.rs-rec-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.rs-premium-widget {
  background: var(--primary);
  color: white;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(29, 78, 216, 0.3);
}

.pw-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.pw-badge i {
  width: 12px;
  height: 12px;
  color: white;
}

.pw-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: white;
}

.pw-desc {
  font-size: 0.9rem;
  color: #e0e7ff;
  margin-bottom: 24px;
  line-height: 1.5;
}

.btn-full {
  width: 100%;
  margin-bottom: 16px;
  font-size: 0.8rem;
}

.btn-primary.bg-white.text-blue {
  background: white;
  color: var(--primary);
  border: none;
  cursor: pointer;
  font-weight: 700;
  border-radius: 8px;
  padding: 14px;
}

.btn-primary.bg-white.text-blue:hover {
  background: #f1f5f9;
}

.pw-tc {
  font-size: 0.55rem;
  color: #bfdbfe;
  opacity: 0.8;
  line-height: 1.4;
}

.rs-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-light);
}

.rs-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.rs-badges i {
  width: 14px;
  height: 14px;
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 1024px) {
  .ph-layout {
    flex-direction: column;
  }

  .ph-toc-wrapper {
    width: 100%;
    justify-content: flex-start;
  }

  .article-toc {
    max-width: 100%;
  }

  .post-layout {
    flex-wrap: wrap;
  }

  .post-share-sidebar {
    display: none;
  }

  .post-right-sidebar {
    flex: 1 1 100%;
  }

  .page-guide-post .post-core-content,
  .page-guide-post .post-right-sidebar {
    flex: 1 1 100%;
  }

  .sidebar-sticky {
    position: static;
  }

  .rs-rec-list {
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  .rs-rec-list {
    flex-direction: column;
  }

  .pro-tips-grid {
    grid-template-columns: 1fr;
  }

  .post-author-bio {
    flex-direction: column;
    text-align: center;
  }

  .pab-links {
    justify-content: center;
  }
}

/* ========================================= */
/* News Page (shared hub layout with /guides — see .page-news rules above) */
/* ========================================= */
.news-page {
  background: #fafafa;
  padding-bottom: var(--section-gap);
}

/* ========================================= */
/* About + Privacy + Terms + Contact (editorial / legal static pages) */
/* ========================================= */
.about-page,
.privacy-page,
.terms-page,
.contact-page,
.how-we-rate-page {
  background: #fafafa;
  padding-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.privacy-last-updated,
.terms-last-updated {
  margin: 1.5rem 0 0;
  font-size: 0.9rem;
  color: #64748b;
  font-family: var(--font-sans);
}

.about-article,
.privacy-article,
.terms-article,
.how-we-rate-article {
  max-width: none;
  width: 100%;
  box-sizing: border-box;
  padding-top: 1.25rem;
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.about-article__intro h2,
.about-section h2,
.privacy-article__intro h2,
.privacy-section h2,
.terms-article__intro h2,
.terms-section h2,
.how-we-rate-article__intro h2,
.how-we-rate-section h2,
.contact-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.about-article__intro p,
.about-section p,
.privacy-article__intro p,
.privacy-section p,
.terms-article__intro p,
.terms-section p,
.how-we-rate-article__intro p,
.how-we-rate-section p,
.contact-section p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #334155;
  margin: 0 0 1.5rem;
}

.about-article__intro p:last-child,
.about-section p:last-child,
.privacy-article__intro p:last-child,
.privacy-section p:last-child,
.terms-article__intro p:last-child,
.terms-section p:last-child,
.how-we-rate-article__intro p:last-child,
.how-we-rate-section p:last-child,
.contact-section p:last-child {
  margin-bottom: 0;
}

.about-article__intro,
.privacy-article__intro,
.terms-article__intro,
.how-we-rate-article__intro {
  margin-bottom: clamp(2.75rem, 5vw, 3.5rem);
  padding-bottom: clamp(2.25rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.about-section,
.privacy-section,
.terms-section,
.how-we-rate-section,
.contact-section {
  margin-bottom: clamp(2.75rem, 5vw, 3.5rem);
}

.about-section:last-of-type,
.privacy-section:last-of-type,
.terms-section:last-of-type,
.how-we-rate-section:last-of-type,
.contact-section:last-of-type {
  margin-bottom: 0;
}

.about-section a,
.privacy-section a,
.terms-section a,
.how-we-rate-section a,
.contact-section a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.about-section a:hover,
.privacy-section a:hover,
.terms-section a:hover,
.how-we-rate-section a:hover,
.contact-section a:hover {
  color: #1e3a5f;
}

.privacy-list,
.terms-list {
  margin: 0.35rem 0 1.5rem;
  padding-left: 1.35rem;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #334155;
}

.privacy-list li,
.terms-list li {
  margin-bottom: 1rem;
}

.privacy-list li:last-child,
.terms-list li:last-child {
  margin-bottom: 0;
}

.page-how-we-rate .terms-list--with-icons {
  list-style: none;
  padding-left: 0;
}

.page-how-we-rate .terms-list--with-icons>li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}

.page-how-we-rate .terms-list__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-top: 0.35rem;
  line-height: 0;
}

.page-how-we-rate .terms-list__icon svg {
  width: 1rem;
  height: 1rem;
  stroke-width: 2.5;
}

.page-how-we-rate .terms-list__body {
  flex: 1;
  min-width: 0;
}

.page-about .about-faq .section-header p,
.page-how-we-rate .how-we-rate-faq .section-header p,
.page-privacy .privacy-faq .section-header p {
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
}

.how-we-rate-section h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 1.75rem 0 0.65rem;
  letter-spacing: -0.01em;
}

.how-we-rate-toc,
.legal-toc {
  margin: 0 0 clamp(2rem, 4vw, 2.75rem);
  padding: clamp(1.25rem, 2.5vw, 1.65rem) clamp(1.25rem, 2.5vw, 1.75rem);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.how-we-rate-toc h2,
.legal-toc h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.85rem;
}

.how-we-rate-toc ul,
.legal-toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.how-we-rate-toc ul li,
.legal-toc ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.page-how-we-rate .how-we-rate-toc__icon,
.page-privacy .legal-toc__icon,
.page-terms .legal-toc__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-top: 0.2rem;
  line-height: 0;
}

.page-how-we-rate .how-we-rate-toc__icon svg,
.page-privacy .legal-toc__icon svg,
.page-terms .legal-toc__icon svg {
  width: 0.875rem;
  height: 0.875rem;
}

.how-we-rate-toc a,
.legal-toc a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.how-we-rate-toc a:hover,
.legal-toc a:hover {
  color: #1e3a5f;
}

:is(.page-about, .page-privacy, .page-terms, .page-contact, .page-how-we-rate) .guides-interstitial {
  margin-top: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: clamp(1rem, 2.5vw, 1.75rem);
}

:is(.page-about, .page-privacy, .page-terms, .page-contact, .page-how-we-rate) .guides-interstitial .gi-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

:is(.page-about, .page-privacy, .page-terms, .page-contact, .page-how-we-rate) .guides-interstitial .gi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, #2aa197 100%);
}

:is(.page-about, .page-privacy, .page-terms, .page-contact, .page-how-we-rate) .guides-interstitial .gi-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.65rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f766e;
}

:is(.page-about, .page-privacy, .page-terms, .page-contact, .page-how-we-rate) .guides-interstitial .gi-content h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.3rem, 2.4vw, 1.65rem);
}

:is(.page-about, .page-privacy, .page-terms, .page-contact, .page-how-we-rate) .guides-interstitial .gi-content h3 em {
  font-style: normal;
  color: var(--primary);
}

:is(.page-about, .page-privacy, .page-terms, .page-contact, .page-how-we-rate) .guides-interstitial .gi-dek,
:is(.page-about, .page-privacy, .page-terms, .page-contact, .page-how-we-rate) .guides-interstitial .gi-content>p:not(.gi-kicker) {
  max-width: 52ch;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #64748b;
}

:is(.page-about, .page-privacy, .page-terms, .page-contact, .page-how-we-rate) .guides-interstitial .gi-content a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.12em;
  text-decoration-color: rgba(51, 190, 179, 0.45);
}

:is(.page-about, .page-privacy, .page-terms, .page-contact, .page-how-we-rate) .guides-interstitial .gi-content a:hover {
  color: var(--primary-hover);
  text-decoration-color: var(--primary-hover);
}

:is(.page-about, .page-privacy, .page-terms, .page-contact, .page-how-we-rate) .guides-interstitial .gi-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.15rem;
}

:is(.page-about, .page-privacy, .page-terms, .page-contact, .page-how-we-rate) .guides-interstitial .gi-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #f8fafc;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

:is(.page-about, .page-privacy, .page-terms, .page-contact, .page-how-we-rate) .guides-interstitial .gi-links a:hover {
  border-color: rgba(51, 190, 179, 0.45);
  background: rgba(51, 190, 179, 0.08);
  color: #0f766e;
}

:is(.page-about, .page-privacy, .page-terms, .page-contact, .page-how-we-rate) .guides-interstitial .gi-action {
  align-self: center;
}

:is(.page-about, .page-privacy, .page-terms, .page-contact, .page-how-we-rate) .guides-interstitial .gi-action .btn {
  white-space: nowrap;
}

@media (max-width: 768px) {
  :is(.page-about, .page-privacy, .page-terms, .page-contact, .page-how-we-rate) .guides-interstitial .gi-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  :is(.page-about, .page-privacy, .page-terms, .page-contact, .page-how-we-rate) .guides-interstitial .gi-dek,
  :is(.page-about, .page-privacy, .page-terms, .page-contact, .page-how-we-rate) .guides-interstitial .gi-content>p:not(.gi-kicker) {
    max-width: none;
    margin-inline: auto;
  }

  :is(.page-about, .page-privacy, .page-terms, .page-contact, .page-how-we-rate) .guides-interstitial .gi-links {
    justify-content: center;
  }

  :is(.page-about, .page-privacy, .page-terms, .page-contact, .page-how-we-rate) .guides-interstitial .gi-action {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  :is(.page-about, .page-privacy, .page-terms, .page-contact, .page-how-we-rate) .guides-interstitial .gi-action .btn {
    width: 100%;
    max-width: 320px;
  }
}

.page-about .about-faq.seo-accordion,
.page-privacy .privacy-faq.seo-accordion {
  padding: var(--section-gap) 0;
}

.page-about .about-faq .section-header,
.page-privacy .privacy-faq .section-header {
  margin-bottom: var(--section-gap);
}

.page-about .about-faq .accordion--two-cols,
.page-privacy .privacy-faq .accordion--two-cols {
  gap: clamp(1rem, 2vw, 1.5rem) clamp(1.25rem, 3vw, 2rem);
}

.page-about .about-faq .accordion--two-cols .accordion-col,
.page-privacy .privacy-faq .accordion--two-cols .accordion-col {
  gap: clamp(1rem, 2vw, 1.25rem);
}

/* Legal/static pages — align hero + body columns with breadcrumb inset */
.page-about .about-hero.container,
.page-about .static-page-layout.container,
.page-about .guides-interstitial.container,
.page-about .about-faq>.container,
.page-privacy .privacy-hero.container,
.page-privacy .static-page-layout.container,
.page-privacy .guides-interstitial.container,
.page-privacy .privacy-faq>.container,
.page-terms .terms-hero.container,
.page-terms .static-page-layout.container,
.page-terms .guides-interstitial.container,
.page-terms .terms-faq>.container,
.page-contact .contact-hero.container,
.page-contact .static-page-layout.container,
.page-contact .guides-interstitial.container,
.page-how-we-rate .how-we-rate-hero.container,
.page-how-we-rate .hwr-layout.container,
.page-how-we-rate .hwr-quicknavi.container,
.page-how-we-rate .hwr-trust-strip.container,
.page-how-we-rate .guides-interstitial.container {
  padding-left: var(--bc-inline-padding-x);
  padding-right: var(--bc-inline-padding-x-end);
}

/* How We Rate — layout, hero, navigation, sections */
.page-how-we-rate .hwr-quicknavi {
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.page-how-we-rate .hwr-quicknavi__list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-how-we-rate .hwr-quicknavi__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 0.65rem;
  background: #fff;
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 0.85rem;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.page-how-we-rate .hwr-quicknavi__card:hover,
.page-how-we-rate .hwr-quicknavi__card:focus-visible {
  border-color: color-mix(in srgb, var(--primary) 40%, var(--border-light));
  box-shadow: 0 4px 14px rgba(51, 190, 179, 0.14);
  transform: translateY(-2px);
}

.page-how-we-rate .hwr-quicknavi__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.65rem;
  background: rgba(51, 190, 179, 0.1);
  color: var(--primary);
}

.page-how-we-rate .hwr-quicknavi__icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.page-how-we-rate .hwr-quicknavi__label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  line-height: 1.25;
}

.page-how-we-rate {
  --header-height: 4.25rem;
}

.page-how-we-rate .hwr-layout {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: start;
  width: 100%;
  box-sizing: border-box;
  padding-top: clamp(1rem, 2vw, 1.5rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.page-how-we-rate .hwr-sidebar--sticky {
  position: sticky;
  top: 20px;
  align-self: start;
  width: 100%;
  max-height: calc(100vh - var(--header-height) - 2rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.page-how-we-rate .hwr-toc {
  margin: 0;
  padding: 1.15rem 1rem 1.2rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0.85rem;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 6px 18px rgba(15, 23, 42, 0.04);
}

.page-how-we-rate .hwr-toc__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
}

.page-how-we-rate .hwr-toc__title {
  margin: 0 0 0.9rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.page-how-we-rate .hwr-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.page-how-we-rate .hwr-toc__divider {
  margin: 0.85rem 0 0.55rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(15, 23, 42, 0.07);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
}

.page-how-we-rate .hwr-toc__link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.6rem;
  border-radius: 0.6rem;
  text-decoration: none;
  color: #334155;
  border: 1px solid transparent;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.page-how-we-rate .hwr-toc__link:hover,
.page-how-we-rate .hwr-toc__link:focus-visible {
  background: rgba(51, 190, 179, 0.08);
  border-color: rgba(51, 190, 179, 0.16);
  color: #0f172a;
}

.page-how-we-rate .hwr-toc__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 0.5rem;
  background: rgba(51, 190, 179, 0.1);
  color: var(--primary);
  transition: background 0.18s ease, color 0.18s ease;
}

.page-how-we-rate .hwr-toc__icon svg {
  width: 0.95rem;
  height: 0.95rem;
}

.page-how-we-rate .hwr-toc__link:hover .hwr-toc__icon,
.page-how-we-rate .hwr-toc__link:focus-visible .hwr-toc__icon {
  background: rgba(51, 190, 179, 0.18);
  color: #0d9488;
}

.page-how-we-rate .hwr-toc__label {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
}

.page-how-we-rate .hwr-toc__list--sub .hwr-toc__link {
  padding: 0.45rem 0.55rem;
}

.page-how-we-rate .hwr-toc__list--sub .hwr-toc__icon {
  width: 1.65rem;
  height: 1.65rem;
}

.page-how-we-rate .hwr-toc__list--sub .hwr-toc__label {
  font-size: 0.78rem;
  font-weight: 500;
  color: #64748b;
}

.page-how-we-rate .hwr-toc__list--sub .hwr-toc__link:hover .hwr-toc__label,
.page-how-we-rate .hwr-toc__list--sub .hwr-toc__link:focus-visible .hwr-toc__label {
  color: #0f172a;
}

.page-how-we-rate .hwr-article-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}

.page-how-we-rate .hwr-section {
  padding-bottom: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: clamp(2rem, 3.5vw, 2.75rem);
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.page-how-we-rate .hwr-section+.hwr-section {
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
}

.page-how-we-rate .hwr-section:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.page-how-we-rate .hwr-section-head {
  margin-bottom: 1.35rem;
}

.page-how-we-rate .hwr-section-head__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.65rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(51, 190, 179, 0.1);
  border: 1px solid rgba(51, 190, 179, 0.2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
}

.page-how-we-rate .hwr-section-head__kicker svg {
  width: 0.9rem;
  height: 0.9rem;
}

.page-how-we-rate .hwr-article-card .how-we-rate-section {
  margin-bottom: 0;
}

.page-how-we-rate .hwr-section-head h2 {
  margin-bottom: 0.65rem;
}

.page-how-we-rate .hwr-section-head__dek {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
}

.page-how-we-rate .hwr-subhead {
  margin: 1.75rem 0 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.page-how-we-rate .hwr-callout {
  margin: 0 0 1.35rem;
  padding: 1.15rem 1.35rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(51, 190, 179, 0.08) 0%, rgba(51, 190, 179, 0.02) 100%);
  border: 1px solid rgba(51, 190, 179, 0.16);
  border-left: 4px solid var(--primary);
}

.page-how-we-rate .hwr-callout p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: #334155;
}

.page-how-we-rate .hwr-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.page-how-we-rate .hwr-principle-card {
  padding: 1.15rem 1.1rem;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.page-how-we-rate .hwr-principle-card:hover {
  background: #fff;
  border-color: rgba(51, 190, 179, 0.25);
}

.page-how-we-rate .hwr-principle-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.65rem;
  border-radius: 999px;
  background: rgba(51, 190, 179, 0.12);
  color: var(--primary);
}

.page-how-we-rate .hwr-principle-card__icon svg {
  width: 1rem;
  height: 1rem;
}

.page-how-we-rate .hwr-principle-card__title {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
}

.page-how-we-rate .hwr-principle-card__body {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #475569;
}

.page-how-we-rate .hwr-criteria-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
}

.page-how-we-rate .hwr-criteria-grid--providers {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-how-we-rate .hwr-criteria-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.35rem 1.25rem 1.4rem;
  background: linear-gradient(180deg, #fff 0%, #f8fcfd 100%);
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 1rem;
  border-top: 3px solid rgba(51, 190, 179, 0.35);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 4px 14px rgba(15, 23, 42, 0.04);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.page-how-we-rate .hwr-criteria-card--w25 {
  border-top-color: var(--primary);
}

.page-how-we-rate .hwr-criteria-card--w20 {
  border-top-color: color-mix(in srgb, var(--primary) 80%, #fff);
}

.page-how-we-rate .hwr-criteria-card--w15 {
  border-top-color: color-mix(in srgb, var(--primary) 60%, #fff);
}

.page-how-we-rate .hwr-criteria-card--w10 {
  border-top-color: color-mix(in srgb, var(--primary) 45%, #fff);
}

.page-how-we-rate .hwr-criteria-card--w5 {
  border-top-color: color-mix(in srgb, var(--primary) 30%, #fff);
}

.page-how-we-rate .hwr-criteria-card:hover {
  border-color: color-mix(in srgb, var(--primary) 35%, var(--border-light, #e2e8f0));
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(51, 190, 179, 0.12);
  transform: translateY(-2px);
}

.page-how-we-rate .hwr-criteria-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.875rem;
}

.page-how-we-rate .hwr-criteria-card__num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(51, 190, 179, 0.22);
}

.page-how-we-rate .hwr-criteria-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(51, 190, 179, 0.16) 0%, rgba(51, 190, 179, 0.08) 100%);
  color: var(--primary);
  border: 1px solid rgba(51, 190, 179, 0.18);
  flex-shrink: 0;
}

.page-how-we-rate .hwr-criteria-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.page-how-we-rate .hwr-criteria-card__title {
  flex: 1 1 auto;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
}

.page-how-we-rate .hwr-criteria-card__body {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.58;
  color: #475569;
}

.page-how-we-rate .hwr-criteria-card .terms-list {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
}

.page-how-we-rate .hwr-weight {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(51, 190, 179, 0.1);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
}

.page-how-we-rate .hwr-factor-bars {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 0;
  padding: 1rem;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-md);
}

.page-how-we-rate .hwr-factor-bar {
  display: grid;
  grid-template-columns: 1.75rem minmax(140px, 1.4fr) 1fr 3rem;
  gap: 0.75rem;
  align-items: center;
  padding: 0.55rem 0.65rem;
  background: #fff;
  border-radius: 0.55rem;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.page-how-we-rate .hwr-factor-bar__num {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #94a3b8;
  text-align: center;
}

.page-how-we-rate .hwr-factor-bar__name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f172a;
}

.page-how-we-rate .hwr-factor-bar__track {
  height: 6px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
}

.page-how-we-rate .hwr-factor-bar__fill {
  display: block;
  height: 100%;
  width: calc(var(--hwr-pct, 0) * 1%);
  background: linear-gradient(90deg, color-mix(in srgb, var(--primary) 70%, #fff), var(--primary));
  border-radius: inherit;
}

.page-how-we-rate .hwr-factor-bar__pct {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-align: right;
}

.page-how-we-rate .hwr-factor-detail {
  margin-top: clamp(2rem, 3.5vw, 2.75rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(15, 23, 42, 0.07);
}

.page-how-we-rate .hwr-factor-detail__head {
  margin-bottom: 1.25rem;
}

.page-how-we-rate .hwr-factor-detail__title {
  margin: 0 0 0.4rem;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.page-how-we-rate .hwr-factor-detail__dek {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #64748b;
}

.page-how-we-rate .hwr-factor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.page-how-we-rate .hwr-factor-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  padding: 1.25rem 1.15rem 1.1rem;
  background: linear-gradient(180deg, #fff 0%, #f8fcfd 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0.9rem;
  border-top: 3px solid rgba(51, 190, 179, 0.3);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 4px 14px rgba(15, 23, 42, 0.04);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.page-how-we-rate .hwr-factor-card--labeled {
  padding-top: 1.65rem;
}

.page-how-we-rate .hwr-factor-card__label {
  position: absolute;
  top: -5px;
  right: 1rem;
  z-index: 1;
  padding: 0.3rem 0.7rem 0.35rem;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--primary);
  border-radius: 0 0 0.4rem 0.4rem;
  box-shadow: 0 2px 6px rgba(51, 190, 179, 0.35);
  line-height: 1;
}

.page-how-we-rate .hwr-factor-card__label::before {
  content: "";
  position: absolute;
  top: 0;
  left: -0.35rem;
  width: 0.35rem;
  height: 0.35rem;
  background: color-mix(in srgb, var(--primary) 70%, #000);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.page-how-we-rate .hwr-factor-card__label::after {
  content: "";
  position: absolute;
  top: 0;
  right: -0.35rem;
  width: 0.35rem;
  height: 0.35rem;
  background: color-mix(in srgb, var(--primary) 70%, #000);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.page-how-we-rate .hwr-factor-card--w18 {
  border-top-color: var(--primary);
}

.page-how-we-rate .hwr-factor-card--w15 {
  border-top-color: color-mix(in srgb, var(--primary) 85%, #fff);
}

.page-how-we-rate .hwr-factor-card--w12 {
  border-top-color: color-mix(in srgb, var(--primary) 72%, #fff);
}

.page-how-we-rate .hwr-factor-card--w8 {
  border-top-color: color-mix(in srgb, var(--primary) 55%, #fff);
}

.page-how-we-rate .hwr-factor-card--w7 {
  border-top-color: color-mix(in srgb, var(--primary) 48%, #fff);
}

.page-how-we-rate .hwr-factor-card--w5 {
  border-top-color: color-mix(in srgb, var(--primary) 38%, #fff);
}

.page-how-we-rate .hwr-factor-card--w3 {
  border-top-color: color-mix(in srgb, var(--primary) 28%, #fff);
}

.page-how-we-rate .hwr-factor-card--w2 {
  border-top-color: color-mix(in srgb, var(--primary) 22%, #fff);
}

.page-how-we-rate .hwr-factor-card:hover {
  border-color: color-mix(in srgb, var(--primary) 30%, #e2e8f0);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(51, 190, 179, 0.1);
  transform: translateY(-2px);
}

.page-how-we-rate .hwr-factor-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.page-how-we-rate .hwr-factor-card__num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(51, 190, 179, 0.2);
}

.page-how-we-rate .hwr-factor-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.65rem;
  background: linear-gradient(135deg, rgba(51, 190, 179, 0.16) 0%, rgba(51, 190, 179, 0.08) 100%);
  color: var(--primary);
  border: 1px solid rgba(51, 190, 179, 0.18);
}

.page-how-we-rate .hwr-factor-card__icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.page-how-we-rate .hwr-factor-card__title {
  margin: 0 0 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.page-how-we-rate .hwr-factor-card__body {
  flex: 1 1 auto;
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.58;
  color: #475569;
}

.page-how-we-rate .hwr-factor-card__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.65rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.page-how-we-rate .hwr-factor-card__weight {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}

.page-how-we-rate .hwr-factor-card__weight strong {
  color: var(--primary);
  font-weight: 800;
}

.page-how-we-rate .hwr-factor-card__bar {
  flex: 1 1 4rem;
  height: 5px;
  min-width: 3rem;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
}

.page-how-we-rate .hwr-factor-card__bar>span {
  display: block;
  height: 100%;
  width: calc(var(--hwr-pct, 0) * 1%);
  background: linear-gradient(90deg, color-mix(in srgb, var(--primary) 65%, #fff), var(--primary));
  border-radius: inherit;
}

.page-how-we-rate .hwr-table-wrap {
  margin: 0;
  overflow-x: auto;
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.page-how-we-rate .hwr-data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.page-how-we-rate .hwr-data-table th,
.page-how-we-rate .hwr-data-table td {
  padding: 0.95rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light, #e2e8f0);
  color: #334155;
  vertical-align: top;
}

.page-how-we-rate .hwr-data-table thead th {
  background: #f8fafc;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.page-how-we-rate .hwr-data-table tbody tr:last-child td {
  border-bottom: none;
}

.page-how-we-rate .hwr-data-table tbody tr:hover td {
  background: #f8fafc;
}

.page-how-we-rate .hwr-score-badge {
  display: inline-block;
  min-width: 5.5rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
}

.page-how-we-rate .hwr-score-badge--tier1 {
  background: rgba(51, 190, 179, 0.15);
  color: #0d9488;
}

.page-how-we-rate .hwr-score-badge--recommended {
  background: rgba(59, 130, 246, 0.12);
  color: #1d4ed8;
}

.page-how-we-rate .hwr-score-badge--acceptable {
  background: rgba(100, 116, 139, 0.12);
  color: #475569;
}

.page-how-we-rate .hwr-score-badge--below {
  background: rgba(245, 158, 11, 0.14);
  color: #b45309;
}

.page-how-we-rate .hwr-score-badge--caution {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}

.page-how-we-rate .hwr-score-badge--na {
  background: rgba(148, 163, 184, 0.15);
  color: #64748b;
}

.page-how-we-rate .hwr-bonus-factors {
  margin-top: 0;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-md);
  padding: 0.35rem 1.25rem;
}

.page-how-we-rate .hwr-bonus-factor {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.page-how-we-rate .hwr-bonus-factor:last-child {
  border-bottom: none;
}

.page-how-we-rate .hwr-bonus-factor__num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(51, 190, 179, 0.25);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
}

.page-how-we-rate .hwr-bonus-factor h3 {
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
}

.page-how-we-rate .hwr-bonus-factor p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #475569;
}

.page-how-we-rate .hwr-trust-strip {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
}

.page-how-we-rate .hwr-trust-card {
  width: 100%;
  padding: clamp(1.25rem, 2.5vw, 1.5rem) clamp(1.35rem, 2.5vw, 1.75rem);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.page-how-we-rate .hwr-trust-card--rg {
  background: linear-gradient(135deg, rgba(51, 190, 179, 0.06) 0%, #fff 100%);
  border-color: rgba(51, 190, 179, 0.18);
}

.page-how-we-rate .hwr-trust-card__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.page-how-we-rate .hwr-trust-card__head h2 {
  margin: 0;
  font-size: 1.05rem;
}

.page-how-we-rate .hwr-trust-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.55rem;
  background: rgba(51, 190, 179, 0.12);
  color: var(--primary);
}

.page-how-we-rate .hwr-trust-card__icon svg {
  width: 1rem;
  height: 1rem;
}

.page-how-we-rate .hwr-trust-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #475569;
}

@media (max-width: 1100px) {
  .page-how-we-rate .hwr-layout {
    grid-template-columns: 1fr;
  }

  .page-how-we-rate .hwr-sidebar {
    display: none;
  }

  .page-how-we-rate .hwr-principles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-how-we-rate .hwr-factor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-how-we-rate .hwr-criteria-grid--providers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .page-how-we-rate .hwr-quicknavi__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-how-we-rate .hwr-criteria-grid,
  .page-how-we-rate .hwr-criteria-grid--providers,
  .page-how-we-rate .hwr-principles-grid,
  .page-how-we-rate .hwr-factor-grid {
    grid-template-columns: 1fr;
  }

  .page-how-we-rate .hwr-factor-bar {
    grid-template-columns: 1.5rem 1fr 2.5rem;
    grid-template-rows: auto auto;
  }

  .page-how-we-rate .hwr-factor-bar__track {
    grid-column: 2 / -1;
  }

  .page-how-we-rate .hwr-article-card {
    padding: 1.25rem 1rem;
  }

  .page-how-we-rate .hwr-bonus-factors {
    padding: 0.25rem 0.85rem;
  }
}

@media (max-width: 480px) {
  .page-how-we-rate .hwr-quicknavi__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {

  .page-how-we-rate .hwr-criteria-card:hover,
  .page-how-we-rate .hwr-factor-card:hover,
  .page-how-we-rate .hwr-quicknavi__card:hover {
    transform: none;
  }
}

/* Contact + About/Privacy/Terms: main column below hero (same width as .container) */
.contact-layout,
.static-page-layout {
  width: 100%;
  box-sizing: border-box;
  padding-top: clamp(1.75rem, 3.5vw, 3rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

/* Static editorial pages — full-bleed breadcrumb bar, aligned body column */
.page-about .static-page-layout .about-article {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.75rem, 3vw, 2.5rem);
}

.page-about .about-article__intro a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.page-about .about-article__intro a:hover {
  color: #1e3a5f;
}

.page-privacy .static-page-layout .privacy-article {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.75rem, 3vw, 2.5rem);
}

.page-privacy .privacy-article__intro a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.page-privacy .privacy-article__intro a:hover {
  color: #1e3a5f;
}

.page-privacy .privacy-article__highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.85rem, 2vw, 1rem);
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

@media (min-width: 640px) {
  .page-privacy .privacy-article__highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.page-privacy .privacy-highlight {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: clamp(1rem, 2vw, 1.25rem);
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-md);
}

.page-privacy .privacy-highlight__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--primary);
}

.page-privacy .privacy-highlight__icon svg {
  width: 1rem;
  height: 1rem;
}

.page-privacy .privacy-highlight__body h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.page-privacy .privacy-highlight__body p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #475569;
}

.page-about .about-article__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.25rem);
}

@media (min-width: 768px) {
  .page-about .about-article__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.page-about .about-section--card {
  margin-bottom: 0;
  padding: clamp(1.35rem, 2.5vw, 1.75rem);
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-md);
}

.page-about .about-section--card h2 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
}

.page-about .about-section--card h2 i,
.page-about .about-section--card h2 svg {
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  color: var(--primary);
}

.page-about .about-section--card p {
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 0;
}

.contact-email-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
  padding: clamp(2rem, 3.5vw, 2.85rem) clamp(1.75rem, 3vw, 2.25rem) clamp(1.75rem, 3vw, 2.25rem) clamp(1.5rem, 2.5vw, 1.85rem);
  margin-bottom: clamp(2.75rem, 5vw, 3.75rem);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md, 12px);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(15, 23, 42, 0.06));
}

.contact-email-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.1) 0%, rgba(30, 58, 95, 0.12) 100%);
  color: var(--primary);
}

.contact-email-card__icon i,
.contact-email-card__icon svg {
  width: 24px;
  height: 24px;
}

.contact-email-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.35rem;
}

.contact-email-card__dek {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0 0 0.5rem;
}

.contact-email-card__link {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  word-break: break-all;
}

.contact-email-card__link:hover {
  color: #1e3a5f;
}

.contact-email-card__note {
  margin: 1.25rem 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #64748b;
}

.contact-email-card__note a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.contact-email-card__note a:hover {
  color: #1e3a5f;
}

/* ========================================= */
/* Global Brand Overrides */
/* ========================================= */
.site-logo {
  height: 32px;
  width: auto;
  display: block;
}

/* ========================================= */
/* Slots Page specific */
/* ========================================= */
.slots-page {
  background: #fafafa;
  padding-bottom: var(--section-gap);
}

.slots-hero {
  box-sizing: border-box;
}

.page-slots .slots-hero.container {
  box-sizing: border-box;
}

.page-slots .slots-hero .dh-badge {
  font-size: 0.75rem;
  padding: 8px 14px;
  gap: 6px;
}

.page-slots .slots-hero .dh-badge i {
  width: 15px;
  height: 15px;
}

.slots-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.35rem, 4.8vw, 3.35rem);
  font-weight: 700;
  color: #020617;
  line-height: 1.12;
  margin: 18px 0 16px;
  letter-spacing: -0.02em;
  max-width: none;
}

.slots-hero-desc {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--text-muted);
  font-style: italic;
  max-width: none;
  line-height: 1.58;
}

.slots-hero-desc .text-blue {
  color: var(--primary);
  font-weight: 700;
  font-style: normal;
}

.slots-hero-desc--secondary {
  margin-top: 1rem;
  font-family: var(--font-sans, Poppins, system-ui, sans-serif);
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.62;
  max-width: none;
}

.slots-hero-desc--secondary a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.slots-hero-desc--secondary a:hover {
  color: #2a9d91;
}

/* Filter Bar (uses `.container`; do not set max-width here or it overrides `.container`) */
.slots-filter-section {
  padding: 0;
  margin-bottom: var(--section-gap-sm);
  min-width: 0;
  box-sizing: border-box;
  overflow-x: clip;
}

.slots-filter-bar {
  background: #f1f5f9;
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  gap: 24px;
  align-items: flex-end;
  flex-wrap: wrap;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.sf-search {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
}

.sf-search label {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sf-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 10px 16px;
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  box-sizing: border-box;
}

.sf-input-wrap i {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
}

.sf-input-wrap input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--text-main);
}

.sf-dropdowns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  min-width: 0;
  max-width: 100%;
}

.sf-dropdown {
  background: white;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: border-color 0.2s;
  font-size: 0.85rem;
  font-weight: 600;
  color: #020617;
}

.sf-dropdown--field {
  cursor: default;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  min-width: 0;
  flex: 1 1 10rem;
  /* Single surface: label + select only (no nested white card) */
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

.sf-dropdown.sf-dropdown--field:hover {
  border-color: transparent;
}

.sf-dropdown-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

.sf-select {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 10px 36px 10px 12px;
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background:
    #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 12px center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #020617;
  font-family: var(--font-sans);
  cursor: pointer;
  appearance: none;
  box-sizing: border-box;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.sf-select:hover,
.sf-select:focus {
  border-color: #cbd5e1;
}

.sf-select:focus {
  outline: 2px solid rgba(51, 190, 179, 0.35);
  outline-offset: 0;
}

.sf-dropdown:hover {
  border-color: #cbd5e1;
}

.sf-dropdown i {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
}

.sf-actions {
  display: flex;
  align-items: center;
  padding-bottom: 12px;
}

.sf-clear-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  background: transparent;
  transition:
    color 0.2s,
    background 0.2s,
    border-color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  min-height: 44px;
  padding: 10px 18px;
  box-sizing: border-box;
}

.sf-clear-btn:hover {
  color: var(--primary-hover);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(51, 190, 179, 0.25);
}

.sf-clear-btn:focus-visible {
  outline: 2px solid rgba(51, 190, 179, 0.45);
  outline-offset: 2px;
}

/* Slots filter: one horizontal row on laptop / desktop (992px+) */
@media (min-width: 992px) {
  .slots-filter-bar {
    flex-wrap: nowrap;
    align-items: flex-end;
    gap: clamp(14px, 1.6vw, 24px);
  }

  .sf-search {
    flex: 1 1 200px;
    min-width: 0;
  }

  .sf-dropdowns {
    flex: 0 1 auto;
    flex-wrap: nowrap;
    align-items: flex-end;
  }

  .sf-dropdown.sf-dropdown--field {
    flex: 0 1 10rem;
    min-width: 7.5rem;
  }

  .sf-dropdowns .sf-dropdown--field:first-child {
    flex-basis: 11.5rem;
    min-width: 9rem;
  }

  .sf-actions {
    flex: 0 0 auto;
    align-self: flex-end;
  }
}

/* Slots Grid: 4 columns on large screens, 8 items per page (see SLOTS_PAGE_SIZE in script.js) */
.slots-grid-section {
  margin-bottom: var(--section-gap);
}

/* Intro copy above grid: supports SEO heading hierarchy (h1 hero → h2 library) */
.slots-listing-seo,
.providers-listing-seo {
  max-width: var(--container-max-width);
  margin: 0 auto var(--section-gap-sm);
  text-align: center;
  padding: 0 8px;
}

.page-slots .slots-listing-seo {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.slots-listing-seo h2,
.providers-listing-seo h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  color: #020617;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.slots-listing-seo p,
.providers-listing-seo p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  box-sizing: border-box;
  /* Explicit row/column gaps so tiles don’t read as one block */
  row-gap: clamp(24px, 3vw, 40px);
  column-gap: clamp(20px, 2.5vw, 36px);
  margin-bottom: 32px;
}

.slots-grid-disclaimer,
.providers-grid-disclaimer {
  font-size: 0.68rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.5;
  max-width: var(--container-max-width);
  margin: 12px auto 0;
  padding: 0 16px 8px;
}

.page-slots .slots-grid-disclaimer {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

/* Slot Card - listing tiles (slots.html); chrome aligned with footer carousel cards */
.slot-card {
  background: var(--bg-card);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.slot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  border-color: rgba(51, 190, 179, 0.35);
}

/* Art area: full-bleed 16:9, light matte (no dark frame / letterboxing) */
.sc-image-wrap {
  aspect-ratio: 16 / 9;
  width: 100%;
  min-height: 96px;
  position: relative;
  overflow: hidden;
  background: #f8fafc;
}

.sc-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 44%;
  border-radius: 0;
  background: transparent;
}

.sc-image-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* Subtle bottom wash so RTP stays legible on light and dark key art */
  background: linear-gradient(180deg,
      rgba(248, 250, 252, 0) 0%,
      rgba(248, 250, 252, 0) 58%,
      rgba(248, 250, 252, 0.45) 100%);
}

.sc-volatility-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 3;
  background: #fff;
  color: #0f172a;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  border-radius: 100px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.sc-content {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  font-family: var(--font-sans);
  gap: 8px;
}

.sc-content-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 0;
}

.sc-content .sc-provider-name {
  margin-bottom: 0;
}

.sc-content-head .sc-provider-name {
  flex: 1;
}

.sc-provider-name {
  font-size: 0.62rem;
  font-weight: 800;
  color: #0f2744;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.3;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-top: 2px;
}

.sc-provider-name--empty {
  color: #cbd5e1;
  letter-spacing: 0.12em;
}

.sc-rtp-pill {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 3.25rem;
  padding: 6px 10px 7px;
  background: linear-gradient(180deg, #fafcfd 0%, #f4f8fb 100%);
  border: 1px solid rgba(51, 190, 179, 0.45);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  line-height: 1;
}

.sc-rtp-pill__val {
  font-size: 0.95rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.sc-rtp-pill__lbl {
  font-size: 0.5rem;
  font-weight: 800;
  color: #94a3b8;
  margin-top: 3px;
  letter-spacing: 0.12em;
}

.sc-title {
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  font-family: var(--font-serif);
  font-weight: 700;
  color: #0a1628;
  margin: 0;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.sc-dek {
  font-size: 0.74rem;
  line-height: 1.4;
  color: #64748b;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sc-quick-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.66rem;
  font-weight: 600;
  color: #1e3a5f;
  margin: 0;
  padding: 0;
}

.sc-quick-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sc-quick-meta__item i {
  width: 13px;
  height: 13px;
  color: var(--primary);
  opacity: 0.85;
  flex-shrink: 0;
}

.sc-quick-meta__item.is-empty {
  color: #cbd5e1;
}

.sc-quick-meta__item.is-empty i {
  color: #cbd5e1;
  opacity: 1;
}

.sc-quick-meta__sep {
  color: #cbd5e1;
  font-weight: 700;
  user-select: none;
}

.sc-card-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

.sc-card-actions .sc-btn {
  margin-bottom: 0;
}

.sc-btn--play {
  background: #fff !important;
  color: var(--primary) !important;
  border: 1.5px solid #cbd5e1 !important;
}

.sc-btn--play:hover {
  background: #f8fafc !important;
  border-color: rgba(45, 212, 191, 0.5) !important;
  color: #0d9488 !important;
}

.sc-btn {
  display: block;
  width: 100%;
  padding: 10px 12px;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(180deg, #f4f8fb 0%, #eef3f8 100%);
  color: var(--primary);
  border: 1px solid #d8e0ea;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 9px;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.sc-btn:hover {
  background: linear-gradient(180deg, #e8f7f5 0%, #dff5f2 100%);
  border-color: rgba(51, 190, 179, 0.5);
  color: var(--primary-hover);
  box-shadow: 0 4px 14px rgba(51, 190, 179, 0.15);
}

.sc-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Responsive: 4 cols → 2 cols → 1 col */
@media (max-width: 1000px) {
  .slots-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: clamp(22px, 3.5vw, 36px);
    column-gap: clamp(18px, 3vw, 28px);
  }
}

/* Slots filter: stack + grid on tablet / phone (below laptop breakpoint) */
@media (max-width: 991px) {
  .slots-filter-bar {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 16px;
    padding: 18px 18px 16px;
  }

  .sf-search {
    flex: 1 1 auto;
    width: 100%;
  }

  .sf-dropdowns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
    width: 100%;
  }

  .sf-dropdown.sf-dropdown--field {
    flex: none;
    min-width: 0;
  }

  /* Three filters: two on row one, RTP full width on row two */
  .sf-dropdowns .sf-dropdown--field:nth-child(3) {
    grid-column: 1 / -1;
  }

  .sf-actions {
    padding-bottom: 0;
    align-self: stretch;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .slots-filter-section {
    margin-bottom: 32px;
  }

  .slots-filter-bar {
    padding: 16px 14px 14px;
    padding-left: max(14px, env(safe-area-inset-left, 0px));
    padding-right: max(14px, env(safe-area-inset-right, 0px));
    border-radius: 12px;
    gap: 14px;
  }

  .sf-dropdowns {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sf-input-wrap {
    min-height: 48px;
    padding: 10px 14px;
    border-radius: 10px;
  }

  .sf-input-wrap input {
    font-size: 16px;
    /* avoids iOS zoom on focus */
  }

  .sf-select {
    min-height: 48px;
    font-size: 16px;
    border-radius: 10px;
    padding: 12px 40px 12px 14px;
  }

  .sf-actions {
    margin-top: 2px;
  }

  .sf-clear-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(51, 190, 179, 0.28);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  }

  .sf-clear-btn:hover {
    background: #fff;
    border-color: rgba(51, 190, 179, 0.45);
  }

  .slots-grid {
    grid-template-columns: 1fr;
    row-gap: 24px;
    column-gap: 0;
  }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
  pointer-events: none;
}

.scroll-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-to-top:hover {
  background: var(--primary-hover);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(29, 78, 216, 0.4);
}

/* ========================================================
   Mobile-first responsive polish (touch, fonts, spacing)
   ======================================================== */

/* Small phones: tighter container, smaller hero type */
@media (max-width: 400px) {
  .container {
    padding-left: max(14px, env(safe-area-inset-left, 14px));
    padding-right: max(14px, env(safe-area-inset-right, 14px));
  }

  h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
    margin-bottom: 16px;
  }

  h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .hero-content p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .hero-card--simple {
    padding: 20px 18px;
  }

  .hero-card__headline {
    font-size: clamp(1rem, 4vw, 1.2rem);
  }

  .tier-card .info-header h3 {
    font-size: clamp(1.15rem, 4.5vw, 1.45rem);
  }

  .section-header p {
    font-size: 0.9rem;
  }

  .criteria-card {
    padding: 24px 20px;
  }

  .vertical-card {
    padding: 24px 20px;
  }
}

/* Better touch targets globally */
@media (hover: none) and (pointer: coarse) {
  .view-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 10px 2px;
  }

  .tier-expand-btn {
    min-height: 44px;
    padding: 10px 6px;
  }

  .accordion-header {
    min-height: 52px;
    padding: 16px 18px;
  }

  .btn {
    min-height: 48px;
    padding: 14px 28px;
  }

  .info-btn {
    min-width: 48px;
    min-height: 48px;
  }

  .tier-payment-chip {
    min-height: 32px;
  }

  .home-intro__pill {
    min-height: 44px;
    padding: 11px 16px;
  }
}

/* Disable hover-only effects on touch devices */
@media (hover: none) {
  .tier-card:hover {
    transform: none;
    box-shadow: var(--shadow-md);
  }

  .hero-card:hover,
  .home-intro__card:hover {
    transform: none;
  }

  .vertical-card:hover {
    transform: none;
  }

  .criteria-card:hover {
    transform: none;
  }

  .home-intro__pill:hover {
    transform: none;
    box-shadow:
      0 1px 2px rgba(15, 23, 42, 0.04),
      inset 0 1px 0 rgba(255, 255, 255, 0.75);
  }
}

/* Mobile section spacing */
@media (max-width: 768px) {
  .section-header p {
    font-size: 0.95rem;
  }

  .verticals-grid {
    gap: 16px;
  }

  .vertical-card {
    padding: 28px 22px;
  }

  .vertical-card.large {
    padding: 28px 22px;
  }

  .criteria-grid {
    gap: 14px;
  }
}

/* Smooth card active state for touch feedback */
@media (hover: none) and (pointer: coarse) {
  .tier-card:active {
    transform: scale(0.99);
    box-shadow: var(--shadow-sm);
    transition-duration: 0.1s;
  }

  .vertical-card:active {
    transform: scale(0.98);
    transition-duration: 0.1s;
  }
}

/* Intermediate breakpoint: 2-col verticals for medium phones */
@media (min-width: 480px) and (max-width: 767px) {
  .verticals-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .vertical-card.large {
    grid-column: span 2;
  }
}

/* --- Player reviews (casino / slot / provider detail) - match verdict article layout --- */
.pr-section {
  padding: 48px 0 72px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 45%, #fff 100%);
  border-bottom: 1px solid #f1f5f9;
}

.pr-main-shell .cr-verdict-title .pr-count {
  font-family: var(--font-sans, inherit);
  font-size: 0.5em;
  font-weight: 600;
  color: #64748b;
  margin-left: 10px;
  vertical-align: middle;
  letter-spacing: 0.02em;
}

.pr-reviews-header {
  margin-bottom: clamp(20px, 3vw, 28px);
}

/* Title “What players say” + sort on one row */
.pr-reviews-panel>.pr-panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px 14px;
  margin-bottom: 16px;
}

.pr-reviews-panel>.pr-panel-head .cr-verdict-panel-h {
  margin-bottom: 0;
  flex: 1 1 auto;
  min-width: min(100%, 180px);
}

.pr-reviews-panel>.pr-panel-head .pr-sort {
  flex: 0 0 auto;
  margin-left: auto;
}

/* Player reviews: compact sort (matches verdict / primary palette) */
.pr-sort {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0;
}

.pr-sort[hidden] {
  display: none !important;
}

.pr-sort__trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  justify-content: space-between;
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--primary);
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-sans, inherit);
  line-height: 1.25;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.pr-sort__trigger:hover {
  background: #f8fafc;
  border-color: rgba(51, 190, 179, 0.35);
}

.pr-sort__trigger:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.pr-sort__chev {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 0.18s ease;
}

.pr-sort--open .pr-sort__chev {
  transform: rotate(180deg);
}

.pr-sort__menu {
  position: absolute;
  z-index: 50;
  right: 0;
  top: calc(100% + 5px);
  min-width: 200px;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
}

.pr-sort__menu[hidden] {
  display: none !important;
}

.pr-sort__opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #64748b;
  cursor: pointer;
  border-bottom: 1px solid #f1f5f9;
}

.pr-sort__opt:last-child {
  border-bottom: none;
}

.pr-sort__opt:hover,
.pr-sort__opt:focus-visible {
  background: #f8fafc;
}

.pr-sort__opt--selected {
  background: rgba(51, 190, 179, 0.12);
  color: #0f172a;
}

.pr-sort__check {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--primary);
  opacity: 0;
}

.pr-sort__opt--selected .pr-sort__check {
  opacity: 1;
}

@media (max-width: 899px) {
  .pr-reviews-panel>.pr-panel-head .pr-sort {
    width: 100%;
    margin-left: 0;
    justify-content: flex-end;
  }

  .pr-sort__trigger {
    max-width: 100%;
  }

  .pr-sort__menu {
    left: 0;
    right: 0;
    min-width: 0;
  }
}

.pr-main-shell .pr-summary {
  margin-bottom: clamp(20px, 3vw, 28px);
}

.pr-reviews-panel {
  padding-top: 4px;
}

.pr-reviews-panel .pr-list {
  margin-top: 4px;
}

.pr-summary {
  margin-bottom: clamp(20px, 3vw, 28px);
  padding: clamp(20px, 3vw, 26px) clamp(18px, 2.5vw, 26px);
  border: 1px solid rgba(51, 190, 179, 0.22);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(51, 190, 179, 0.06) 0%, #ffffff 55%, #f8fafc 100%);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.pr-summary[hidden] {
  display: none !important;
}

.pr-summary__grid {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
}

.pr-summary-kicker {
  margin: 0 0 10px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
}

.pr-summary-distribution .pr-summary-kicker {
  margin-bottom: 14px;
}

.pr-summary-score {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: clamp(12px, 2vw, 24px);
  border-right: 1px solid rgba(226, 232, 240, 0.95);
}

.pr-summary-distribution {
  min-width: 0;
}

.pr-summary-rating-line {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.pr-summary-avg {
  font-family: var(--font-serif);
  font-size: clamp(2.35rem, 5vw, 3.1rem);
  font-weight: 700;
  color: #020617;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.pr-summary-max {
  font-size: 0.88rem;
  font-weight: 600;
  color: #94a3b8;
  transform: translateY(-2px);
}

.pr-summary-stars {
  margin-top: 6px;
}

.pr-summary-stars .stars-meter--units {
  font-size: 1.25rem;
  gap: 3px;
}

.pr-summary-stars .star-unit__track {
  color: #e2e8f0;
}

.pr-summary-stars .star-unit__fill {
  color: #f59e0b;
}

.pr-summary-total {
  margin: 10px 0 0;
  font-size: 0.8rem;
  color: #475569;
  font-weight: 600;
  line-height: 1.4;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(241, 245, 249, 0.95);
  border: 1px solid #e2e8f0;
  max-width: 100%;
}

.pr-summary-bars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pr-bar-row {
  display: grid;
  grid-template-columns: 76px 1fr 42px;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: #475569;
}

.pr-bar-label {
  text-align: right;
  white-space: nowrap;
  font-weight: 600;
  color: #64748b;
}

.pr-bar-track {
  height: 9px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.06);
}

.pr-bar-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #0f766e);
  border-radius: 999px;
  min-width: 0;
  transition: width 0.3s ease-out;
}

.pr-bar-pct {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: #64748b;
  font-size: 0.78rem;
}

.pr-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pr-item {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 22px 24px;
  background: #fff;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.pr-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
}

.pr-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.pr-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2dd4bf, #0f766e);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.pr-avatar--img {
  object-fit: cover;
  background: #f1f5f9;
}

.pr-id {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.pr-name {
  font-weight: 600;
  color: #020617;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.pr-verified {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  background: #f0fdfa;
  border-radius: 999px;
  padding: 2px 8px;
}

.pr-verified i {
  width: 12px;
  height: 12px;
}

.pr-date {
  font-size: 0.82rem;
  color: #64748b;
}

.pr-score {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  color: #020617;
  white-space: nowrap;
}

.pr-score i {
  width: 16px;
  height: 16px;
  color: #f59e0b;
  fill: #f59e0b;
}

.pr-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 8px 0;
  line-height: 1.55;
  color: #334155;
  font-size: 0.94rem;
}

.pr-line i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pr-line--pro i {
  color: #10b981;
}

.pr-line--con i {
  color: #ef4444;
}

.pr-actions {
  margin-top: 14px;
  display: flex;
  gap: 8px;
}

.pr-helpful {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 6px 14px;
  background: #f8fafc;
  color: #94a3b8;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: not-allowed;
}

.pr-helpful i {
  width: 14px;
  height: 14px;
}

.pr-empty {
  display: block;
  margin-top: 8px;
  text-align: center;
  padding: clamp(14px, 2vw, 18px) clamp(12px, 2vw, 16px);
  border: 1px dashed rgba(148, 163, 184, 0.45);
  border-radius: var(--radius-md);
  background: #f8fafc;
}

.pr-empty[hidden] {
  display: none !important;
}

.pr-empty__title {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
  margin: 0;
  letter-spacing: 0;
}

.pr-empty__dek {
  font-size: 0.88rem;
  line-height: 1.62;
  color: #64748b;
  margin: 0 auto;
  max-width: 38ch;
  font-weight: 500;
}

@media (max-width: 640px) {
  .pr-summary__grid {
    grid-template-columns: 1fr;
  }

  .pr-summary-score {
    border-right: none;
    padding-right: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.95);
  }

  .pr-item {
    padding: 18px;
  }

  .pr-head {
    flex-wrap: wrap;
  }

  .pr-bar-row {
    grid-template-columns: 64px 1fr 36px;
    font-size: 0.78rem;
  }
}

/* ── App loading: spinner, skeleton cards, detail-page shimmer ── */

@keyframes app-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes app-shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.app-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px 16px;
  color: var(--text-muted, #64748b);
  grid-column: 1 / -1;
  text-align: center;
}

.app-loading__spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(15, 23, 42, 0.08);
  border-top-color: var(--brand-primary, #2563eb);
  border-radius: 50%;
  animation: app-spin 0.7s linear infinite;
  flex-shrink: 0;
}

.app-loading__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.app-skel-block {
  background: linear-gradient(90deg, #e8edf3 0%, #f4f6f9 45%, #e8edf3 90%);
  background-size: 200% 100%;
  animation: app-shimmer 1.4s ease-in-out infinite;
  border-radius: 6px;
}

.app-skel {
  pointer-events: none;
  user-select: none;
}

.app-skel--listing-card {
  display: grid;
  grid-template-columns: auto 88px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: var(--radius-md, 12px);
  min-height: 120px;
}

.app-skel--listing-card .app-skel-review-panel {
  width: clamp(148px, 20vw, 176px);
  height: 120px;
  border-radius: 14px;
  flex-shrink: 0;
}

.app-skel--listing-card .app-skel-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.app-skel--listing-card .app-skel-line--lg {
  height: 18px;
  width: 55%;
  max-width: 220px;
}

.app-skel--listing-card .app-skel-line--md {
  height: 14px;
  width: 38%;
  max-width: 140px;
}

.app-skel--listing-card .app-skel-line--sm {
  height: 12px;
  width: 72%;
  max-width: 280px;
}

.app-skel--listing-card .app-skel-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 120px;
}

.app-skel--listing-card .app-skel-btn {
  height: 40px;
  border-radius: 8px;
}

.app-skel--tier-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: start;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: var(--radius-md, 12px);
  min-height: 140px;
}

.app-skel--tier-card .app-skel-logo-col {
  width: 88px;
  height: 88px;
  border-radius: 12px;
}

.app-skel--tier-card .app-skel-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.app-skel--tier-card .app-skel-bonus {
  width: 180px;
  min-height: 120px;
  border-radius: 10px;
}

.app-skel--slot-card,
.app-skel--provider-card,
.app-skel--bonus-card,
.app-skel--guide-card {
  background: #fff;
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: var(--radius-md, 12px);
  overflow: hidden;
  min-height: 200px;
}

.app-skel--slot-card .app-skel-media,
.app-skel--provider-card .app-skel-media,
.app-skel--guide-card .app-skel-media {
  height: 160px;
  border-radius: 0;
}

.app-skel--bonus-card .app-skel-media {
  height: 120px;
  border-radius: 0;
}

.app-skel--slot-card .app-skel-body,
.app-skel--provider-card .app-skel-body,
.app-skel--bonus-card .app-skel-body,
.app-skel--guide-card .app-skel-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.app-skel-line--title {
  height: 18px;
  width: 70%;
}

.app-skel-line--sub {
  height: 12px;
  width: 45%;
}

.app-skel-line--body {
  height: 12px;
  width: 90%;
}

.bonuses-grid-loading.app-loading,
.bonuses-grid-empty,
.bonuses-grid-error {
  grid-column: 1 / -1;
}

.detail-page--loading .cr-hero-banner,
.detail-page--loading .cr-hero-banner.pv-provider-hero__banner,
.detail-page--loading .cr-hero-banner.sv-slot-hero__banner,
.detail-page--loading .cr-hero-logo-v2 {
  position: relative;
  overflow: hidden;
  background: #e8edf3;
}

.detail-page--loading .cr-hero-banner__img,
.detail-page--loading .cr-hero-logo-v2__img {
  opacity: 0;
}

.detail-page--loading .cr-hero-banner::after,
.detail-page--loading .cr-hero-logo-v2::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #e8edf3 0%, #f4f6f9 45%, #e8edf3 90%);
  background-size: 200% 100%;
  animation: app-shimmer 1.4s ease-in-out infinite;
}

.detail-page--loading #cr-name,
.detail-page--loading #pv-title,
.detail-page--loading #sv-title,
.detail-page--loading #bd-title,
.detail-page--loading #bd-casino-name,
.detail-page--loading #gp-title,
.detail-page--loading .bd-breadcrumb__current#bd-crumb-current,
.detail-page--loading #gp-crumb-current {
  color: transparent !important;
  background: linear-gradient(90deg, #e8edf3 0%, #f4f6f9 45%, #e8edf3 90%);
  background-size: 200% 100%;
  animation: app-shimmer 1.4s ease-in-out infinite;
  border-radius: 6px;
  display: inline-block;
  min-width: 180px;
  min-height: 1.1em;
}

.detail-page--loading .cr-rating-value strong,
.detail-page--loading #pv-hero-editorial-score,
.detail-page--loading #pv-hero-player-score,
.detail-page--loading #sv-hero-editorial-score,
.detail-page--loading #sv-hero-player-score {
  color: transparent;
  background: #e8edf3;
  border-radius: 4px;
  min-width: 2ch;
  display: inline-block;
}

@media (max-width: 768px) {
  .app-skel--listing-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .app-skel--listing-card .app-skel-body {
    align-items: center;
  }

  .app-skel--listing-card .app-skel-actions {
    width: 100%;
  }

  .app-skel--listing-card .app-skel-review-panel {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .app-skel--tier-card {
    grid-template-columns: 1fr;
  }

  .app-skel--tier-card .app-skel-bonus {
    width: 100%;
  }
}

/* ============================================================
   Malaysia hub (.page-malaysia)
   ============================================================ */
.page-malaysia {
  --malaysia-inline: var(--site-inline);
  --malaysia-inline-end: var(--site-inline-end);
}

.page-malaysia :is(.casinos-hero.container,
  .malaysia-quicknavi.container,
  section.casinos-seo.container,
  section.malaysia-section.container,
  section.malaysia-conclusion-cta.container) {
  box-sizing: border-box;
  max-width: none;
  width: 100%;
  margin-inline: 0;
  padding-left: var(--malaysia-inline);
  padding-right: var(--malaysia-inline-end);
}

.page-malaysia section.malaysia-section:not(.container)>.container,
.page-malaysia .malaysia-licensing>.container,
.page-malaysia .malaysia-faq.seo-accordion>.container {
  box-sizing: border-box;
  max-width: none;
  width: 100%;
  margin-inline: 0;
  padding-left: var(--malaysia-inline);
  padding-right: var(--malaysia-inline-end);
}

.page-malaysia .casinos-hero {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-left: var(--malaysia-inline);
  padding-right: var(--malaysia-inline-end);
  padding-top: clamp(52px, 6vw, 80px);
  padding-bottom: clamp(52px, 6vw, 80px);
  background: #ffffff;
}

.page-malaysia .casinos-hero__inner {
  max-width: var(--container-max-width);
  margin-inline: auto;
}

.page-malaysia .malaysia-section {
  padding: var(--section-gap) 0;
}

.page-malaysia section.malaysia-section.container:has(#malaysia-bonus-h2),
.page-malaysia section.malaysia-section.container:has(#malaysia-live-h2),
.page-malaysia section.malaysia-section.container:has(#malaysia-legal-h2) {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

/* Alternate white / muted bands for every main section (malaysia-section + casinos-seo) */
.page-malaysia main>section {
  background: #ffffff;
  border-top: none;
}

.page-malaysia main>section:nth-of-type(even) {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.page-malaysia main>section.casinos-hero {
  background: #ffffff;
}

/* Content lists: restore bullets (global ul reset is for nav/UI only) */
.privacy-list,
.terms-list:not(.terms-list--with-icons),
.blackjack-mobile-tips,
.slot-editors-choice__list,
.slot-editors-choice__intro ul,
.page-malaysia :is(.malaysia-section, .casinos-seo, .malaysia-conclusion-cta, .malaysia-faq, .baccarat-guide-block__body) ul:not(.malaysia-quicknavi__list):not(.malaysia-listing-meta__trust):not(.malaysia-checklist):not(.malaysia-game-list):not(.malaysia-game-list--inline):not(.malaysia-jackpot-list):not(.malaysia-payout-list):not(.malaysia-payout-grid):not(.malaysia-official-list):not(.malaysia-conclusion-card__features):not(.e-wallet-wallet-tags):not(.malaysia-payments-benefits):not(.malaysia-payments-logos) {
  list-style: disc;
  list-style-position: outside;
}

.slot-editors-choice__intro ol,
.page-malaysia :is(.malaysia-section, .casinos-seo, .baccarat-guide-block__body) ol {
  list-style: decimal;
  list-style-position: outside;
}

.privacy-list li::marker,
.terms-list:not(.terms-list--with-icons) li::marker,
.blackjack-mobile-tips li::marker,
.slot-editors-choice__list li::marker,
.slot-editors-choice__intro :is(ul, ol) li::marker,
.page-malaysia :is(.malaysia-section, .casinos-seo, .baccarat-guide-block__body) :is(ul, ol):not(.malaysia-quicknavi__list):not(.malaysia-listing-meta__trust):not(.malaysia-checklist):not(.malaysia-game-list):not(.malaysia-game-list--inline):not(.malaysia-jackpot-list):not(.malaysia-payout-list):not(.malaysia-payout-grid):not(.malaysia-official-list):not(.malaysia-conclusion-card__features):not(.e-wallet-wallet-tags):not(.malaysia-payments-benefits):not(.malaysia-payments-logos) li::marker {
  color: #64748b;
}

.page-malaysia .malaysia-bonus-featured,
.page-malaysia .malaysia-live-featured {
  margin-top: 1.25rem;
}

.page-malaysia .malaysia-live-featured {
  margin-bottom: 1.5rem;
}

.page-malaysia .malaysia-bonus-featured .malaysia-operator-row__highlight,
.page-malaysia .malaysia-live-featured .malaysia-operator-row__highlight {
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.page-malaysia .malaysia-bonus-featured .malaysia-operator-row__highlight p,
.page-malaysia .malaysia-live-featured .malaysia-operator-row__highlight p {
  margin: 0;
}

.page-malaysia .malaysia-section>.container.malaysia-section__body {
  padding-top: 0;
}

.page-malaysia .malaysia-section__heading.container {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding: clamp(1.75rem, 3.5vw, 2.75rem) var(--malaysia-inline-end) clamp(1.35rem, 2.5vw, 2rem) var(--malaysia-inline);
  background: #eef2f7;
  text-align: center;
}

.page-malaysia .malaysia-section__heading h2 {
  max-width: var(--container-max-width);
  margin: 0 auto;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #0f172a;
  text-transform: capitalize;
}

.page-malaysia .malaysia-section__body {
  padding-top: 1.25rem;
}

.page-malaysia .malaysia-listing-meta {
  width: 100%;
  margin: 0;
  background: linear-gradient(90deg, rgba(38, 47, 58, 0.96) 0%, rgba(48, 58, 72, 0.94) 50%, rgba(38, 47, 58, 0.96) 100%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.page-malaysia .malaysia-listing-meta__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  width: 100%;
  max-width: none;
  min-height: 4.25rem;
  margin: 0;
  padding: 0.85rem var(--malaysia-inline-end) 0.85rem var(--malaysia-inline);
}

.page-malaysia .malaysia-listing-meta__updated {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 0.35rem;
  min-width: 0;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.page-malaysia .malaysia-listing-meta__updated-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  color: #ffffff;
}

.page-malaysia .malaysia-listing-meta__updated-date {
  display: block;
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.2;
  color: #94a3b8;
  font-variant-numeric: tabular-nums;
}

.page-malaysia .malaysia-listing-meta__disclosure {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: none;
  text-align: left;
  line-height: 1.45;
}

.page-malaysia .malaysia-listing-meta__disclosure-text {
  display: inline;
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
}

.page-malaysia .malaysia-listing-meta__disclosure-sep {
  font-size: 0.6875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
}

.page-malaysia .malaysia-listing-meta__disclosure-link {
  display: inline;
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.45;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
}

.page-malaysia .malaysia-listing-meta__disclosure-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.page-malaysia .malaysia-listing-meta__trust {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  flex-wrap: nowrap;
  gap: clamp(0.85rem, 1.8vw, 1.35rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-malaysia .malaysia-listing-meta__badge {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.5rem;
  padding: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
  white-space: nowrap;
}

.page-malaysia .malaysia-listing-meta__badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 0.4rem;
  background: rgba(71, 85, 105, 0.72);
  transform: rotate(45deg);
}

.page-malaysia .malaysia-listing-meta__badge-icon :is(i, svg) {
  width: 0.9rem;
  height: 0.9rem;
  transform: rotate(-45deg);
  color: #f5c542;
  fill: none;
  stroke: #f5c542;
  stroke-width: 2.1px;
}

.page-malaysia .malaysia-listing-meta a.malaysia-listing-meta__disclosure-link {
  color: #ffffff;
  text-decoration: none;
}

.page-malaysia .malaysia-section h2,
.page-malaysia .casinos-seo h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-bottom: 1rem;
}

.page-malaysia .malaysia-section h3,
.page-malaysia .casinos-seo h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.75rem;
}

.page-malaysia #malaysia-jackpots-h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 1.75rem 0 0.75rem;
  color: #020617;
}

.page-malaysia .home-disclosure {
  padding: 1rem 0;
  background: var(--bg-muted, #f8fafc);
  border-block: 1px solid var(--border-light);
}

.page-malaysia .home-disclosure>.container {
  padding-left: var(--malaysia-inline);
  padding-right: var(--malaysia-inline-end);
}

.page-malaysia .malaysia-quicknavi {
  margin-bottom: 0.5rem;
  padding: 0.75rem 0;
}

.page-malaysia .malaysia-quicknavi--after-list {
  margin-top: 0;
  margin-bottom: 0;
  padding: clamp(1.25rem, 3vw, 1.75rem) 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 45%, #ffffff 100%);
}

.page-malaysia .malaysia-quicknavi--cards .malaysia-quicknavi__list {
  gap: clamp(0.65rem, 1.5vw, 1.1rem);
  justify-content: center;
  align-items: flex-start;
  scroll-snap-type: x proximity;
  padding-block: 0.15rem;
}

.page-malaysia .malaysia-quicknavi--cards .malaysia-quicknavi__list>li {
  scroll-snap-align: start;
  flex-shrink: 0;
}

.page-malaysia .malaysia-quicknavi__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  min-width: 7.25rem;
  max-width: 8.25rem;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--text-main, #0f172a);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  transition: color 0.2s ease, transform 0.2s ease;
}

.page-malaysia .malaysia-quicknavi__card:hover,
.page-malaysia .malaysia-quicknavi__card:focus-visible {
  color: var(--primary, #1e3a5f);
  transform: translateY(-3px);
  outline: none;
}

.page-malaysia .malaysia-quicknavi__icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 4px 12px rgba(15, 23, 42, 0.06);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.page-malaysia .malaysia-quicknavi__card:hover .malaysia-quicknavi__icon-box,
.page-malaysia .malaysia-quicknavi__card:focus-visible .malaysia-quicknavi__icon-box {
  border-color: color-mix(in srgb, var(--primary) 30%, rgba(15, 23, 42, 0.08));
  background: color-mix(in srgb, var(--primary) 4%, #ffffff);
  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.06),
    0 8px 20px rgba(30, 58, 95, 0.12);
}

.page-malaysia .malaysia-quicknavi__icon-box :is(i, svg) {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary, #1e3a5f);
  stroke: var(--primary, #1e3a5f);
}

.page-malaysia .malaysia-quicknavi__label {
  display: block;
  max-width: 8.25rem;
  letter-spacing: -0.01em;
}

.page-malaysia .malaysia-quicknavi__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  background: var(--bg-card);
  color: var(--text-main);
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.page-malaysia .malaysia-quicknavi__link:hover,
.page-malaysia .malaysia-quicknavi__link:focus-visible {
  border-color: color-mix(in srgb, var(--primary) 45%, var(--border-light));
  color: var(--primary);
}

.page-malaysia .malaysia-quicknavi__emoji {
  font-size: 0.95rem;
  line-height: 1;
}

.page-malaysia .malaysia-quicknavi__list {
  display: flex;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
  justify-content: center;
  max-width: 1280px;
  margin: 0 auto;
}

.page-malaysia .malaysia-quicknavi__list::-webkit-scrollbar {
  display: none;
}

.page-malaysia .malaysia-operator-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 1.25rem;
}

.page-malaysia .malaysia-operator-row {
  position: relative;
  display: grid;
  grid-template-columns: 15.5rem minmax(0, 1fr) 17.5rem;
  align-items: stretch;
  min-height: 9rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  cursor: pointer;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.page-malaysia .malaysia-operator-row__overlay-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  text-decoration: none;
}

.page-malaysia .malaysia-operator-row__overlay-link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}

.page-malaysia .malaysia-operator-row__rank,
.page-malaysia .malaysia-operator-row__logo-wrap,
.page-malaysia .malaysia-operator-row__stats {
  position: relative;
  z-index: 0;
}

.page-malaysia .malaysia-operator-row:hover {
  border-color: color-mix(in srgb, var(--primary) 28%, var(--border));
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.page-malaysia .malaysia-operator-row--podium {
  border-width: 1.5px;
}

.page-malaysia .malaysia-operator-row--podium-1 {
  border-color: rgba(212, 175, 55, 0.45);
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.06) 0%, #fff 18%);
  box-shadow:
    var(--shadow-sm),
    inset 4px 0 0 #d4af37;
}

.page-malaysia .malaysia-operator-row--podium-1:hover {
  border-color: rgba(212, 175, 55, 0.62);
  box-shadow:
    var(--shadow-md),
    inset 4px 0 0 #d4af37;
}

.page-malaysia .malaysia-operator-row--podium-2 {
  border-color: rgba(148, 163, 184, 0.55);
  background: linear-gradient(90deg, rgba(148, 163, 184, 0.08) 0%, #fff 18%);
  box-shadow:
    var(--shadow-sm),
    inset 4px 0 0 #94a3b8;
}

.page-malaysia .malaysia-operator-row--podium-2:hover {
  border-color: rgba(100, 116, 139, 0.65);
  box-shadow:
    var(--shadow-md),
    inset 4px 0 0 #94a3b8;
}

.page-malaysia .malaysia-operator-row--podium-3 {
  border-color: rgba(180, 83, 9, 0.35);
  background: linear-gradient(90deg, rgba(180, 83, 9, 0.06) 0%, #fff 18%);
  box-shadow:
    var(--shadow-sm),
    inset 4px 0 0 #b45309;
}

.page-malaysia .malaysia-operator-row--podium-3:hover {
  border-color: rgba(180, 83, 9, 0.52);
  box-shadow:
    var(--shadow-md),
    inset 4px 0 0 #b45309;
}

.page-malaysia .malaysia-operator-row__rank {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  height: 1.75rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: var(--bg-body);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: var(--shadow-sm);
}

.page-malaysia .malaysia-operator-row--podium-1 .malaysia-operator-row__rank {
  background: linear-gradient(135deg, #b8892e 0%, #f5e6a8 48%, #d4af37 100%);
  border-color: rgba(255, 255, 255, 0.45);
  color: #1c1917;
}

.page-malaysia .malaysia-operator-row--podium-2 .malaysia-operator-row__rank {
  background: linear-gradient(135deg, #94a3b8 0%, #e2e8f0 50%, #cbd5e1 100%);
  border-color: rgba(255, 255, 255, 0.5);
  color: #1e293b;
}

.page-malaysia .malaysia-operator-row--podium-3 .malaysia-operator-row__rank {
  background: linear-gradient(135deg, #9a6b4a 0%, #e8c9a8 50%, #b8875a 100%);
  border-color: rgba(255, 255, 255, 0.4);
  color: #1c1917;
}

.page-malaysia .malaysia-operator-row__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 1.25rem 1.75rem 2.25rem;
  background: transparent;
}

.page-malaysia .malaysia-operator-row__logo,
.page-malaysia .malaysia-operator-row__logo-fallback {
  flex-shrink: 0;
}

.page-malaysia .malaysia-operator-row__logo {
  width: auto;
  max-width: 12rem;
  max-height: 6.5rem;
  height: auto;
  object-fit: contain;
  border: 0;
  background: transparent;
  filter: drop-shadow(0 1px 2px rgba(15, 23, 42, 0.06));
}

.page-malaysia .malaysia-operator-row__logo-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6.75rem;
  height: 6.75rem;
  border-radius: var(--radius-md);
  background: linear-gradient(165deg, #f8fafc 0%, #e2e8f0 100%);
  border: 1px solid var(--border);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-muted);
}

.page-malaysia .malaysia-operator-row__stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: 1.15rem 1.5rem;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.page-malaysia .malaysia-operator-row__rating,
.page-malaysia .malaysia-operator-row__bonus,
.page-malaysia .malaysia-operator-row__highlight {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex: 1 1 0;
  min-width: 0;
  padding: 0;
  background: transparent;
  border: none;
}

.page-malaysia .malaysia-operator-row__highlight {
  flex: 1.15 1 0;
  min-width: 250px;
}

.page-malaysia .malaysia-operator-row__highlight p {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0;
}

.page-malaysia .malaysia-operator-row__score {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-malaysia .malaysia-operator-row__score-value {
  display: flex;
  align-items: baseline;
  gap: 0.05rem;
  line-height: 1;
}

.page-malaysia .malaysia-operator-row__score-value strong {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.page-malaysia .malaysia-operator-row__score-denom {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-light);
}

.page-malaysia .malaysia-operator-row__field-label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
}

.page-malaysia .malaysia-operator-row__bonus-amount {
  display: block;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.page-malaysia .malaysia-operator-row__bonus-extra {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text-muted);
}

.page-malaysia .malaysia-operator-row__highlight-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: auto;
  max-width: 100%;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary) 10%, #fff);
  border: 1px solid color-mix(in srgb, var(--primary) 22%, var(--border));
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.3;
  color: #0f766e;
}

.page-malaysia .malaysia-operator-row__check {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: var(--primary);
}

.page-malaysia .malaysia-operator-row__cta {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 0.875rem;
  padding: 1.75rem 1.75rem;
  background: transparent;
}

.page-malaysia .btn-play-here {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.15rem;
  padding: 0.85rem 1.35rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary) 0%, #2aa197 100%);
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(51, 190, 179, 0.35);
  transition:
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.page-malaysia .btn-play-here:hover,
.page-malaysia .btn-play-here:focus-visible,
.page-malaysia .malaysia-operator-row:hover .btn-play-here,
.page-malaysia .malaysia-operator-row:focus-within .btn-play-here {
  background: linear-gradient(135deg, var(--primary-hover) 0%, #238b82 100%);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(51, 190, 179, 0.42);
}

.page-malaysia .malaysia-operator-row__visit-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.15s ease;
}

.page-malaysia .malaysia-operator-row__visit-link svg {
  width: 1rem;
  height: 1rem;
}

.page-malaysia .malaysia-operator-row__visit-link:hover,
.page-malaysia .malaysia-operator-row:hover .malaysia-operator-row__visit-link,
.page-malaysia .malaysia-operator-row:focus-within .malaysia-operator-row__visit-link {
  color: var(--text-muted);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .page-malaysia .malaysia-operator-row {
    grid-template-columns: 13.5rem minmax(0, 1fr) 15rem;
  }

  .page-malaysia .malaysia-operator-row__stats {
    gap: 1rem;
    padding: 1rem 1.15rem;
  }

  .page-malaysia .malaysia-operator-row__highlight {
    min-width: min(250px, 100%);
  }
}

.page-malaysia .malaysia-table-wrap {
  overflow-x: auto;
  margin-top: 1.25rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--bg-card);
}

.page-malaysia .malaysia-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.page-malaysia .malaysia-table th,
.page-malaysia .malaysia-table td {
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}

.page-malaysia .malaysia-table thead th {
  background: var(--bg-muted, #f1f5f9);
  font-weight: 600;
  white-space: nowrap;
}

.page-malaysia .malaysia-table tbody tr:last-child td {
  border-bottom: none;
}

.page-malaysia .malaysia-table__rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.page-malaysia .malaysia-table__logo,
.page-malaysia .malaysia-table__logo-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-right: 0.5rem;
  border-radius: var(--radius-sm);
  vertical-align: middle;
}

.page-malaysia .malaysia-table__logo {
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--border-light);
}

.page-malaysia .malaysia-table__logo-fallback {
  background: var(--bg-muted, #e2e8f0);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-muted, #475569);
}

.page-malaysia .malaysia-table__name {
  vertical-align: middle;
}

.page-malaysia .malaysia-table__row--podium {
  background: linear-gradient(90deg, rgba(51, 190, 179, 0.06), transparent);
}

.page-malaysia .malaysia-table__row--podium-1 .malaysia-table__rank {
  background: #d97706;
}

.page-malaysia .malaysia-table__row--podium-2 .malaysia-table__rank {
  background: #64748b;
}

.page-malaysia .malaysia-table__row--podium-3 .malaysia-table__rank {
  background: #b45309;
}

.page-malaysia .malaysia-picks-card {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  background: #eef2f7;
  border: 1px solid var(--border-light);
}

.page-malaysia .malaysia-picks-card h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0f172a;
  text-transform: capitalize;
}

.page-malaysia .malaysia-picks-intro {
  margin-bottom: 1.5rem;
}

.page-malaysia .malaysia-picks-intro p {
  margin: 0 0 0.85rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.page-malaysia .malaysia-picks-intro p:last-child {
  margin-bottom: 0;
}

.page-malaysia .malaysia-picks-intro a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.page-malaysia .malaysia-picks-intro a:hover {
  color: var(--primary-hover);
}

.page-malaysia .malaysia-picks-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-malaysia .malaysia-picks-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  min-width: 0;
}

.page-malaysia .malaysia-picks-item__icon {
  flex-shrink: 0;
  width: 1.25rem;
  font-size: 1rem;
  line-height: 1.45;
  text-align: center;
}

.page-malaysia .malaysia-picks-item__line {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.page-malaysia .malaysia-picks-item__label {
  font-style: italic;
  font-weight: 500;
  color: var(--text-muted);
}

.page-malaysia .malaysia-picks-item__value,
.page-malaysia .malaysia-picks-item__link {
  font-style: normal;
  font-weight: 700;
  color: var(--primary);
}

.page-malaysia .malaysia-picks-item__link {
  text-decoration: none;
}

.page-malaysia .malaysia-picks-item__link:hover {
  text-decoration: underline;
}

.page-malaysia .malaysia-summary-table,
.page-malaysia .malaysia-featured-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
}

.page-malaysia .malaysia-summary-table th,
.page-malaysia .malaysia-summary-table td,
.page-malaysia .malaysia-featured-table th,
.page-malaysia .malaysia-featured-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-light);
  text-align: left;
  vertical-align: top;
}

.page-malaysia .malaysia-summary-table th,
.page-malaysia .malaysia-featured-table th {
  width: 42%;
  font-weight: 600;
  background: var(--bg-muted, #f8fafc);
}

.page-malaysia .malaysia-summary-table tr:last-child th,
.page-malaysia .malaysia-summary-table tr:last-child td,
.page-malaysia .malaysia-featured-table tr:last-child th,
.page-malaysia .malaysia-featured-table tr:last-child td {
  border-bottom: none;
}

.page-malaysia .malaysia-checklist {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-malaysia .malaysia-licensing {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: #eef2f7;
  border-top: 1px solid var(--border-light);
}

.page-malaysia .malaysia-licensing__intro {
  max-width: none;
}

.page-malaysia .malaysia-licensing__intro h2 {
  margin: 0 0 1.15rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0f172a;
  text-transform: capitalize;
}

.page-malaysia .malaysia-licensing__intro p {
  margin: 0 0 0.85rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.page-malaysia .malaysia-licensing__intro p:last-child {
  margin-bottom: 0;
}

.page-malaysia .malaysia-licensing__intro strong {
  color: #0f172a;
  font-weight: 700;
}

.page-malaysia .malaysia-licensing__panel {
  position: relative;
  margin-top: clamp(1.75rem, 3vw, 2.25rem);
  padding: clamp(1.75rem, 3vw, 2.25rem) clamp(1.75rem, 3vw, 2.5rem) clamp(1.5rem, 2.5vw, 2rem);
  border-radius: clamp(1rem, 2vw, 1.35rem);
  background: #2c3e50;
  border-bottom: 2px solid #d4af37;
  box-shadow: 0 14px 36px rgba(44, 62, 80, 0.2);
  overflow: hidden;
}

.page-malaysia .malaysia-licensing__panel::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: min(42%, 22rem);
  height: 100%;
  background: radial-gradient(ellipse at top left, color-mix(in srgb, var(--primary) 18%, transparent) 0%, transparent 68%);
  pointer-events: none;
}

.page-malaysia .malaysia-licensing__panel-head {
  position: relative;
  z-index: 2;
}

.page-malaysia .malaysia-licensing__panel-title {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-transform: capitalize;
}

.page-malaysia .malaysia-licensing__panel-kicker {
  margin: 0.4rem 0 0;
  font-size: clamp(0.9375rem, 1.6vw, 1.125rem);
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
  text-transform: capitalize;
}

.page-malaysia .malaysia-licensing__panel-highlight {
  color: #fbbf24;
  font-weight: 800;
}

.page-malaysia .malaysia-licensing__wave {
  position: relative;
  z-index: 1;
  height: 2.25rem;
  margin: 0.85rem -0.25rem 0.15rem;
  color: #d4af37;
  opacity: 0.5;
  pointer-events: none;
}

.page-malaysia .malaysia-licensing__wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.page-malaysia .malaysia-licensing__cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.15rem);
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}

.page-malaysia .malaysia-licensing-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  padding: clamp(1.15rem, 2vw, 1.4rem);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.12);
}

.page-malaysia .malaysia-licensing-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.625rem;
  height: 2.625rem;
  margin-bottom: 0.9rem;
  border-radius: 10px;
  background: color-mix(in srgb, var(--primary) 16%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--primary) 28%, transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.page-malaysia .malaysia-licensing-card__icon :is(i, svg) {
  width: 1.25rem;
  height: 1.25rem;
  color: #d4af37;
  stroke: #c9920a;
  stroke-width: 2px;
}

.page-malaysia .malaysia-licensing-card__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #475569;
}

.page-malaysia .malaysia-game-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.page-malaysia .malaysia-game-list li {
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  background: var(--bg-muted, #f1f5f9);
  font-size: 0.875rem;
  font-weight: 500;
}

.page-malaysia .malaysia-game-selection {
  margin: 1.25rem 0 1.5rem;
  padding: clamp(1rem, 2.5vw, 1.35rem);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
}

.page-malaysia .malaysia-game-selection__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.page-malaysia .malaysia-game-selection__deco {
  flex: 1;
  height: 1.5rem;
  min-width: 0;
}

.page-malaysia .malaysia-game-selection__count {
  flex-shrink: 0;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary) 12%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--primary) 28%, transparent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--primary) 85%, #0f172a);
}

.page-malaysia .malaysia-game-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.65rem, 1.5vw, 0.85rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-malaysia .malaysia-game-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: clamp(0.85rem, 2vw, 1rem) 0.5rem;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.page-malaysia .malaysia-game-chip:hover {
  border-color: color-mix(in srgb, var(--primary) 45%, transparent);
  box-shadow: 0 6px 16px rgba(51, 190, 179, 0.14);
  transform: translateY(-2px);
}

.page-malaysia .malaysia-game-chip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: color-mix(in srgb, var(--primary) 14%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--primary) 24%, transparent);
  color: var(--primary);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.page-malaysia .malaysia-game-chip__icon :is(i, svg) {
  width: 1.2rem;
  height: 1.2rem;
  stroke-width: 2px;
}

.page-malaysia .malaysia-game-chip__icon svg.lucide-spade,
.page-malaysia .malaysia-game-chip__icon svg.lucide-club,
.page-malaysia .malaysia-game-chip__icon svg.lucide-heart,
.page-malaysia .malaysia-game-chip__icon svg.lucide-diamond {
  fill: currentColor;
}

.page-malaysia .malaysia-game-chip__label {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.25;
  color: #334155;
}

@media (min-width: 640px) {
  .page-malaysia .malaysia-game-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .page-malaysia .malaysia-game-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .page-malaysia .malaysia-game-chip__label {
    font-size: 0.75rem;
  }
}

.page-malaysia .malaysia-featured-slots {
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(4, minmax(0, 1fr));
  gap: clamp(0.65rem, 1.5vw, 0.85rem);
  margin: 1.25rem 0 1.5rem;
  padding: clamp(1rem, 2.5vw, 1.35rem);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
}

.page-malaysia .malaysia-featured-slots[data-count="1"] {
  grid-template-columns: minmax(0, 1fr);
  max-width: 20rem;
}

.page-malaysia .malaysia-featured-slots[data-count="2"] {
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
}

.page-malaysia .malaysia-featured-slots[data-count="3"] {
  grid-template-columns: minmax(0, 2fr) repeat(2, minmax(0, 1fr));
}

.page-malaysia .malaysia-featured-slots[data-count="4"] {
  grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
}

.page-malaysia a.malaysia-featured-slot {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: clamp(10.5rem, 18vw, 13.5rem);
  padding: clamp(0.85rem, 2vw, 1.15rem) clamp(0.65rem, 1.5vw, 0.85rem) clamp(0.75rem, 1.5vw, 1rem);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.page-malaysia a.malaysia-featured-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 85% 65% at 50% 115%,
      color-mix(in srgb, var(--primary) 12%, transparent) 0%,
      transparent 68%);
  pointer-events: none;
  border-radius: inherit;
}

.page-malaysia a.malaysia-featured-slot:hover {
  border-color: color-mix(in srgb, var(--primary) 35%, transparent);
  box-shadow: 0 6px 16px rgba(51, 190, 179, 0.12);
  transform: translateY(-2px);
  color: inherit;
  text-decoration: none;
}

.page-malaysia a.malaysia-featured-slot:hover .malaysia-featured-slot__cta {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(51, 190, 179, 0.3);
}

.page-malaysia a.malaysia-featured-slot:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.page-malaysia a.malaysia-featured-slot--featured {
  border-color: color-mix(in srgb, var(--primary) 42%, transparent);
  background: linear-gradient(135deg,
      color-mix(in srgb, var(--primary) 10%, #ffffff) 0%,
      #ffffff 55%,
      #f8fafc 100%);
  box-shadow: 0 6px 18px rgba(51, 190, 179, 0.14);
}

.page-malaysia a.malaysia-featured-slot--featured::before {
  background: radial-gradient(ellipse 90% 70% at 50% 115%,
      color-mix(in srgb, var(--primary) 20%, transparent) 0%,
      transparent 65%);
}

.page-malaysia a.malaysia-featured-slot--featured::after {
  content: "Featured";
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary) 14%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--primary) 30%, transparent);
  color: color-mix(in srgb, var(--primary) 85%, #0f172a);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}

.page-malaysia .malaysia-featured-slot__logo {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
  min-height: 0;
  padding: 0.25rem 0.35rem 0;
}

.page-malaysia .malaysia-featured-slot__logo img {
  display: block;
  max-width: 92%;
  max-height: clamp(2.75rem, 7vw, 4.25rem);
  width: auto;
  height: auto;
  object-fit: contain;
}

.page-malaysia a.malaysia-featured-slot--featured .malaysia-featured-slot__logo img {
  max-height: clamp(3.25rem, 8vw, 5rem);
}

.page-malaysia a.malaysia-featured-slot .malaysia-featured-slot__cta {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  padding-inline: 0.65rem;
  font-size: clamp(0.625rem, 1.1vw, 0.75rem);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
}

.page-malaysia a.malaysia-featured-slot .malaysia-featured-slot__cta.btn-primary {
  box-shadow: 0 4px 10px rgba(51, 190, 179, 0.22);
}

@media (max-width: 900px) {
  .page-malaysia .malaysia-featured-slots {
    display: flex;
    gap: 0.65rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.25rem;
  }

  .page-malaysia .malaysia-featured-slots::-webkit-scrollbar {
    display: none;
  }

  .page-malaysia a.malaysia-featured-slot {
    flex: 0 0 clamp(7.5rem, 28vw, 9.5rem);
    scroll-snap-align: start;
  }

  .page-malaysia a.malaysia-featured-slot--featured {
    flex: 0 0 clamp(10rem, 38vw, 13rem);
  }
}

.page-malaysia .malaysia-jackpots {
  margin: 1.25rem 0 1.5rem;
  padding: clamp(1rem, 2.5vw, 1.35rem);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
}

.page-malaysia .malaysia-jackpots__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.page-malaysia .malaysia-jackpots__deco {
  flex: 1;
  height: 1.5rem;
  min-width: 0;
}

.page-malaysia .malaysia-jackpots__count {
  flex-shrink: 0;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary) 12%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--primary) 28%, transparent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--primary) 85%, #0f172a);
}

.page-malaysia .malaysia-jackpot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.65rem, 1.5vw, 0.85rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-malaysia .malaysia-jackpot-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 0.75rem;
  row-gap: 0.2rem;
  padding: clamp(0.85rem, 2vw, 1rem);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.page-malaysia .malaysia-jackpot-card:hover {
  border-color: color-mix(in srgb, var(--primary) 35%, transparent);
  box-shadow: 0 6px 16px rgba(51, 190, 179, 0.12);
  transform: translateY(-2px);
}

.page-malaysia .malaysia-jackpot-card--lead {
  grid-column: 1 / -1;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto;
  align-items: center;
  padding: clamp(1rem, 2.5vw, 1.25rem);
  border-color: color-mix(in srgb, var(--primary) 38%, transparent);
  background: linear-gradient(135deg,
      color-mix(in srgb, var(--primary) 10%, #ffffff) 0%,
      #ffffff 50%,
      #f8fafc 100%);
  box-shadow: 0 6px 18px rgba(51, 190, 179, 0.12);
}

.page-malaysia .malaysia-jackpot-card--lead .malaysia-jackpot-card__name {
  font-size: clamp(1rem, 2vw, 1.125rem);
}

.page-malaysia .malaysia-jackpot-card--lead .malaysia-jackpot-card__amount {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  grid-column: 3;
  grid-row: 1;
  text-align: right;
}

.page-malaysia .malaysia-jackpot-card--lead .malaysia-jackpot-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  background: color-mix(in srgb, #fbbf24 18%, #ffffff);
  border-color: color-mix(in srgb, #fbbf24 35%, transparent);
  color: #c9920a;
}

.page-malaysia .malaysia-jackpot-card--lead .malaysia-jackpot-card__icon :is(i, svg) {
  stroke: #c9920a;
}

.page-malaysia .malaysia-jackpot-card__icon {
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: color-mix(in srgb, var(--primary) 14%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--primary) 24%, transparent);
  color: var(--primary);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.page-malaysia .malaysia-jackpot-card__icon :is(i, svg) {
  width: 1.1rem;
  height: 1.1rem;
  stroke-width: 2px;
}

.page-malaysia .malaysia-jackpot-card--lead .malaysia-jackpot-card__icon {
  grid-row: 1;
}

.page-malaysia .malaysia-jackpot-card--lead .malaysia-jackpot-card__name {
  grid-column: 2;
  grid-row: 1;
}

.page-malaysia .malaysia-jackpot-card__name {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-main);
}

.page-malaysia .malaysia-jackpot-card__amount {
  font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
  font-weight: 700;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
  color: var(--primary);
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .page-malaysia .malaysia-jackpot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-malaysia .malaysia-jackpot-card--lead {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .page-malaysia .malaysia-jackpot-card--lead .malaysia-jackpot-card__amount {
    grid-column: 2;
    grid-row: 2;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .page-malaysia .malaysia-jackpot-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.page-malaysia .malaysia-payout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.875rem, 2vw, 1.25rem);
  margin: 1.5rem 0 1.75rem;
  padding: 0;
  list-style: none;
}

.page-malaysia .malaysia-payout-grid>li {
  list-style: none;
}

.page-malaysia .malaysia-payout-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  height: 100%;
  min-height: 6.75rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 1rem;
  background: linear-gradient(180deg, #fff 0%, #f8fcfd 100%);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 4px 14px rgba(15, 23, 42, 0.04);
}

.page-malaysia .malaysia-payout-card__category {
  display: block;
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted, #64748b);
}

.page-malaysia .malaysia-payout-card__casino {
  display: block;
  flex: 1;
  margin: 0;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  font-weight: 700;
  line-height: 1.35;
  color: #1e3a5f;
}

.page-malaysia .malaysia-payout-card__rtp {
  display: block;
  margin-top: auto;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 800;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  color: var(--primary, #33beb3);
}

@media (max-width: 640px) {
  .page-malaysia .malaysia-payout-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.page-malaysia .malaysia-payments {
  margin: 1.25rem 0 0;
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 8px 24px rgba(15, 23, 42, 0.06);
}

.page-malaysia .malaysia-payments__hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  padding: clamp(1rem, 2.5vw, 1.35rem) clamp(1rem, 2.5vw, 1.5rem);
  border-bottom: 1px solid color-mix(in srgb, var(--primary) 18%, var(--border-light));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--primary) 10%, #ffffff) 0%, #ffffff 58%),
    linear-gradient(180deg, #f8fcfd 0%, #ffffff 100%);
}

.page-malaysia .malaysia-payments__hero-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.page-malaysia .malaysia-payments__hero-logo {
  flex: 0 0 auto;
  display: block;
  width: auto;
  height: 2.25rem;
  max-width: 7.5rem;
  object-fit: contain;
  padding: 0.45rem 0.65rem;
  border-radius: 0.65rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}

.page-malaysia .malaysia-payments__hero-copy {
  min-width: 0;
}

.page-malaysia .malaysia-payments__hero-kicker {
  margin: 0 0 0.2rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}

.page-malaysia .malaysia-payments__hero-text {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text-main);
}

.page-malaysia .malaysia-payments__hero-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex: 0 0 auto;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--primary) 28%, transparent);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.page-malaysia .malaysia-payments__hero-link:hover {
  background: color-mix(in srgb, var(--primary) 8%, #ffffff);
  border-color: color-mix(in srgb, var(--primary) 42%, transparent);
  transform: translateY(-1px);
}

.page-malaysia .malaysia-payments__hero-link :is(i, svg) {
  width: 0.95rem;
  height: 0.95rem;
}

.page-malaysia .malaysia-payments__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
}

.page-malaysia .malaysia-payments__section {
  padding: clamp(1rem, 2.5vw, 1.35rem) clamp(1rem, 2.5vw, 1.5rem);
}

.page-malaysia .malaysia-payments__section--benefits {
  border-right: 1px solid var(--border-light);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.page-malaysia .malaysia-payments__section--methods {
  background: #ffffff;
}

.page-malaysia .malaysia-payments__heading {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-light);
}

.page-malaysia .malaysia-payments__heading::before {
  content: "";
  flex: 0 0 auto;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 18%, transparent);
}

.page-malaysia .malaysia-payments-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-malaysia .malaysia-payments-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.page-malaysia .malaysia-payments-benefit:hover {
  border-color: color-mix(in srgb, var(--primary) 24%, var(--border-light));
  box-shadow: 0 4px 14px rgba(51, 190, 179, 0.08);
  transform: translateY(-1px);
}

.page-malaysia .malaysia-payments-benefit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  background: color-mix(in srgb, var(--primary) 14%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--primary) 24%, transparent);
  color: var(--primary);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.page-malaysia .malaysia-payments-benefit__icon :is(i, svg) {
  width: 1.125rem;
  height: 1.125rem;
}

.page-malaysia .malaysia-payments-benefit__text {
  margin: 0.15rem 0 0;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-main);
}

.page-malaysia .malaysia-payments-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-malaysia .malaysia-payments-logos__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.55rem 0.65rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.page-malaysia .malaysia-payments-logos__item:hover {
  border-color: rgba(51, 190, 179, 0.28);
  box-shadow: 0 4px 12px rgba(51, 190, 179, 0.1);
  transform: translateY(-1px);
}

.page-malaysia .malaysia-payments-logos__item img {
  display: block;
  width: auto;
  height: 1.55rem;
  max-width: 100%;
  object-fit: contain;
}

.page-malaysia .malaysia-payments-logos__item--text span {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
  text-align: center;
}

@media (max-width: 960px) {
  .page-malaysia .malaysia-payments__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-malaysia .malaysia-payments__section--benefits {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }
}

@media (max-width: 768px) {
  .page-malaysia .malaysia-payments__hero {
    flex-direction: column;
    align-items: stretch;
  }

  .page-malaysia .malaysia-payments__hero-link {
    align-self: flex-start;
  }

  .page-malaysia .malaysia-payments-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .page-malaysia .malaysia-payments__hero-brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-malaysia .malaysia-payments-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.page-malaysia .malaysia-legal {
  margin: 1.25rem 0 0;
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
}

.page-malaysia .malaysia-legal-facts {
  margin: 0;
  padding: 0.35rem clamp(1.1rem, 2.5vw, 1.6rem);
}

.page-malaysia .malaysia-legal-fact {
  display: grid;
  grid-template-columns: 2.35rem 11.75rem minmax(0, 1fr);
  gap: 0.85rem 1.35rem;
  align-items: center;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--border-light);
}

.page-malaysia .malaysia-legal-fact:last-of-type {
  border-bottom: none;
}

.page-malaysia .malaysia-legal-fact__label {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.page-malaysia .malaysia-legal-fact__icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  background: color-mix(in srgb, var(--primary) 18%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--primary) 32%, transparent);
  color: color-mix(in srgb, var(--primary) 88%, #0f172a);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.page-malaysia .malaysia-legal-fact__icon :is(i, svg) {
  width: 1.05rem;
  height: 1.05rem;
}

.page-malaysia .malaysia-legal-fact__value {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-main);
}

.page-malaysia .malaysia-legal__note {
  margin: 0;
  padding: 1.15rem clamp(1.1rem, 2.5vw, 1.6rem);
  border-top: 1px solid color-mix(in srgb, var(--primary) 18%, var(--border-light));
  background: linear-gradient(180deg,
      color-mix(in srgb, var(--primary) 11%, #ffffff) 0%,
      color-mix(in srgb, var(--primary) 6%, #f8fafc) 100%);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-main);
}

@media (max-width: 768px) {
  .page-malaysia .malaysia-legal-fact {
    grid-template-columns: 2.35rem minmax(0, 1fr);
    grid-template-areas:
      'icon label'
      '. value';
    gap: 0.45rem 0.85rem;
    align-items: start;
    padding: 1rem 0;
  }

  .page-malaysia .malaysia-legal-fact__icon {
    grid-area: icon;
  }

  .page-malaysia .malaysia-legal-fact__label {
    grid-area: label;
    align-self: center;
  }

  .page-malaysia .malaysia-legal-fact__value {
    grid-area: value;
    padding-left: calc(2.35rem + 0.85rem);
  }
}

.page-malaysia .malaysia-official-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.page-malaysia .malaysia-official-list__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  color: var(--text-main);
}

.page-malaysia .malaysia-official-list__link {
  color: inherit;
  text-decoration: none;
}

.page-malaysia .malaysia-official-list__link:hover {
  color: var(--primary);
}

@media (max-width: 640px) {
  .page-malaysia .malaysia-official-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.page-malaysia .malaysia-provider-tags {
  font-weight: 500;
  line-height: 1.7;
}

.page-malaysia .malaysia-qr {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.25rem;
  padding: 1.25rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--bg-card);
}

.page-malaysia .malaysia-qr img {
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.page-malaysia .malaysia-qr__label {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.page-malaysia .malaysia-conclusion-cta {
  padding: var(--section-gap) 0;
}

.page-malaysia .malaysia-conclusion-cta h2 {
  font-family: var(--font-sans, 'Poppins', sans-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-transform: none;
  margin-bottom: 1rem;
  color: #020617;
}

.page-malaysia .malaysia-conclusion-card {
  margin-top: 1.25rem;
}

.page-malaysia .malaysia-conclusion-card__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: stretch;
  padding: clamp(1.15rem, 2.5vw, 1.5rem);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

.page-malaysia .malaysia-conclusion-card__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  text-align: center;
}

.page-malaysia .malaysia-conclusion-card__rating-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.85rem 1rem 0.75rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #fffbeb 0%, #fef9c3 38%, #ffffff 100%);
  border: 1px solid rgba(251, 191, 36, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.page-malaysia .malaysia-conclusion-card__rating {
  margin: 0;
  line-height: 1;
}

.page-malaysia .malaysia-conclusion-card__score-value {
  display: inline-flex;
  align-items: baseline;
  gap: 0.06rem;
}

.page-malaysia .malaysia-conclusion-card__score-value strong {
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.page-malaysia .malaysia-conclusion-card__score-denom {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 600;
  color: var(--text-light);
}

.page-malaysia .malaysia-conclusion-card__stars {
  line-height: 1;
}

.page-malaysia .malaysia-conclusion-card__stars .stars-meter--units {
  display: inline-flex;
  justify-content: center;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  gap: 0.2em;
  filter: drop-shadow(0 1px 1px rgba(251, 191, 36, 0.35));
}

.page-malaysia .malaysia-conclusion-card__stars:not(:has(.stars-meter)) {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  letter-spacing: 0.1em;
  color: #f97316;
}

.page-malaysia .malaysia-conclusion-card__stars .star-unit__fill {
  color: #f97316;
}

.page-malaysia .malaysia-conclusion-card__stars .star-unit__track {
  color: #fbbf24;
}

.page-malaysia .malaysia-conclusion-card__logo {
  width: auto;
  max-width: 100%;
  max-height: 4.5rem;
  object-fit: contain;
}

.page-malaysia .malaysia-conclusion-card__logo-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 12px;
  background: #f1f5f9;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
}

.page-malaysia .malaysia-conclusion-card__panel {
  padding: 1.15rem 1.2rem;
  border-radius: 12px;
  background: #f8f9fb;
}

.page-malaysia .malaysia-conclusion-card__panel-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.page-malaysia .malaysia-conclusion-card__certs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  width: 100%;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-light);
}

.page-malaysia .malaysia-conclusion-card__features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
}

.page-malaysia .malaysia-conclusion-card__feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-muted, #64748b);
}

.page-malaysia .malaysia-conclusion-card__feature :is(i, svg) {
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0;
  color: #cbd5e1;
}

.page-malaysia .malaysia-conclusion-card__feature--lead {
  font-weight: 700;
  color: var(--text-main);
}

.page-malaysia .malaysia-conclusion-card__feature--lead :is(i, svg) {
  color: #f97316;
}

.page-malaysia .malaysia-conclusion-card__certs img {
  height: 32px;
  width: auto;
  max-width: 88px;
  object-fit: contain;
}

.page-malaysia .malaysia-conclusion-card__offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  text-align: center;
}

.page-malaysia .malaysia-conclusion-card__bonus {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  width: 100%;
}

.page-malaysia .malaysia-conclusion-card__bonus-intro {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-light, #64748b);
}

.page-malaysia .malaysia-conclusion-card__amount {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-main);
}

.page-malaysia .malaysia-conclusion-card__bonus-extra {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-secondary, #475569);
}

.page-malaysia .malaysia-conclusion-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 14rem;
  margin-top: 0;
}

.page-malaysia .malaysia-conclusion-card__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.page-malaysia .malaysia-conclusion-card__cta-icon :is(i, svg) {
  width: 1.35rem;
  height: 1.35rem;
}

@media (max-width: 900px) {
  .page-malaysia .malaysia-conclusion-card__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-malaysia .malaysia-conclusion-card__panel-grid {
    gap: 0.85rem;
  }

  .page-malaysia .malaysia-conclusion-card__certs {
    padding-top: 0.75rem;
  }

  .page-malaysia .malaysia-conclusion-card__offer {
    padding-top: 0.25rem;
  }
}

.page-malaysia .malaysia-conclusion-table {
  width: 100%;
  margin: 1.25rem 0;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  border-collapse: collapse;
  background: var(--bg-card);
  overflow: hidden;
}

.page-malaysia .malaysia-conclusion-table th,
.page-malaysia .malaysia-conclusion-table td {
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
  vertical-align: top;
}

.page-malaysia .malaysia-conclusion-table th {
  width: 38%;
  background: var(--bg-muted, #f1f5f9);
  font-weight: 600;
}

.page-malaysia .malaysia-conclusion-table tr:last-child th,
.page-malaysia .malaysia-conclusion-table tr:last-child td {
  border-bottom: none;
}

.page-malaysia .malaysia-conclusion-cta__link {
  margin-top: 0.5rem;
}

.page-malaysia .malaysia-conclusion-cta__card {
  margin-top: 1.25rem;
  padding: 1.5rem;
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(51, 190, 179, 0.08), #fff);
}

.page-malaysia .malaysia-conclusion-cta__kicker {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.page-malaysia .malaysia-conclusion-cta__name {
  margin: 0 0 1rem;
  font-size: 1.5rem;
}

.page-malaysia .malaysia-conclusion-cta__meta {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
}

.page-malaysia .malaysia-conclusion-cta__meta dt {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted, #64748b);
}

.page-malaysia .malaysia-conclusion-cta__meta dd {
  margin: 0.15rem 0 0;
  font-weight: 500;
}

.page-malaysia .malaysia-trust__badge {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: var(--bg-card);
}

.page-malaysia .malaysia-faq.seo-accordion {
  background: transparent;
  padding: var(--section-gap) 0;
}

.page-malaysia .malaysia-faq .section-header {
  margin-bottom: 1.5rem;
}

.page-malaysia .malaysia-faq .section-header h2 {
  max-width: none;
  margin-inline: auto;
  line-height: 1.25;
  font-size: clamp(1.15rem, 2.2vw, 1.75rem);
  white-space: nowrap;
}

@media (max-width: 520px) {
  .page-malaysia .malaysia-faq .section-header h2 {
    white-space: normal;
    font-size: clamp(1.1rem, 4.5vw, 1.35rem);
  }
}

.page-malaysia .malaysia-faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.page-malaysia .malaysia-faq__accordion .accordion-item {
  border: 1px solid var(--border-light);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.page-malaysia .malaysia-faq__accordion .accordion-item:hover {
  border-color: color-mix(in srgb, var(--primary) 30%, var(--border-light));
  box-shadow: 0 4px 16px rgba(51, 190, 179, 0.1);
}

.page-malaysia .malaysia-faq__accordion .accordion-item.active {
  border-color: color-mix(in srgb, var(--primary) 55%, transparent);
  box-shadow: 0 6px 20px rgba(51, 190, 179, 0.14);
}

.page-malaysia .malaysia-faq__accordion .accordion-header {
  padding: 1rem 1.15rem;
  gap: 0.85rem;
  background: #ffffff;
}

.page-malaysia .malaysia-faq__accordion .accordion-title {
  font-size: 0.9875rem;
  line-height: 1.4;
}

.page-malaysia .malaysia-faq__accordion .accordion-icon-wrap {
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  min-height: 2rem;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  color: var(--primary);
}

.page-malaysia .malaysia-faq__accordion .accordion-header:hover .accordion-icon-wrap,
.page-malaysia .malaysia-faq__accordion .accordion-item.active .accordion-icon-wrap {
  background: #f8fafc;
  color: var(--primary);
  transform: none;
}

.page-malaysia .malaysia-faq__accordion .accordion-header:hover .accordion-icon-wrap {
  border-color: color-mix(in srgb, var(--primary) 35%, var(--border-light));
}

.page-malaysia .malaysia-faq__accordion .accordion-item.active .accordion-icon-wrap {
  border-color: color-mix(in srgb, var(--primary) 45%, var(--border-light));
}

.page-malaysia .malaysia-faq__accordion .accordion-inner p {
  padding: 0 1.15rem 1.15rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  background: #ffffff;
}

@media (max-width: 900px) {
  .page-malaysia .malaysia-faq__accordion .accordion-header {
    padding: 0.95rem 1rem;
  }

  .page-malaysia .malaysia-faq__accordion .accordion-inner p {
    padding: 0 1rem 1rem;
  }
}

.page-malaysia-sub .malaysia-faq.seo-accordion {
  border-top: 1px solid var(--border-light);
  padding: var(--section-gap-sm) 0 var(--section-gap);
}

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

.page-malaysia-sub .casinos-seo a:not(.btn):not(.btn-play-here):not(.bonus-playstyle__cta):not(.malaysia-operator-row__visit-link):not(.e-wallet-comparison-table__cta),
.page-malaysia .casinos-seo a:not(.btn):not(.btn-play-here):not(.bonus-playstyle__cta):not(.malaysia-operator-row__visit-link):not(.e-wallet-comparison-table__cta),
.page-malaysia .malaysia-section a:not(.btn):not(.btn-play-here):not(.bonus-playstyle__cta):not(.malaysia-operator-row__visit-link):not(.malaysia-listing-meta__disclosure-link):not(.malaysia-picks-item__link):not(.malaysia-picks-intro a):not(.e-wallet-comparison-table__cta):not(.reviews-spotlight-card__pill) {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 768px) {
  .page-malaysia .malaysia-quicknavi.container {
    padding-left: 0;
    padding-right: 0;
  }

  .page-malaysia .malaysia-quicknavi--after-list {
    padding-block: 1rem;
  }

  .page-malaysia .malaysia-quicknavi--cards .malaysia-quicknavi__list {
    justify-content: flex-start;
  }

  .page-malaysia .malaysia-quicknavi__card {
    min-width: 6.5rem;
    max-width: 7.25rem;
    font-size: 0.75rem;
  }

  .page-malaysia .malaysia-quicknavi__icon-box {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 14px;
  }

  .page-malaysia .malaysia-quicknavi__icon-box :is(i, svg) {
    width: 1.5rem;
    height: 1.5rem;
  }

  .page-malaysia .malaysia-quicknavi__list {
    justify-content: flex-start;
    padding-inline: var(--malaysia-inline);
  }

  .page-malaysia .malaysia-picks-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .page-malaysia .malaysia-picks-card {
    padding: 1.35rem 1.15rem;
  }

  .page-malaysia .malaysia-licensing {
    padding: 1.75rem 0;
  }

  .page-malaysia .malaysia-licensing__panel {
    padding: 1.35rem 1.15rem 1.25rem;
    border-radius: 1.15rem;
  }

  .page-malaysia .malaysia-licensing__wave {
    height: 1.75rem;
    margin-top: 0.65rem;
    opacity: 0.38;
  }

  .page-malaysia .malaysia-licensing__cards {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .page-malaysia .malaysia-listing-meta {
    border-radius: 0;
  }

  .page-malaysia .malaysia-listing-meta__inner {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    min-height: 0;
    padding-block: 1rem;
  }

  .page-malaysia .malaysia-listing-meta__updated {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    white-space: normal;
  }

  .page-malaysia .malaysia-listing-meta__disclosure {
    padding: 0;
    text-align: left;
  }

  .page-malaysia .malaysia-listing-meta__trust {
    justify-content: flex-start;
    justify-self: start;
    flex-wrap: wrap;
    gap: 0.85rem 1.1rem;
  }

  .page-malaysia .malaysia-operator-row {
    grid-template-columns: 1fr;
    grid-template-areas:
      'logo'
      'stats'
      'cta';
    min-height: 0;
  }

  .page-malaysia .malaysia-operator-row--podium-1,
  .page-malaysia .malaysia-operator-row--podium-2,
  .page-malaysia .malaysia-operator-row--podium-3 {
    box-shadow: var(--shadow-sm);
  }

  .page-malaysia .malaysia-operator-row__logo-wrap {
    grid-area: logo;
    padding: 2.5rem 1.25rem 1.25rem;
  }

  .page-malaysia .malaysia-operator-row__stats {
    grid-area: stats;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .page-malaysia .malaysia-operator-row__rating,
  .page-malaysia .malaysia-operator-row__bonus,
  .page-malaysia .malaysia-operator-row__highlight {
    flex: none;
    align-items: center;
    text-align: center;
  }

  .page-malaysia .malaysia-operator-row__highlight {
    min-width: 0;
    width: 100%;
  }

  .page-malaysia .malaysia-operator-row__highlight-tag {
    width: 100%;
    max-width: 100%;
    font-size: 0.8125rem;
    white-space: normal;
    text-align: center;
  }

  .page-malaysia .malaysia-operator-row__cta {
    grid-area: cta;
    padding: 1.5rem 1.75rem;
  }

  .page-malaysia .malaysia-table thead {
    display: none;
  }

  .page-malaysia .malaysia-table tr {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid var(--border-light);
  }

  .page-malaysia .malaysia-table td {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.35rem 0;
    border: none;
  }

  .page-malaysia .malaysia-table td::before {
    content: attr(data-label);
    font-weight: 600;
    flex-shrink: 0;
  }

  .page-malaysia .malaysia-qr {
    flex-direction: column;
    text-align: center;
  }

  .page-malaysia .malaysia-summary-table th,
  .page-malaysia .malaysia-featured-table th {
    width: auto;
    display: block;
  }

  .page-malaysia .malaysia-summary-table td,
  .page-malaysia .malaysia-featured-table td {
    display: block;
  }
}

/* ============================================================
   Live casino hub (.page-live-casino)
   ============================================================ */
.page-live-casino #live-casino-operators-outro,
.page-live-casino #mobile-operators-outro {
  margin-top: 2rem;
  margin-bottom: 0;
  line-height: 1.65;
  color: var(--text-secondary, #475569);
}

.page-live-casino #mobile-bonus-terms {
  margin-top: 2rem;
}

.page-live-casino .live-casino-criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.page-live-casino .live-casino-rating-section {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

.page-live-casino .live-casino-rating-section__header {
  margin-bottom: 2rem;
}

.page-live-casino .live-casino-rating-section__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(51, 190, 179, 0.1);
  border: 1px solid rgba(51, 190, 179, 0.22);
  color: var(--primary-hover, #2aa89f);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.page-live-casino .live-casino-rating-section__kicker svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary, #33beb3);
}

.page-live-casino .live-casino-rating-section #live-casino-rating-h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.2;
  color: var(--text-main, #0f172a);
}

.page-live-casino .live-casino-rating-section__intro {
  margin: 0;
  max-width: none;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-muted, #64748b);
}

.page-live-casino .live-casino-rating-section__outro {
  margin: 2.25rem 0 0;
  padding: 1.15rem 1.35rem;
  border-radius: var(--radius-md, 12px);
  background: linear-gradient(135deg, rgba(51, 190, 179, 0.08) 0%, rgba(51, 190, 179, 0.02) 100%);
  border: 1px solid rgba(51, 190, 179, 0.16);
  border-left: 4px solid var(--primary, #33beb3);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted, #64748b);
}

.page-live-casino .live-criteria-grid {
  gap: clamp(0.875rem, 2vw, 1.25rem);
  margin: 0;
  align-items: stretch;
}

.page-live-casino .live-criteria-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.35rem 1.25rem 1.4rem;
  background: linear-gradient(180deg, #fff 0%, #f8fcfd 100%);
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 1rem;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 4px 14px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.page-live-casino .live-criteria-card:hover {
  border-color: color-mix(in srgb, var(--primary, #33beb3) 35%, var(--border-light, #e2e8f0));
  box-shadow:
    0 6px 20px rgba(15, 23, 42, 0.08),
    0 2px 6px rgba(51, 190, 179, 0.12);
  transform: translateY(-2px);
}

.page-live-casino .live-criteria-card__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}

.page-live-casino .live-criteria-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(51, 190, 179, 0.16) 0%, rgba(51, 190, 179, 0.08) 100%);
  color: var(--primary, #33beb3);
  border: 1px solid rgba(51, 190, 179, 0.18);
  flex-shrink: 0;
}

.page-live-casino .live-criteria-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.page-live-casino .live-criteria-card .live-casino-criteria-card__title {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1e3a5f;
}

.page-live-casino .live-criteria-card .live-casino-criteria-card__body,
.page-live-casino .live-criteria-card .rich-text-body.live-casino-criteria-card__body {
  flex: 1;
  margin: 0;
  padding-top: 0.875rem;
  border-top: 1px solid rgba(51, 190, 179, 0.12);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary, #475569);
}

.page-live-casino .live-criteria-card .live-casino-criteria-card__body p,
.page-live-casino .live-criteria-card .rich-text-body.live-casino-criteria-card__body p {
  margin: 0;
}

.page-live-casino .live-criteria-card .live-casino-criteria-card__body p+p,
.page-live-casino .live-criteria-card .rich-text-body.live-casino-criteria-card__body p+p {
  margin-top: 0.65rem;
}

.page-live-casino .live-criteria-card .live-casino-criteria-card__body a,
.page-live-casino .live-criteria-card .rich-text-body.live-casino-criteria-card__body a {
  color: var(--primary, #33beb3);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.page-live-casino .live-casino-criteria-card {
  background: var(--surface-muted, #f8fafc);
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: var(--radius-md, 12px);
  padding: 1.25rem 1.35rem;
}

.page-live-casino .live-casino-criteria-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
  color: var(--text-primary, #0f172a);
}

.page-live-casino .live-casino-criteria-card__body {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-secondary, #475569);
}

.page-live-casino .live-casino-checklist {
  margin: 1.25rem 0;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.page-live-casino .live-casino-game-categories {
  display: flex;
  flex-direction: column;
  gap: clamp(0.875rem, 2vw, 1.15rem);
  margin-top: 1.5rem;
}

.page-live-casino .live-casino-game-category {
  padding: 1.25rem 1.2rem 1.3rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, #fff 0%, #f8fcfd 100%);
  border: 1px solid var(--border-light, #e2e8f0);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 4px 14px rgba(15, 23, 42, 0.04);
}

.page-live-casino .live-casino-game-category__head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.75rem;
}

.page-live-casino .live-casino-game-category__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(51, 190, 179, 0.16) 0%, rgba(51, 190, 179, 0.08) 100%);
  color: var(--primary, #33beb3);
  border: 1px solid rgba(51, 190, 179, 0.18);
  flex-shrink: 0;
}

.page-live-casino .live-casino-game-category__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.page-live-casino .live-casino-game-category h3 {
  flex: 1;
  min-width: 0;
  margin: 0;
  padding-top: 0.2rem;
  font-size: clamp(1rem, 1.6vw, 1.0625rem);
  font-weight: 700;
  line-height: 1.35;
  color: #1e3a5f;
}

.page-live-casino .live-casino-game-category__body,
.page-live-casino .live-casino-game-category .rich-text-body.live-casino-game-category__body {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted, #64748b);
}

.page-live-casino .live-casino-game-category__body p,
.page-live-casino .live-casino-game-category .rich-text-body.live-casino-game-category__body p {
  margin: 0 0 0.85rem;
}

.page-live-casino .live-casino-game-category__body p:last-child,
.page-live-casino .live-casino-game-category .rich-text-body.live-casino-game-category__body p:last-child {
  margin-bottom: 0;
}

.page-live-casino .live-casino-game-category__body a,
.page-live-casino .live-casino-game-category .rich-text-body.live-casino-game-category__body a {
  color: var(--primary, #33beb3);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-live-casino .live-casino-checklist li {
  line-height: 1.65;
}

.page-live-casino .live-casino-bonus-terms {
  margin-top: 1rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-muted, #64748b);
}

.page-live-casino .live-casino-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: var(--radius-md, 12px);
  background: var(--bg-card, #fff);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
}

.page-live-casino .live-casino-data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.page-live-casino .live-casino-data-table th,
.page-live-casino .live-casino-data-table td {
  padding: 1rem 1.125rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light, #e2e8f0);
  vertical-align: middle;
}

.page-live-casino .live-casino-data-table thead th {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
  white-space: nowrap;
  border-bottom: 2px solid var(--border-light, #e2e8f0);
}

.page-live-casino .live-casino-data-table tbody tr {
  transition: background-color 0.15s ease;
}

.page-live-casino .live-casino-data-table--payments tbody tr:nth-child(even) {
  background: rgba(248, 250, 252, 0.85);
}

.page-live-casino .live-casino-data-table tbody tr:hover {
  background: rgba(51, 190, 179, 0.07);
}

.page-live-casino .live-casino-data-table tbody tr:last-child td {
  border-bottom: none;
}

.page-live-casino .live-casino-data-table__method {
  display: block;
  font-weight: 600;
  color: var(--text-main, #0f172a);
  font-size: 0.9375rem;
}

.page-live-casino .live-casino-data-table__notes {
  display: block;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-secondary, #475569);
  max-width: 22rem;
}

.page-live-casino .live-casino-data-table__timing {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-main, #334155);
}

.page-live-casino .live-casino-data-table__timing--fast {
  color: #047857;
  font-weight: 600;
}

.page-live-casino .live-casino-data-table__timing--fast::before {
  content: '';
  display: inline-block;
  width: 0.4375rem;
  height: 0.4375rem;
  margin-right: 0.4rem;
  border-radius: 50%;
  background: #10b981;
  flex-shrink: 0;
}

.page-live-casino .live-casino-type-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  border: 1px solid transparent;
}

.page-live-casino .live-casino-type-badge--ewallet {
  color: #0f766e;
  background: rgba(51, 190, 179, 0.12);
  border-color: rgba(51, 190, 179, 0.25);
}

.page-live-casino .live-casino-type-badge--bank {
  color: #1d4ed8;
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.22);
}

.page-live-casino .live-casino-type-badge--card {
  color: #6d28d9;
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.22);
}

.page-live-casino .live-casino-type-badge--crypto {
  color: #b45309;
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.28);
}

.page-live-casino .live-casino-type-badge--default {
  color: #475569;
  background: #f1f5f9;
  border-color: #e2e8f0;
}

.page-live-casino .live-casino-data-table--payments th:nth-child(1),
.page-live-casino .live-casino-data-table--payments td:nth-child(1) {
  min-width: 9rem;
}

.page-live-casino .live-casino-data-table--payments th:nth-child(5),
.page-live-casino .live-casino-data-table--payments td:nth-child(5) {
  min-width: 16rem;
}

.page-live-casino #live-casino-blacklist-note {
  margin-top: 1rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-secondary, #475569);
}

.page-live-casino section.malaysia-section.container:has(#live-casino-bonus-h2),
.page-live-casino section.malaysia-section.container:has(#live-casino-legal-h2) {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

@media (max-width: 900px) {

  .page-live-casino .live-casino-criteria-grid,
  .page-live-casino .live-criteria-grid {
    grid-template-columns: 1fr;
  }

  .page-live-casino .live-criteria-card__head {
    align-items: flex-start;
  }

  .page-live-casino .live-casino-table-wrap {
    border-radius: var(--radius-md, 12px);
  }

  .page-live-casino .live-casino-data-table thead {
    display: none;
  }

  .page-live-casino .live-casino-data-table tbody tr {
    display: block;
    padding: 0.875rem 1rem;
    border-bottom: 1px solid var(--border-light, #e2e8f0);
  }

  .page-live-casino .live-casino-data-table tbody tr:last-child {
    border-bottom: none;
  }

  .page-live-casino .live-casino-data-table td {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.4rem 0;
    border: none;
  }

  .page-live-casino .live-casino-data-table td::before {
    content: attr(data-label);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748b;
    flex-shrink: 0;
    max-width: 42%;
  }

  .page-live-casino .live-casino-data-table__notes {
    max-width: none;
    text-align: right;
  }
}

/* Live casino bottom trio (conclusion bonus strip) */
.page-live-casino .live-casino-bottom-trio {
  margin-top: 1.5rem;
}

.page-live-casino .live-casino-bottom-trio__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1rem);
  align-items: stretch;
}

.page-live-casino .live-casino-bottom-trio__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-radius: 14px;
  padding: clamp(1.25rem, 2.5vw, 1.65rem) clamp(1rem, 2vw, 1.35rem);
  text-align: center;
  min-height: 100%;
}

.page-live-casino .live-casino-bottom-trio__head {
  margin: 0;
  line-height: 1.35;
  width: 100%;
}

.page-live-casino .live-casino-bottom-trio__head span {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
}

.page-live-casino .live-casino-bottom-trio__head strong {
  display: block;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  font-weight: 700;
}

.page-live-casino .live-casino-bottom-trio__card--featured {
  background: #1c1e2d;
  color: #ffffff;
  justify-content: center;
  gap: 1rem;
}

.page-live-casino .live-casino-bottom-trio__card--featured .live-casino-bottom-trio__featured-row {
  margin-top: 0;
}

.page-live-casino .live-casino-bottom-trio__card--featured .live-casino-bottom-trio__cta {
  margin-top: 0;
}

.page-live-casino .live-casino-bottom-trio__card--featured .live-casino-bottom-trio__head span,
.page-live-casino .live-casino-bottom-trio__card--featured .live-casino-bottom-trio__head strong {
  color: #ffffff;
}

.page-live-casino .live-casino-bottom-trio__featured-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  width: 100%;
  margin-top: 1.15rem;
}

.page-live-casino .live-casino-bottom-trio__logo-box,
.page-live-casino .live-casino-bottom-trio__rating-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 6.5rem;
  padding: 0.85rem 0.65rem;
  border-radius: 12px;
  background: #ffffff;
}

.page-live-casino .live-casino-bottom-trio__logo {
  display: block;
  max-width: 100%;
  max-height: 2.75rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.page-live-casino .live-casino-bottom-trio__logo-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 8px;
  background: #f1f5f9;
  color: #1c1e2d;
  font-size: 1.25rem;
  font-weight: 700;
}

.page-live-casino .live-casino-bottom-trio__rating-label {
  font-size: 0.6875rem;
  font-weight: 500;
  color: #64748b;
  line-height: 1.2;
}

.page-live-casino .live-casino-bottom-trio__stars {
  line-height: 1;
}

.page-live-casino .live-casino-bottom-trio__stars .stars-meter--units {
  --star-size: 0.85rem;
}

.page-live-casino .live-casino-bottom-trio__rating-score {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.page-live-casino .live-casino-bottom-trio__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 14rem;
  margin-top: 1.15rem;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary) 0%, #2aa197 100%);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(51, 190, 179, 0.35);
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.page-live-casino .live-casino-bottom-trio__cta:hover,
.page-live-casino .live-casino-bottom-trio__cta:focus-visible {
  background: linear-gradient(135deg, var(--primary-hover) 0%, #238b82 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(51, 190, 179, 0.42);
}

.page-live-casino .live-casino-bottom-trio__card--explore {
  background: #f4f6fb;
  color: #1c1e2d;
  justify-content: center;
  gap: 1rem;
}

.page-live-casino .live-casino-bottom-trio__card--explore .live-casino-bottom-trio__bullets {
  margin: 0;
}

.page-live-casino .live-casino-bottom-trio__card--explore .live-casino-bottom-trio__outline-btn {
  margin-top: 0;
}

.page-live-casino .live-casino-bottom-trio__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
  text-align: left;
  width: min(100%, 16rem);
}

.page-live-casino .live-casino-bottom-trio__bullets li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.55rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #64748b;
}

.page-live-casino .live-casino-bottom-trio__bullets li:last-child {
  margin-bottom: 0;
}

.page-live-casino .live-casino-bottom-trio__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f59e0b;
}

.page-live-casino .live-casino-bottom-trio__outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0.65rem 1.15rem;
  border: 1.5px solid #7dd3fc;
  border-radius: 999px;
  background: transparent;
  color: #1c1e2d;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.page-live-casino .live-casino-bottom-trio__outline-btn:hover,
.page-live-casino .live-casino-bottom-trio__outline-btn:focus-visible {
  border-color: #38bdf8;
  background: rgba(125, 211, 252, 0.12);
  color: #1c1e2d;
}

.page-live-casino .live-casino-bottom-trio__card--guides {
  background: #ffffff;
  border: 1.5px dashed #cbd5e1;
  color: #1c1e2d;
  overflow: visible;
  justify-content: center;
  gap: 0.75rem;
}

.page-live-casino .live-casino-bottom-trio__card--guides .live-casino-bottom-trio__head {
  margin-bottom: 0;
}

.page-live-casino .live-casino-bottom-trio__guides {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  width: 100%;
  margin-top: 0;
  padding-top: 1.65rem;
  overflow: visible;
}

.page-live-casino .live-casino-bottom-trio__guide {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 7.25rem;
  padding: 2.35rem 0.65rem 1.15rem;
  border-radius: 14px;
  background: #e9edf3;
  color: #1c1e2d;
  text-decoration: none;
  overflow: visible;
  transition: background 0.2s ease;
}

.page-live-casino .live-casino-bottom-trio__guide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #ffffff;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 1px #ffffff;
}

.page-live-casino .live-casino-bottom-trio__guide:hover,
.page-live-casino .live-casino-bottom-trio__guide:focus-visible {
  background: #dde3ec;
  color: #1c1e2d;
}

.page-live-casino .live-casino-bottom-trio__guide-icon {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.page-live-casino .live-casino-bottom-trio__guide-icon img {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.page-live-casino .live-casino-bottom-trio__guide-label {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  color: #1c1e2d;
}

@media (max-width: 960px) {
  .page-live-casino .live-casino-bottom-trio__grid {
    grid-template-columns: 1fr;
    max-width: 26rem;
    margin-inline: auto;
  }

  .page-live-casino .live-casino-bottom-trio__card--guides {
    max-width: none;
  }
}

@media (max-width: 520px) {
  .page-live-casino .live-casino-bottom-trio__grid {
    max-width: none;
  }

  .page-live-casino .live-casino-bottom-trio__outline-btn {
    font-size: 0.75rem;
    padding-inline: 0.85rem;
  }
}

/* ============================================================
   Reviews hub (.page-reviews-hub)
   ============================================================ */

.page-reviews-hub #reviews-operators-outro {
  padding-top: 2rem;
  margin-bottom: 0;
  line-height: 1.65;
  color: var(--text-secondary, #475569);
}

.page-reviews-hub .reviews-rating-section {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

.page-reviews-hub .reviews-rating-section__header {
  margin-bottom: 2.25rem;
}

.page-reviews-hub .reviews-rating-section__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(51, 190, 179, 0.1);
  border: 1px solid rgba(51, 190, 179, 0.22);
  color: var(--primary-hover);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.page-reviews-hub .reviews-rating-section__kicker svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.page-reviews-hub #reviews-rating-h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.2;
  color: var(--text-main);
}

.page-reviews-hub .reviews-rating-section__intro,
.page-reviews-hub .reviews-rating-section__outro,
.page-reviews-hub .reviews-rating-criteria__body,
.page-reviews-hub .reviews-spotlight-section__intro {
  max-width: none;
}

.page-reviews-hub .reviews-rating-section__intro {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.page-reviews-hub .reviews-rating-section__outro {
  margin: 2.25rem 0 0;
  padding: 1.15rem 1.35rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(51, 190, 179, 0.08) 0%, rgba(51, 190, 179, 0.02) 100%);
  border: 1px solid rgba(51, 190, 179, 0.16);
  border-left: 4px solid var(--primary);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.page-reviews-hub .reviews-rating-criteria {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.875rem, 2vw, 1.25rem);
  align-items: stretch;
}

.page-reviews-hub .reviews-rating-criteria__item {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  padding: 1.35rem 1.25rem 1.4rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, #fff 0%, #f8fcfd 100%);
  border: 1px solid var(--border-light, #e2e8f0);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 4px 14px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.page-reviews-hub .reviews-rating-criteria__item::after {
  content: attr(data-step);
  position: absolute;
  right: 0.85rem;
  bottom: -0.35rem;
  font-size: clamp(3rem, 5vw, 4.25rem);
  font-weight: 800;
  line-height: 1;
  color: rgba(51, 190, 179, 0.07);
  pointer-events: none;
  user-select: none;
}

.page-reviews-hub .reviews-rating-criteria__item:hover {
  border-color: color-mix(in srgb, var(--primary) 35%, var(--border-light));
  box-shadow:
    0 6px 20px rgba(15, 23, 42, 0.08),
    0 2px 6px rgba(51, 190, 179, 0.12);
  transform: translateY(-2px);
}

.page-reviews-hub .reviews-rating-criteria__item:hover .reviews-rating-criteria__icon {
  background: linear-gradient(135deg, rgba(51, 190, 179, 0.22) 0%, rgba(51, 190, 179, 0.12) 100%);
  border-color: rgba(51, 190, 179, 0.32);
}

.page-reviews-hub .reviews-rating-criteria__header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  border: none;
  position: relative;
  z-index: 1;
}

.page-reviews-hub .reviews-rating-criteria__icon-wrap {
  flex-shrink: 0;
}

.page-reviews-hub .reviews-rating-criteria__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(51, 190, 179, 0.16) 0%, rgba(51, 190, 179, 0.08) 100%);
  color: var(--primary);
  border: 1px solid rgba(51, 190, 179, 0.18);
  transition:
    background 0.22s ease,
    border-color 0.22s ease;
}

.page-reviews-hub .reviews-rating-criteria__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.page-reviews-hub .reviews-rating-criteria__title {
  flex: 1;
  min-width: 0;
  margin: 0;
  padding-top: 0.2rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1e3a5f;
  line-height: 1.35;
  text-align: left;
}

.page-reviews-hub .reviews-rating-criteria__body {
  flex: 1;
  width: 100%;
  max-width: none;
  margin: 0.875rem 0 0;
  padding: 0.875rem 0 0;
  border-top: 1px solid rgba(51, 190, 179, 0.12);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: left;
  position: relative;
  z-index: 1;
}

.page-reviews-hub .reviews-rating-criteria__body p {
  margin: 0 0 0.75rem;
  max-width: none;
}

.page-reviews-hub .reviews-rating-criteria__body.rich-text-body,
.page-reviews-hub .reviews-rating-criteria__body .rich-text-body {
  max-width: none;
  text-align: left;
}

.page-reviews-hub .reviews-rating-criteria__body p:last-child {
  margin-bottom: 0;
}

.page-reviews-hub .reviews-rating-criteria__body a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (min-width: 768px) {
  .page-reviews-hub .reviews-rating-criteria {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
  }
}

@media (min-width: 1100px) {
  .page-reviews-hub .reviews-rating-criteria {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {

  .page-reviews-hub .reviews-rating-criteria__item,
  .page-reviews-hub .reviews-rating-criteria__icon {
    transition: none;
  }

  .page-reviews-hub .reviews-rating-criteria__item:hover {
    transform: none;
  }
}

.page-reviews-hub .reviews-spotlight-section {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

.page-reviews-hub .reviews-spotlight-section__header {
  margin-bottom: 1.75rem;
}

.page-reviews-hub #reviews-spotlight-h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.2;
  color: var(--text-main);
}

.page-reviews-hub .reviews-spotlight-section__intro {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.page-reviews-hub .reviews-spotlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.875rem, 2vw, 1.15rem);
  margin: 0 0 1.25rem;
  align-items: stretch;
}

.page-reviews-hub .reviews-spotlight-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  padding: 1.25rem 1.2rem 1.3rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, #fff 0%, #f8fcfd 100%);
  border: 1px solid var(--border-light, #e2e8f0);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 4px 14px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.page-reviews-hub .reviews-spotlight-card:hover {
  border-color: color-mix(in srgb, var(--primary) 30%, var(--border-light));
  box-shadow:
    0 6px 20px rgba(15, 23, 42, 0.07),
    0 2px 6px rgba(51, 190, 179, 0.1);
  transform: translateY(-2px);
}

.page-reviews-hub .reviews-spotlight-card:hover .reviews-spotlight-card__icon {
  background: linear-gradient(135deg, rgba(51, 190, 179, 0.22) 0%, rgba(51, 190, 179, 0.12) 100%);
  border-color: rgba(51, 190, 179, 0.32);
}

.page-reviews-hub .reviews-spotlight-card--editor {
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1.35rem 1.2rem 1.3rem;
  background: #fff;
  border-color: rgba(51, 190, 179, 0.22);
}

.page-reviews-hub .reviews-spotlight-card--editor:hover {
  border-color: rgba(51, 190, 179, 0.35);
  box-shadow:
    0 6px 20px rgba(15, 23, 42, 0.07),
    0 2px 6px rgba(51, 190, 179, 0.1);
}

.page-reviews-hub .reviews-spotlight-card__editor-logo {
  display: block;
  width: auto;
  max-width: 7.5rem;
  max-height: 2.75rem;
  height: auto;
  object-fit: contain;
}

.page-reviews-hub .reviews-spotlight-card__editor-logo[hidden] {
  display: none;
}

.page-reviews-hub .reviews-spotlight-card__editor-badge {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-muted);
}

.page-reviews-hub .reviews-spotlight-card--license {
  background: linear-gradient(180deg, #f4fbfb 0%, #eef9f8 100%);
  border-color: rgba(51, 190, 179, 0.22);
}

.page-reviews-hub .reviews-spotlight-card__head {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.85rem;
}

.page-reviews-hub .reviews-spotlight-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(51, 190, 179, 0.16) 0%, rgba(51, 190, 179, 0.08) 100%);
  color: var(--primary);
  border: 1px solid rgba(51, 190, 179, 0.18);
  flex-shrink: 0;
  transition:
    background 0.22s ease,
    border-color 0.22s ease;
}

.page-reviews-hub .reviews-spotlight-card__icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.page-reviews-hub .reviews-spotlight-card__label {
  flex: 1;
  min-width: 0;
  margin: 0;
  padding-top: 0.15rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1e3a5f;
}

.page-reviews-hub .reviews-spotlight-card__text {
  flex: 1;
  margin: 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(51, 190, 179, 0.12);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.page-reviews-hub .reviews-spotlight-card--editor .reviews-spotlight-card__pill {
  margin-top: 0.15rem;
}

.page-reviews-hub .reviews-spotlight-card__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(51, 190, 179, 0.28);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.page-reviews-hub .reviews-spotlight-card__pill:hover,
.page-reviews-hub .reviews-spotlight-card__pill:focus-visible {
  transform: translateY(-1px);
  background: var(--primary-hover);
  box-shadow: 0 4px 14px rgba(51, 190, 179, 0.35);
  color: #ffffff;
  text-decoration: none;
}

.page-reviews-hub .reviews-spotlight-card__pill:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.page-reviews-hub .reviews-spotlight__note {
  margin: 0 0 1.75rem;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  background: #f8fafc;
  border: 1px solid #e8edf3;
  font-size: 0.8125rem;
  line-height: 1.55;
  font-style: italic;
  color: var(--text-light);
}

.page-reviews-hub .reviews-spotlight__proscons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.page-reviews-hub .reviews-spotlight__pros,
.page-reviews-hub .reviews-spotlight__cons {
  padding: 1.25rem 1.2rem;
  border-radius: 1rem;
  border: 1px solid var(--border-light, #e2e8f0);
  background: #fff;
}

.page-reviews-hub .reviews-spotlight__pros {
  border-left: 4px solid #22c55e;
  background: linear-gradient(180deg, #fff 0%, #f7fdf9 100%);
}

.page-reviews-hub .reviews-spotlight__cons {
  border-left: 4px solid #f59e0b;
  background: linear-gradient(180deg, #fff 0%, #fffbf5 100%);
}

.page-reviews-hub .reviews-spotlight__pros h3,
.page-reviews-hub .reviews-spotlight__cons h3 {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
}

.page-reviews-hub .reviews-spotlight__pros h3 svg {
  width: 1.125rem;
  height: 1.125rem;
  color: #22c55e;
}

.page-reviews-hub .reviews-spotlight__cons h3 svg {
  width: 1.125rem;
  height: 1.125rem;
  color: #f59e0b;
}

.page-reviews-hub .reviews-spotlight__pros ul,
.page-reviews-hub .reviews-spotlight__cons ul {
  margin: 0;
  padding-left: 1.35rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
  list-style: disc;
  list-style-position: outside;
}

.page-reviews-hub .reviews-spotlight__pros li::marker {
  color: #22c55e;
}

.page-reviews-hub .reviews-spotlight__cons li::marker {
  color: #f59e0b;
}

.page-reviews-hub .reviews-spotlight__pros li+li,
.page-reviews-hub .reviews-spotlight__cons li+li {
  margin-top: 0.55rem;
}

.page-reviews-hub .reviews-legal-section {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

.page-reviews-hub #reviews-legal-h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.2;
  color: var(--text-main);
}

.page-reviews-hub .reviews-legal-section__intro {
  margin: 0 0 1.75rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.page-reviews-hub .reviews-legal-summary {
  margin-bottom: 1.75rem;
}

.page-reviews-hub .reviews-legal-topics {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.875rem, 2vw, 1.15rem);
}

.page-reviews-hub .reviews-legal-topic {
  padding: 1.25rem 1.2rem 1.3rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, #fff 0%, #f8fcfd 100%);
  border: 1px solid var(--border-light, #e2e8f0);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 4px 14px rgba(15, 23, 42, 0.04);
}

.page-reviews-hub .reviews-legal-topic__head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.75rem;
}

.page-reviews-hub .reviews-legal-topic__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(51, 190, 179, 0.16) 0%, rgba(51, 190, 179, 0.08) 100%);
  color: var(--primary);
  border: 1px solid rgba(51, 190, 179, 0.18);
  flex-shrink: 0;
}

.page-reviews-hub .reviews-legal-topic__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.page-reviews-hub .reviews-legal-topic h3 {
  flex: 1;
  min-width: 0;
  margin: 0;
  padding-top: 0.2rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1e3a5f;
}

.page-reviews-hub .reviews-legal-topic p {
  margin: 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(51, 190, 179, 0.12);
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.page-reviews-hub #reviews-legal-body.reviews-legal-body-plain h3 {
  margin: 1.5rem 0 0.65rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-main);
}

.page-reviews-hub #reviews-legal-body.reviews-legal-body-plain h3:first-child {
  margin-top: 0;
}

.page-reviews-hub #reviews-legal-body.reviews-legal-body-plain p {
  margin: 0 0 0.85rem;
  line-height: 1.65;
  color: #475569;
}

@media (min-width: 768px) {
  .page-reviews-hub .reviews-legal-topics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }
}

.page-reviews-hub .reviews-bonus-table th:nth-child(1),
.page-reviews-hub .reviews-bonus-table td:nth-child(1) {
  min-width: 9rem;
}

.page-reviews-hub .reviews-bonus-table th:nth-child(4),
.page-reviews-hub .reviews-bonus-table td:nth-child(4) {
  min-width: 12rem;
}

.page-reviews-hub .reviews-bonuses-section {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

.page-reviews-hub #reviews-bonuses-h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.2;
  color: var(--text-main);
}

.page-reviews-hub .reviews-bonuses-section__intro {
  margin: 0 0 1.75rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.page-reviews-hub .reviews-bonus-table-wrap {
  margin-bottom: 1.75rem;
  overflow: hidden;
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 1rem;
  background: #fff;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 4px 14px rgba(15, 23, 42, 0.04);
}

.page-reviews-hub .reviews-bonus-table {
  margin: 0;
}

.page-reviews-hub .reviews-bonus-table thead th {
  background: linear-gradient(180deg, #f4fbfb 0%, #eef9f8 100%);
  color: #1e3a5f;
  border-bottom: 2px solid rgba(51, 190, 179, 0.18);
}

.page-reviews-hub .reviews-bonus-table tbody tr:nth-child(even) {
  background: rgba(248, 252, 253, 0.85);
}

.page-reviews-hub .reviews-bonus-table tbody tr:hover {
  background: rgba(51, 190, 179, 0.06);
}

.page-reviews-hub .reviews-bonus-table__type {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.page-reviews-hub .reviews-bonus-table__type-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, rgba(51, 190, 179, 0.16) 0%, rgba(51, 190, 179, 0.08) 100%);
  color: var(--primary);
  border: 1px solid rgba(51, 190, 179, 0.18);
  flex-shrink: 0;
}

.page-reviews-hub .reviews-bonus-table__type-icon svg {
  width: 1rem;
  height: 1rem;
}

.page-reviews-hub .reviews-bonus-table .live-casino-data-table__notes {
  display: block;
  padding: 0.35rem 0.55rem;
  border-radius: 0.45rem;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.16);
  color: #92400e;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.page-reviews-hub .reviews-bonus-guides {
  display: flex;
  flex-direction: column;
  gap: clamp(0.875rem, 2vw, 1.15rem);
  margin: 0;
}

.page-reviews-hub .reviews-bonus-guide {
  padding: 1.25rem 1.2rem 1.3rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, #fff 0%, #f8fcfd 100%);
  border: 1px solid var(--border-light, #e2e8f0);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 4px 14px rgba(15, 23, 42, 0.04);
}

.page-reviews-hub .reviews-bonus-guide--highlight {
  background: linear-gradient(180deg, #fff 0%, #fffbf5 100%);
  border-color: rgba(245, 158, 11, 0.22);
}

.page-reviews-hub .reviews-bonus-guide__head {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.75rem;
}

.page-reviews-hub .reviews-bonus-guide__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(51, 190, 179, 0.16) 0%, rgba(51, 190, 179, 0.08) 100%);
  color: var(--primary);
  border: 1px solid rgba(51, 190, 179, 0.18);
  flex-shrink: 0;
}

.page-reviews-hub .reviews-bonus-guide--highlight .reviews-bonus-guide__icon {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.16) 0%, rgba(245, 158, 11, 0.08) 100%);
  color: #d97706;
  border-color: rgba(245, 158, 11, 0.22);
}

.page-reviews-hub .reviews-bonus-guide__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.page-reviews-hub .reviews-bonus-guide h3 {
  flex: 1;
  min-width: 0;
  margin: 0;
  padding-top: 0.2rem;
  font-size: clamp(1rem, 1.6vw, 1.0625rem);
  font-weight: 700;
  line-height: 1.35;
  color: #1e3a5f;
}

.page-reviews-hub .reviews-bonus-guide__body,
.page-reviews-hub .reviews-bonus-guide .rich-text-body {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.page-reviews-hub .reviews-bonus-guide__body {
  padding-top: 0.85rem;
  border-top: 1px solid rgba(51, 190, 179, 0.12);
}

.page-reviews-hub .reviews-bonus-guide--highlight .reviews-bonus-guide__body {
  border-top-color: rgba(245, 158, 11, 0.14);
}

.page-reviews-hub .reviews-bonus-guide .rich-text-body p {
  margin: 0 0 0.85rem;
}

.page-reviews-hub .reviews-bonus-guide .rich-text-body p:last-child {
  margin-bottom: 0;
}

.page-reviews-hub .reviews-bonus-guide .rich-text-body a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-reviews-hub .reviews-bonus-guide .rich-text-body a:hover {
  color: var(--primary-hover);
}

.page-reviews-hub .reviews-bonus-guide .rich-text-body strong {
  color: var(--text-main);
  font-weight: 700;
}

.page-reviews-hub .reviews-bonuses-section__outro {
  margin: 1.75rem 0 0;

  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.page-reviews-hub .reviews-bonuses-section__outro:empty {
  display: none;
}

.page-reviews-hub .reviews-games-section {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

.page-reviews-hub #reviews-games-h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.2;
  color: var(--text-main);
}

.page-reviews-hub .reviews-games-section__intro {
  margin: 0 0 1.75rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.page-reviews-hub .reviews-game-categories {
  display: flex;
  flex-direction: column;
  gap: clamp(0.875rem, 2vw, 1.15rem);
}

.page-reviews-hub .reviews-game-category {
  padding: 1.25rem 1.2rem 1.3rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, #fff 0%, #f8fcfd 100%);
  border: 1px solid var(--border-light, #e2e8f0);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 4px 14px rgba(15, 23, 42, 0.04);
}

.page-reviews-hub .reviews-game-category__head {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.75rem;
}

.page-reviews-hub .reviews-game-category__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(51, 190, 179, 0.16) 0%, rgba(51, 190, 179, 0.08) 100%);
  color: var(--primary);
  border: 1px solid rgba(51, 190, 179, 0.18);
  flex-shrink: 0;
}

.page-reviews-hub .reviews-game-category__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.page-reviews-hub .reviews-game-category h3 {
  flex: 1;
  min-width: 0;
  margin: 0;
  padding-top: 0.2rem;
  font-size: clamp(1rem, 1.6vw, 1.0625rem);
  font-weight: 700;
  line-height: 1.35;
  color: #1e3a5f;
}

.page-reviews-hub .reviews-game-category__body {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.page-reviews-hub .reviews-game-category__body p {
  margin: 0 0 0.85rem;
}

.page-reviews-hub .reviews-game-category__body p:last-child {
  margin-bottom: 0;
}

.page-reviews-hub .reviews-game-category__body a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-reviews-hub .reviews-game-category__body a:hover {
  color: var(--primary-hover);
}

.page-reviews-hub .reviews-featured-slots-panel {
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(51, 190, 179, 0.12);
}

.page-reviews-hub .reviews-featured-slots-panel__label {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.page-reviews-hub .malaysia-featured-slots-wrap {
  margin-top: 0;
}

.page-reviews-hub .malaysia-featured-slots-wrap[hidden] {
  display: none;
}

.page-reviews-hub .malaysia-featured-slots {
  margin: 0;
  padding: clamp(0.85rem, 2vw, 1.15rem);
  border-radius: 0.85rem;
  background: #fff;
  border: 1px solid rgba(51, 190, 179, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.page-reviews-hub .reviews-games-section__outro {
  margin: 1.75rem 0 0;

  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.page-reviews-hub .reviews-games-section__outro:empty {
  display: none;
}

@media (max-width: 900px) {
  .page-reviews-hub .malaysia-featured-slots {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.75rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.35rem;
  }

  .page-reviews-hub .malaysia-featured-slots .malaysia-featured-slot {
    flex: 0 0 min(72vw, 11.5rem);
    scroll-snap-align: start;
  }
}

.page-reviews-hub .reviews-payments-logos-panel {
  margin-top: 1.75rem;
  padding: 1.35rem 1.25rem 1.3rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, #fff 0%, #f8fcfd 100%);
  border: 1px solid var(--border-light, #e2e8f0);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 4px 14px rgba(15, 23, 42, 0.04);
}

.page-reviews-hub .reviews-payments-logos-panel__heading {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.page-reviews-hub .reviews-payments-logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(6.75rem, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-reviews-hub .reviews-payments-logos__item--has-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.75rem;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 5.5rem auto;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.page-reviews-hub .reviews-payments-logos__item--has-logo:hover {
  border-color: rgba(51, 190, 179, 0.28);
  box-shadow: 0 4px 12px rgba(51, 190, 179, 0.1);
  transform: translateY(-1px);
}

.page-reviews-hub .reviews-payments-logos__item--text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-main);
  text-align: center;
}

.page-reviews-hub .reviews-payments-logos__label {
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

.page-reviews-hub .reviews-payments-logos-panel__outro {
  margin: 1.15rem 0 0;
  padding: 0.95rem 1rem;
  border-radius: 0.75rem;
  background: rgba(51, 190, 179, 0.06);
  border: 1px solid rgba(51, 190, 179, 0.14);
  border-left: 3px solid var(--primary);
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.page-reviews-hub .reviews-payments-logos-panel__outro:empty {
  display: none;
}

.page-reviews-hub #reviews-payments-table td:first-child {
  min-width: 9rem;
}

.page-reviews-hub .reviews-payments-table__method--has-logo {
  display: inline-block;
  width: 7.5rem;
  height: 2.5rem;
  font-size: 0;
  line-height: 0;
  color: transparent;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  vertical-align: middle;
}

.page-reviews-hub .reviews-payments-table__method-label {
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

.page-reviews-hub .reviews-responsible {
  padding: 1.5rem 1.35rem;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #e8edf3;
}

.page-reviews-hub .reviews-responsible p {
  margin: 0;
  line-height: 1.65;
  color: #475569;
}

.page-reviews-hub .reviews-author {
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e8edf3;
}

.page-reviews-hub .reviews-author__label {
  margin: 0 0 0.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1c1e2d;
}

.page-reviews-hub .reviews-author__role {
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
}

.page-reviews-hub .reviews-author__bio {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

@media (min-width: 640px) {
  .page-reviews-hub .reviews-spotlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
  }
}

@media (min-width: 992px) {
  .page-reviews-hub .reviews-spotlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

@media (max-width: 768px) {
  .page-reviews-hub .reviews-spotlight__proscons {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {

  .page-reviews-hub .reviews-spotlight-card,
  .page-reviews-hub .reviews-spotlight-card__icon,
  .page-reviews-hub .reviews-spotlight-card__pill {
    transition: none;
  }

  .page-reviews-hub .reviews-spotlight-card:hover,
  .page-reviews-hub .reviews-spotlight-card__pill:hover {
    transform: none;
  }
}

/* ============================================================
   Bonus hub (.page-bonus-hub)
   ============================================================ */

/* Consistent vertical rhythm — every main block gets top + bottom spacing */
.page-bonus-hub section.malaysia-section.container,
.page-bonus-hub section.casinos-seo.container,
.page-bonus-hub section.malaysia-conclusion-cta.container,
.page-bonus-hub section.seo-accordion,
.page-bonus-hub .malaysia-quicknavi--after-list {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

.page-bonus-hub section.malaysia-section:not(.container) {
  padding-top: 0;
  padding-bottom: var(--section-gap);
}

.page-bonus-hub #bonus-operators-outro {
  margin-top: 2rem;
  margin-bottom: 0;
  line-height: 1.65;
  color: var(--text-secondary, #475569);
}

/* How we rate — balanced section rhythm + criteria cards */
.page-bonus-hub #bonus-rating-h2 {
  text-align: center;
  max-width: 52rem;
  margin-inline: auto;
  margin-bottom: 1rem;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  line-height: 1.2;
}

.page-bonus-hub #bonus-rating-intro {
  text-align: center;
  margin: 0 auto 2rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary, #475569);
}

.page-bonus-hub #bonus-rating-outro {
  text-align: center;
  max-width: 40rem;
  margin: 2rem auto 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary, #475569);
}

.page-bonus-hub .bonus-criteria-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  align-items: stretch;
}

.page-bonus-hub .bonus-criteria-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.35rem 1.2rem 1.4rem;
  background: #fff;
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 14px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 4px 12px rgba(15, 23, 42, 0.03);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.page-bonus-hub .bonus-criteria-card:hover {
  border-color: color-mix(in srgb, var(--primary) 32%, var(--border-light));
  box-shadow:
    0 4px 16px rgba(15, 23, 42, 0.07),
    0 1px 3px rgba(51, 190, 179, 0.12);
  transform: translateY(-2px);
}

.page-bonus-hub .bonus-criteria-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.85rem;
  border-radius: 10px;
  background: color-mix(in srgb, var(--primary) 11%, #fff);
  color: var(--primary);
  flex-shrink: 0;
}

.page-bonus-hub .bonus-criteria-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.page-bonus-hub .bonus-criteria-card .live-casino-criteria-card__title {
  margin: 0 0 0.6rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  min-height: 2.7em;
  color: var(--text-primary, #0f172a);
}

.page-bonus-hub .bonus-criteria-card .live-casino-criteria-card__body {
  flex: 1;
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.58;
  color: var(--text-secondary, #475569);
}

@media (max-width: 1200px) {
  .page-bonus-hub .bonus-criteria-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-bonus-hub .bonus-criteria-card .live-casino-criteria-card__title {
    min-height: 0;
  }
}

@media (max-width: 768px) {
  .page-bonus-hub .bonus-criteria-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .page-bonus-hub #bonus-rating-intro {
    margin-bottom: 1.5rem;
  }

  .page-bonus-hub #bonus-rating-outro {
    margin-top: 1.5rem;
  }
}

@media (max-width: 520px) {
  .page-bonus-hub .bonus-criteria-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-bonus-hub .bonus-criteria-card:hover {
    transform: none;
  }
}

.page-bonus-hub #bonus-types-h2 {
  text-align: center;
  max-width: 52rem;
  margin-inline: auto;
  margin-bottom: 1rem;
}

.page-bonus-hub #bonus-types-intro {
  text-align: center;
  margin: 0 auto 2rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary, #475569);
}

.page-bonus-hub .bonus-types-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.page-bonus-hub .bonus-type-card {
  padding: clamp(1.25rem, 2.5vw, 1.65rem);
  background: #fff;
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 14px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 4px 12px rgba(15, 23, 42, 0.03);
}

.page-bonus-hub .bonus-type-card__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.page-bonus-hub .bonus-type-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  background: rgba(51, 190, 179, 0.12);
  color: var(--primary);
}

.page-bonus-hub .bonus-type-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.page-bonus-hub .bonus-type-card h3 {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.3;
  color: var(--text-main, #0f172a);
}

.page-bonus-hub .bonus-type-card>p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary, #475569);
}

.page-bonus-hub .bonus-type-card__facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 0.85rem;
  border-radius: 10px;
  background: var(--bg-body, #f8fafc);
  border: 1px solid var(--border-light, #e2e8f0);
}

.page-bonus-hub .bonus-type-card__fact {
  margin: 0;
  min-width: 0;
}

.page-bonus-hub .bonus-type-card__fact dt {
  margin: 0 0 0.2rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary-hover, #2aa197);
}

.page-bonus-hub .bonus-type-card__fact dd {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-main, #0f172a);
}

.page-bonus-hub .bonus-type-card .malaysia-bonus-featured {
  margin: 0 0 1rem;
}

.page-bonus-hub .bonus-terms-list {
  margin: 1.25rem 0 0;
  padding: 0;
}

.page-bonus-hub .bonus-terms-list__item {
  margin: 0;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light, #e2e8f0);
}

.page-bonus-hub .bonus-terms-list__item:first-child {
  padding-top: 0;
}

.page-bonus-hub .bonus-terms-list__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.page-bonus-hub .bonus-terms-list dt {
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-main, #0f172a);
}

.page-bonus-hub .bonus-terms-list dd {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary, #475569);
}

.page-bonus-hub #bonus-terms-outro {
  margin-top: 1.25rem;
}

.page-bonus-hub .bonus-claim-steps {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.page-bonus-hub .bonus-claim-steps__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 0;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light, #e2e8f0);
}

.page-bonus-hub .bonus-claim-steps__item:first-child {
  padding-top: 0;
}

.page-bonus-hub .bonus-claim-steps__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.page-bonus-hub .bonus-claim-steps__num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(51, 190, 179, 0.14);
  color: var(--primary-hover, #2aa197);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
}

.page-bonus-hub .bonus-claim-steps__content {
  min-width: 0;
  padding-top: 0.1rem;
}

.page-bonus-hub .bonus-claim-steps__title {
  display: block;
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-main, #0f172a);
}

.page-bonus-hub .bonus-claim-steps__body {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary, #475569);
}

.page-bonus-hub #bonus-claim-outro {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted, #64748b);
}

.page-bonus-hub .bonus-type-bullets {
  margin: 1rem 0 1.75rem;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  line-height: 1.65;
  color: var(--text-secondary, #475569);
}

.page-bonus-hub .malaysia-bonus-featured {
  margin: 1.25rem 0 0.5rem;
}

.page-bonus-hub .live-casino-data-table--playstyle {
  table-layout: fixed;
}

.page-bonus-hub .live-casino-data-table--playstyle td,
.page-bonus-hub .live-casino-data-table--playstyle th {
  vertical-align: middle;
}

.page-bonus-hub .live-casino-data-table--playstyle th:nth-child(1),
.page-bonus-hub .live-casino-data-table--playstyle td:nth-child(1) {
  width: 17%;
  min-width: 11rem;
}

.page-bonus-hub .live-casino-data-table--playstyle th:nth-child(2),
.page-bonus-hub .live-casino-data-table--playstyle td:nth-child(2) {
  width: 12%;
  min-width: 8.5rem;
}

.page-bonus-hub .live-casino-data-table--playstyle th:nth-child(3),
.page-bonus-hub .live-casino-data-table--playstyle td:nth-child(3) {
  width: 38%;
}

.page-bonus-hub .live-casino-data-table--playstyle th:nth-child(4),
.page-bonus-hub .live-casino-data-table--playstyle td:nth-child(4) {
  width: 15%;
  min-width: 9rem;
}

.page-bonus-hub .live-casino-data-table--playstyle th:nth-child(5),
.page-bonus-hub .live-casino-data-table--playstyle td:nth-child(5) {
  width: 18%;
  min-width: 9.5rem;
  text-align: center;
}

.page-bonus-hub .live-casino-data-table--playstyle tbody tr:nth-child(even) {
  background: rgba(248, 250, 252, 0.85);
}

.page-bonus-hub .live-casino-data-table--playstyle tbody tr.bonus-playstyle__row--top {
  background: linear-gradient(90deg, rgba(51, 190, 179, 0.1) 0%, rgba(248, 250, 252, 0.55) 100%);
  box-shadow: inset 3px 0 0 var(--primary);
}

.page-bonus-hub .bonus-playstyle__category {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.page-bonus-hub .bonus-playstyle__icon-wrap {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: rgba(51, 190, 179, 0.12);
  font-size: 1rem;
  line-height: 1;
}

.page-bonus-hub .bonus-playstyle__icon {
  flex-shrink: 0;
  line-height: 1;
}

.page-bonus-hub .bonus-playstyle__category-label {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.35;
  color: var(--text-primary, #0f172a);
}

.page-bonus-hub .bonus-playstyle__pick {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.page-bonus-hub .bonus-playstyle__logo {
  display: inline-block;
  font-size: 0;
  line-height: 0;
  color: transparent;
  width: 6.5rem;
  height: 2.25rem;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  overflow: hidden;
}

.page-bonus-hub .bonus-playstyle__logo-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.375rem;
  background: var(--surface-muted, #f1f5f9);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--primary);
}

.page-bonus-hub .bonus-playstyle__why {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-secondary, #475569);
}

.page-bonus-hub .bonus-playstyle__details {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  border-radius: 0.375rem;
  background: rgba(51, 190, 179, 0.1);
  border: 1px solid rgba(51, 190, 179, 0.22);
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1.35;
  color: var(--primary-hover);
}

.page-bonus-hub .bonus-playstyle__cta-cell {
  text-align: center;
}

.page-bonus-hub .bonus-playstyle__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.5rem;
  padding: 0.65rem 1.1rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary) 0%, #2aa197 100%);
  color: #fff !important;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(51, 190, 179, 0.35);
  transition:
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.page-bonus-hub .bonus-playstyle__cta:hover,
.page-bonus-hub .bonus-playstyle__cta:focus-visible {
  background: linear-gradient(135deg, var(--primary-hover) 0%, #238b82 100%);
  color: #fff !important;
  text-decoration: none !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(51, 190, 179, 0.42);
}

.page-bonus-hub .bonus-payments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.25rem 0;
}

.page-bonus-hub .bonus-payments-grid__item {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--surface-muted, #f8fafc);
  border: 1px solid var(--border-color, #e2e8f0);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary, #0f172a);
}

@media (max-width: 768px) {
  .page-bonus-hub .live-casino-data-table--playstyle {
    table-layout: auto;
  }

  .page-bonus-hub .live-casino-data-table--playstyle thead {
    display: none;
  }

  .page-bonus-hub .live-casino-data-table--playstyle tbody tr {
    display: block;
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: var(--radius-md, 12px);
    background: var(--bg-card, #fff);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  }

  .page-bonus-hub .live-casino-data-table--playstyle tbody tr.bonus-playstyle__row--top {
    border-color: rgba(51, 190, 179, 0.35);
    box-shadow: 0 2px 8px rgba(51, 190, 179, 0.12);
  }

  .page-bonus-hub .live-casino-data-table--playstyle tbody tr:nth-child(even) {
    background: var(--bg-card, #fff);
  }

  .page-bonus-hub .live-casino-data-table--playstyle td {
    display: block;
    border: none;
    padding: 0.5rem 0;
    width: 100% !important;
    min-width: 0 !important;
    text-align: left !important;
  }

  .page-bonus-hub .live-casino-data-table--playstyle td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted, #64748b);
    margin-bottom: 0.35rem;
  }

  .page-bonus-hub .bonus-playstyle__pick {
    justify-content: flex-start;
  }

  .page-bonus-hub .bonus-playstyle__details {
    white-space: normal;
  }

  .page-bonus-hub .bonus-playstyle__cta-cell::before {
    display: none;
  }

  .page-bonus-hub .bonus-playstyle__cta {
    width: 100%;
    min-width: 0;
    margin-top: 0.35rem;
  }
}

/* --------------------------------------------------------------------------
   E-wallet hub (.page-e-wallet)
   -------------------------------------------------------------------------- */
.page-e-wallet #e-wallet-operators-outro {
  margin-top: 1.25rem;
}

/* Why e-wallets — 2×2 benefit cards with icons */
.page-e-wallet .e-wallet-why-section {
  padding-top: clamp(2rem, 4vw, 2.75rem);
  padding-bottom: clamp(2rem, 4vw, 2.75rem);
}

.page-e-wallet .e-wallet-why-section h2 {
  margin-bottom: 0.75rem;
}

.page-e-wallet #e-wallet-why-intro {
  max-width: 52rem;
  margin: 0 0 1.75rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary, #475569);
}

.page-e-wallet .live-casino-criteria-grid.e-wallet-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.875rem, 2vw, 1.25rem);
  margin: 0;
  align-items: stretch;
}

.page-e-wallet .e-wallet-why-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.35rem 1.25rem 1.4rem;
  background: linear-gradient(180deg, #fff 0%, #f8fcfd 100%);
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 1rem;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 4px 14px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.page-e-wallet .e-wallet-why-card:hover {
  border-color: color-mix(in srgb, var(--primary) 35%, var(--border-light));
  box-shadow:
    0 6px 20px rgba(15, 23, 42, 0.08),
    0 2px 6px rgba(51, 190, 179, 0.12);
  transform: translateY(-2px);
}

.page-e-wallet .e-wallet-why-card__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0;
}

.page-e-wallet .e-wallet-why-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(51, 190, 179, 0.16) 0%, rgba(51, 190, 179, 0.08) 100%);
  color: var(--primary, #33beb3);
  border: 1px solid rgba(51, 190, 179, 0.18);
  flex-shrink: 0;
}

.page-e-wallet .e-wallet-why-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.page-e-wallet .e-wallet-why-card .live-casino-criteria-card__title {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1e3a5f;
}

.page-e-wallet .e-wallet-why-card .live-casino-criteria-card__body,
.page-e-wallet .e-wallet-why-card .rich-text-body.live-casino-criteria-card__body {
  flex: 1;
  margin: 0;
  padding-top: 0.875rem;
  font-size: 0.8125rem;
  line-height: 1.58;
  color: var(--text-secondary, #475569);
}

.page-e-wallet .e-wallet-why-card .rich-text-body p {
  margin: 0;
}

.page-e-wallet .e-wallet-game-types-section h2 {
  margin-bottom: 0.75rem;
}

.page-e-wallet #e-wallet-game-types-intro {
  max-width: 52rem;
  margin: 0 0 1.75rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary, #475569);
}

.page-e-wallet .e-wallet-game-types-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.875rem, 2vw, 1.25rem);
  align-items: stretch;
}

.page-e-wallet .e-wallet-game-type-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 1rem;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 4px 14px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.page-e-wallet .e-wallet-game-type-card:hover {
  border-color: color-mix(in srgb, var(--primary) 35%, var(--border-light));
  box-shadow:
    0 8px 24px rgba(15, 23, 42, 0.09),
    0 2px 8px rgba(51, 190, 179, 0.14);
  transform: translateY(-3px);
}

.page-e-wallet .e-wallet-game-type-card__head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0;
  padding: 1.35rem 1.35rem 0;
}

.page-e-wallet .e-wallet-game-type-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: linear-gradient(145deg, rgba(51, 190, 179, 0.18) 0%, rgba(51, 190, 179, 0.06) 100%);
  color: var(--primary, #33beb3);
  border: 1px solid rgba(51, 190, 179, 0.22);
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(51, 190, 179, 0.1);
}

.page-e-wallet .e-wallet-game-type-card__icon svg {
  width: 1.3rem;
  height: 1.3rem;
}

.page-e-wallet .e-wallet-game-type-card h3 {
  margin: 0;
  flex: 1;
  min-width: 0;
  padding-top: 0.15rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: #1e3a5f;
  letter-spacing: -0.01em;
}

.page-e-wallet .e-wallet-game-type-card__body,
.page-e-wallet .e-wallet-game-type-card .rich-text-body.e-wallet-game-type-card__body {
  flex: 1;
  margin: 0;
  padding: 0.875rem 1.35rem 1.25rem;
  font-size: 0.8125rem;
  line-height: 1.62;
  color: var(--text-secondary, #475569);
}

.page-e-wallet .e-wallet-game-type-card .rich-text-body p {
  margin: 0;
}

.page-e-wallet .e-wallet-game-type-card__wallets {
  margin-top: auto;
  padding: 0.875rem 1.1rem 1.1rem;
  background: linear-gradient(180deg, #f4f8fa 0%, #eef4f7 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  min-height: 6.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page-e-wallet .e-wallet-game-type-card__wallets-label {
  margin: 0 0 0.625rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
  text-align: center;
}

.page-e-wallet .e-wallet-wallet-tags {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.page-e-wallet .e-wallet-wallet-tags:has(> .e-wallet-wallet-tags__item:nth-child(3):last-child) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 78%;
  margin-inline: auto;
}

.page-e-wallet .e-wallet-wallet-tags__item--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.45rem 0.5rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.page-e-wallet .e-wallet-wallet-tags__item--logo:hover {
  border-color: rgba(51, 190, 179, 0.35);
  box-shadow: 0 2px 8px rgba(51, 190, 179, 0.12);
  transform: translateY(-1px);
}

.page-e-wallet .e-wallet-wallet-tags__item--logo:nth-child(5):last-child {
  grid-column: 2 / 4;
}

.page-e-wallet .e-wallet-wallet-tags__logo {
  display: block;
  width: auto;
  height: 1.65rem;
  max-width: 100%;
  object-fit: contain;
}

.page-e-wallet .e-wallet-wallet-tags__item--text {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #1e3a5f;
  background: color-mix(in srgb, var(--primary) 8%, #fff);
  border: 1px solid rgba(51, 190, 179, 0.2);
}

.page-e-wallet #e-wallet-conclusion-body {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary, #475569);
}

.page-e-wallet .e-wallet-comparison-table th:nth-child(1),
.page-e-wallet .e-wallet-comparison-table td:nth-child(1) {
  min-width: 9.5rem;
}

.page-e-wallet .e-wallet-comparison-table__wallet--has-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 7.5rem;
  height: 2.5rem;
  padding: 0.35rem 0.5rem;
  border-radius: 0.375rem;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(15, 23, 42, 0.07);
}

.page-e-wallet .e-wallet-comparison-table__wallet-label {
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

.page-e-wallet .e-wallet-comparison-table tbody tr {
  transition: background-color 0.18s ease;
}

.page-e-wallet .e-wallet-comparison-table tbody tr:hover {
  background: rgba(51, 190, 179, 0.04);
}

.page-e-wallet .e-wallet-comparison-table__pro,
.page-e-wallet .e-wallet-comparison-table__con {
  display: inline-block;
  font-size: 0.8125rem;
  line-height: 1.45;
}

.page-e-wallet .e-wallet-comparison-table__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.75rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  box-shadow: 0 2px 8px rgba(51, 190, 179, 0.35);
  white-space: nowrap;
  transition:
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease,
    color 0.18s ease;
}

.page-e-wallet .e-wallet-comparison-table__cta:hover,
.page-e-wallet .e-wallet-comparison-table__cta:focus-visible {
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, var(--primary-hover) 0%, #238b82 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(51, 190, 179, 0.42);
}

.page-e-wallet .e-wallet-deposits-table th:nth-child(1),
.page-e-wallet .e-wallet-deposits-table td:nth-child(1) {
  min-width: 9rem;
}

.page-e-wallet .e-wallet-deposits-table__casino--has-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 7.5rem;
  height: 2.5rem;
  padding: 0.35rem 0.5rem;
  border-radius: 0.375rem;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(15, 23, 42, 0.07);
}

.page-e-wallet .e-wallet-deposits-table__casino-label {
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

.page-e-wallet .e-wallet-deposits-table tbody tr {
  transition: background-color 0.18s ease;
}

.page-e-wallet .e-wallet-deposits-table tbody tr:hover {
  background: rgba(51, 190, 179, 0.04);
}

.page-e-wallet .e-wallet-deposits-table__fee--free {
  color: var(--text-light, #94a3b8);
  font-size: 0.8125rem;
}

/* How-to deposit steps */
.page-e-wallet #e-wallet-how-to-intro {
  max-width: 52rem;
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary, #475569);
}

.page-e-wallet #e-wallet-how-to-outro {
  max-width: 52rem;
  margin: 1.25rem 0 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-secondary, #475569);
}

.page-e-wallet .e-wallet-how-to-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.875rem, 2vw, 1.125rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-e-wallet .e-wallet-how-to-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  height: 100%;
  padding: 1.2rem 1.25rem 1.25rem;
  background: linear-gradient(180deg, #fff 0%, #f8fcfd 100%);
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 1rem;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 4px 14px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.page-e-wallet .e-wallet-how-to-step:hover {
  border-color: color-mix(in srgb, var(--primary) 35%, var(--border-light));
  box-shadow:
    0 6px 20px rgba(15, 23, 42, 0.08),
    0 2px 6px rgba(51, 190, 179, 0.12);
  transform: translateY(-2px);
}

.page-e-wallet .e-wallet-how-to-step__mark {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.page-e-wallet .e-wallet-how-to-step__label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary, #33beb3);
  line-height: 1;
}

.page-e-wallet .e-wallet-how-to-step__num-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary, #33beb3) 0%, #2aa89f 100%);
  box-shadow: 0 2px 10px rgba(51, 190, 179, 0.35);
}

.page-e-wallet .e-wallet-how-to-step__num {
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.page-e-wallet .e-wallet-how-to-step__content {
  flex: 1;
  width: 100%;
  min-width: 0;
  padding-right: 2.75rem;
}

.page-e-wallet .e-wallet-how-to-step__title {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1e3a5f;
}

.page-e-wallet .e-wallet-how-to-step__body {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.62;
  color: var(--text-secondary, #475569);
}

.page-e-wallet .e-wallet-how-to-step__icon {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(51, 190, 179, 0.14) 0%, rgba(51, 190, 179, 0.06) 100%);
  color: var(--primary, #33beb3);
  border: 1px solid rgba(51, 190, 179, 0.18);
}

.page-e-wallet .e-wallet-how-to-step__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

@media (min-width: 901px) {
  .page-e-wallet .e-wallet-how-to-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 2.35rem;
    right: -0.65rem;
    width: 1.25rem;
    height: 2px;
    background: linear-gradient(90deg, rgba(51, 190, 179, 0.45), rgba(51, 190, 179, 0.15));
    pointer-events: none;
  }
}

@media (max-width: 900px) {

  .page-e-wallet .live-casino-criteria-grid.e-wallet-why-grid,
  .page-e-wallet .live-casino-criteria-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .page-e-wallet .e-wallet-game-types-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .page-e-wallet .e-wallet-game-type-card__wallets {
    min-height: auto;
    padding: 0.75rem 0.85rem 0.85rem;
  }

  .page-e-wallet .e-wallet-wallet-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem;
  }

  .page-e-wallet .e-wallet-wallet-tags:has(> .e-wallet-wallet-tags__item:nth-child(3):last-child) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
  }

  .page-e-wallet .e-wallet-wallet-tags__item--logo:nth-child(5):last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin-inline: auto;
    width: 100%;
  }

  .page-e-wallet .e-wallet-why-card:hover,
  .page-e-wallet .e-wallet-game-type-card:hover {
    transform: none;
  }

  .page-e-wallet .e-wallet-how-to-steps {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .page-e-wallet .e-wallet-how-to-step:not(:last-child)::after {
    display: none;
  }

  .page-e-wallet .e-wallet-how-to-step:hover {
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   Mobile hub (.page-mobile-hub)
   -------------------------------------------------------------------------- */
.page-mobile-hub .live-casino-criteria-grid.mobile-criteria-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  align-items: stretch;
}

.page-mobile-hub .mobile-rating-section {
  padding-top: clamp(2.5rem, 5vw, 3.75rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.page-mobile-hub .mobile-rating-section h2 {
  margin-bottom: 1rem;
}

.page-mobile-hub #mobile-rating-intro {

  margin-bottom: clamp(1.75rem, 3vw, 2.25rem);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary, #475569);
}

.page-mobile-hub #mobile-rating-outro {
  margin-top: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0;

  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary, #475569);
}

.page-mobile-hub .mobile-criteria-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.35rem 1.2rem 1.45rem;
  background: #fff;
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 14px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 4px 12px rgba(15, 23, 42, 0.03);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.page-mobile-hub .mobile-criteria-card:hover {
  border-color: color-mix(in srgb, var(--primary) 32%, var(--border-light));
  box-shadow:
    0 4px 16px rgba(15, 23, 42, 0.07),
    0 1px 3px rgba(51, 190, 179, 0.12);
  transform: translateY(-2px);
}

.page-mobile-hub .mobile-criteria-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.85rem;
  border-radius: 10px;
  background: color-mix(in srgb, var(--primary) 11%, #fff);
  color: var(--primary);
  flex-shrink: 0;
}

.page-mobile-hub .mobile-criteria-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.page-mobile-hub .mobile-criteria-card .live-casino-criteria-card__title {
  margin: 0 0 0.65rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  min-height: 2.7em;
  color: var(--text-primary, #0f172a);
}

.page-mobile-hub .mobile-criteria-card .live-casino-criteria-card__body {
  flex: 1;
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.58;
  color: var(--text-secondary, #475569);
}

@media (max-width: 1200px) {
  .page-mobile-hub .live-casino-criteria-grid.mobile-criteria-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-mobile-hub .mobile-criteria-card .live-casino-criteria-card__title {
    min-height: 0;
  }
}

@media (max-width: 768px) {
  .page-mobile-hub .live-casino-criteria-grid.mobile-criteria-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .page-mobile-hub .mobile-rating-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

@media (max-width: 520px) {
  .page-mobile-hub .live-casino-criteria-grid.mobile-criteria-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-mobile-hub .mobile-criteria-card:hover {
    transform: none;
  }
}

.page-mobile-hub .mobile-payment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.page-mobile-hub .mobile-payment-tags li {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary, #0f172a);
  background: var(--bg-muted, #f1f5f9);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.page-mobile-hub .mobile-recommended-apps-table tbody tr {
  background: #fff;
}

.page-mobile-hub .mobile-recommended-apps-table tbody tr:nth-child(even) {
  background: #f4f7fa;
}

.page-mobile-hub .mobile-recommended-apps-table tbody tr:hover {
  background: rgba(51, 190, 179, 0.08);
}

.page-mobile-hub .mobile-recommended-apps-table__logo {
  display: inline-block;
  font-size: 0;
  line-height: 0;
  color: transparent;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  vertical-align: middle;
}

.page-mobile-hub .mobile-recommended-apps-table__logo--provider {
  width: 12rem;
  height: 2.75rem;
  max-width: 100%;
}

.page-mobile-hub .mobile-recommended-apps-table__logo--casino {
  width: 7.5rem;
  height: 2.625rem;
  max-width: 100%;
}

.page-mobile-hub .mobile-recommended-apps-table__provider-text {
  font-weight: 600;
  color: var(--text-primary, #0f172a);
}

.page-mobile-hub .mobile-recommended-apps-table__game {
  font-style: italic;
  font-weight: 600;
  color: #1e293b;
}

.page-mobile-hub .mobile-recommended-apps-table__casino-text {
  font-style: italic;
  font-weight: 700;
  color: #2563eb;
  letter-spacing: -0.01em;
}

.page-mobile-hub .mobile-recommended-apps-table__link {
  font-weight: 600;
  color: var(--accent, #33beb3);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.page-mobile-hub .mobile-recommended-apps-table__link:hover,
.page-mobile-hub .mobile-recommended-apps-table__link:focus-visible {
  color: #2aa89f;
}

.page-mobile-hub #mobile-compare .live-casino-table-wrap {
  margin-top: 1.75rem;
  border-radius: 14px;
  overflow: hidden;
  border-color: #e2e8f0;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 8px 24px rgba(15, 23, 42, 0.06);
}

.page-mobile-hub .mobile-apps-vs-browser-table {
  font-size: 0.9375rem;
}

.page-mobile-hub .mobile-apps-vs-browser-table th,
.page-mobile-hub .mobile-apps-vs-browser-table td {
  padding: 1.125rem 1.5rem;
  line-height: 1.55;
}

.page-mobile-hub .mobile-apps-vs-browser-table thead th {
  background: #f1f5f9;
  color: #475569;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-bottom: 1px solid #e2e8f0;
}

.page-mobile-hub .mobile-apps-vs-browser-table tbody td:first-child {
  font-weight: 600;
  color: #0f172a;
  width: 22%;
  min-width: 8.5rem;
}

.page-mobile-hub .mobile-apps-vs-browser-table tbody td:not(:first-child) {
  color: #334155;
}

.page-mobile-hub .mobile-apps-vs-browser-table tbody tr:hover {
  background: #fafbfc;
}

.page-mobile-hub .mobile-apps-vs-browser-table .mobile-compare-yes,
.page-mobile-hub .mobile-apps-vs-browser-table .mobile-compare-no,
.page-mobile-hub .mobile-apps-vs-browser-table .mobile-compare-mid {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.625rem;
  max-width: 22rem;
}

.page-mobile-hub .mobile-apps-vs-browser-table .mobile-compare-yes::before,
.page-mobile-hub .mobile-apps-vs-browser-table .mobile-compare-no::before,
.page-mobile-hub .mobile-apps-vs-browser-table .mobile-compare-mid::before {
  flex-shrink: 0;
  width: 1.125rem;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 700;
  text-align: center;
}

.page-mobile-hub .mobile-apps-vs-browser-table .mobile-compare-yes::before {
  content: "✓";
  color: #16a34a;
}

.page-mobile-hub .mobile-apps-vs-browser-table .mobile-compare-no::before {
  content: "✗";
  color: #94a3b8;
}

.page-mobile-hub .mobile-apps-vs-browser-table .mobile-compare-mid::before {
  content: "–";
  color: #94a3b8;
}

@media (max-width: 900px) {
  .page-mobile-hub .mobile-apps-vs-browser-table thead {
    display: table-header-group;
  }

  .page-mobile-hub .mobile-apps-vs-browser-table tbody tr {
    display: table-row;
    padding: 0;
  }

  .page-mobile-hub .mobile-apps-vs-browser-table td {
    display: table-cell;
    padding: 1rem 1.125rem;
    border-bottom: 1px solid var(--border-light, #e2e8f0);
  }

  .page-mobile-hub .mobile-apps-vs-browser-table td::before {
    content: none;
  }
}

@media (max-width: 640px) {
  .page-mobile-hub #mobile-compare .live-casino-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .page-mobile-hub .mobile-apps-vs-browser-table {
    min-width: 36rem;
  }

  .page-mobile-hub .mobile-apps-vs-browser-table th,
  .page-mobile-hub .mobile-apps-vs-browser-table td {
    padding: 0.9375rem 1rem;
  }
}

/* --------------------------------------------------------------------------
   Slots hub (.page-slots-hub)
   -------------------------------------------------------------------------- */
.page-slots-hub section.malaysia-section:not(.container) {
  padding-top: 0;
  padding-bottom: var(--section-gap);
}

.page-slots-hub #slot-listing-meta {
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.page-slots-hub .slot-best-slots-hero {
  margin: 1.5rem 0 1.75rem;
}

.page-slots-hub .slot-best-slots-hero__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg, 12px);
}

.page-slots-hub .slot-table__provider {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted, #64748b);
  margin-top: 0.25rem;
}

.page-slots-hub .slot-editors-choice__panel {
  background: linear-gradient(180deg, rgba(51, 190, 179, 0.08) 0%, rgba(248, 250, 252, 0.95) 100%);
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
}

.page-slots-hub .slot-editors-choice__panel>h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 1.25;
  text-align: center;
}

.page-slots-hub .slot-editors-choice__intro {
  margin-bottom: 1.25rem;
  line-height: 1.7;
  color: var(--text-body, #334155);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.page-slots-hub .slot-editors-choice__intro p {
  margin: 0;
}

.page-slots-hub .slot-editors-choice__hero {
  margin: 0 0 1.5rem;
}

.page-slots-hub .slot-editors-choice__hero-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg, 12px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.page-slots-hub .slot-editors-choice__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.page-slots-hub .slot-editors-choice__card {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  min-height: 7.5rem;
  height: 100%;
  padding: 1.125rem 1.25rem 1.25rem;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.page-slots-hub .slot-editors-choice__card:hover {
  border-color: rgba(51, 190, 179, 0.35);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
  transform: translateY(-1px);
}

.page-slots-hub .slot-editors-choice__card-head {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-height: 2.25rem;
}

.page-slots-hub .slot-editors-choice__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.625rem;
  background: rgba(51, 190, 179, 0.14);
  color: var(--primary, #33beb3);
}

.page-slots-hub .slot-editors-choice__card-icon i,
.page-slots-hub .slot-editors-choice__card-icon svg {
  width: 1.125rem;
  height: 1.125rem;
  stroke-width: 2.15;
}

.page-slots-hub .slot-editors-choice__card-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25;
  color: #1e3a5f;
  letter-spacing: -0.01em;
}

.page-slots-hub .slot-editors-choice__card-value {
  padding-left: calc(2.25rem + 0.625rem);
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #64748b;
}

.page-slots-hub .slot-editors-choice__card-text {
  display: block;
}

.page-slots-hub .slot-editors-choice__card--casino .slot-editors-choice__card-value {
  padding-left: calc(2.25rem + 0.625rem);
  padding-right: 0.25rem;
}

.page-slots-hub .slot-editors-choice__casino-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 11rem;
  min-height: 2.75rem;
  padding: 0.5rem 1.125rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary) 0%, #2aa197 100%);
  box-shadow: 0 2px 8px rgba(51, 190, 179, 0.35);
  text-decoration: none;
  transition:
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.page-slots-hub .slot-editors-choice__casino-pill:hover,
.page-slots-hub .slot-editors-choice__casino-pill:focus-visible {
  background: linear-gradient(135deg, var(--primary-hover) 0%, #238b82 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(51, 190, 179, 0.42);
}

.page-slots-hub .slot-editors-choice__casino-logo {
  display: block;
  width: auto;
  max-width: 4.25rem;
  max-height: 1.5rem;
  object-fit: contain;
}

.page-slots-hub .slot-editors-choice__casino-name {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.page-slots-hub .slot-editors-choice__casino-pill:has(.slot-editors-choice__casino-logo) .slot-editors-choice__casino-name {
  display: none;
}

.page-slots-hub .slot-editors-choice__card--license {
  background: rgba(51, 190, 179, 0.08);
  border-color: rgba(51, 190, 179, 0.22);
}

.page-slots-hub .slot-editors-choice__card--license .slot-editors-choice__card-icon {
  background: rgba(51, 190, 179, 0.18);
}

.page-slots-hub .slot-editors-choice__license-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.875rem;
  border-radius: 999px;
  background: var(--primary, #33beb3);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.page-slots-hub .slot-editors-choice__pro-tip {
  margin: 0.75rem 0 1.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-light, #e2e8f0);
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text-muted, #64748b);
  font-style: italic;
}

.page-slots-hub .slot-editors-choice__pro-tip p {
  margin: 0;
}

.page-slots-hub .slot-editors-choice__pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light, #e2e8f0);
}

.page-slots-hub .slot-editors-choice__list-title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 1rem;
  padding-bottom: 0.625rem;
  border-bottom: 2px solid rgba(51, 190, 179, 0.35);
  color: #1e3a5f;
}

.page-slots-hub .slot-editors-choice__list {
  margin: 0;
  padding-left: 1.125rem;
  line-height: 1.65;
  color: #64748b;
  font-size: 0.875rem;
}

.page-slots-hub .slot-editors-choice__list li+li {
  margin-top: 0.625rem;
}

@media (max-width: 992px) {
  .page-slots-hub .slot-editors-choice__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .page-slots-hub .slot-editors-choice__grid {
    grid-template-columns: 1fr;
  }

  .page-slots-hub .slot-editors-choice__card-value {
    padding-left: 0;
  }

  .page-slots-hub .slot-editors-choice__pros-cons {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .page-slots-hub .slot-editors-choice__panel {
    padding: 1.25rem;
  }
}

.page-slots-hub .slot-top-games-wrap {
  overflow-x: auto;
  margin: 1.75rem 0 0;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 1rem;
  background: var(--bg-card, #fff);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
}

.page-slots-hub .slot-top-games-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.page-slots-hub .slot-top-games-table th,
.page-slots-hub .slot-top-games-table td {
  padding: 1rem 1.125rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light, #e2e8f0);
  vertical-align: middle;
}

.page-slots-hub .slot-top-games-table thead th {
  background: linear-gradient(180deg, #f0f7fa 0%, #e8f4f8 100%);
  padding: 0.875rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #475569;
  line-height: 1.35;
  vertical-align: bottom;
  white-space: normal;
  border-bottom: 2px solid rgba(51, 190, 179, 0.2);
}

.page-slots-hub .slot-top-games-table__th-label {
  display: inline-block;
  max-width: 100%;
  line-height: 1.35;
  letter-spacing: inherit;
  text-wrap: balance;
}

.page-slots-hub .slot-top-games-table__th--game,
.page-slots-hub .slot-top-games-table td:nth-child(1) {
  width: 17%;
}

.page-slots-hub .slot-top-games-table__th--rtp,
.page-slots-hub .slot-top-games-table td:nth-child(2) {
  width: 8%;
  text-align: center;
}

.page-slots-hub .slot-top-games-table__th--feature,
.page-slots-hub .slot-top-games-table td:nth-child(3) {
  width: 16%;
}

.page-slots-hub .slot-top-games-table__th--why,
.page-slots-hub .slot-top-games-table td:nth-child(4) {
  width: 39%;
}

.page-slots-hub .slot-top-games-table__th--play,
.page-slots-hub .slot-top-games-table td:nth-child(5) {
  width: 20%;
  text-align: center;
}

.page-slots-hub .slot-top-games-table__th--rtp,
.page-slots-hub .slot-top-games-table__th--play {
  text-align: center;
}

th.slot-top-games-table__th.slot-top-games-table__th--play {
  text-align: center;
}

.page-slots-hub .slot-top-games-table tbody tr {
  transition: background-color 0.15s ease;
}

.page-slots-hub .slot-top-games-table tbody tr:nth-child(even) {
  background: #f8fcfd;
}

.page-slots-hub .slot-top-games-table tbody tr.slot-top-games__row--highlight,
.page-slots-hub .slot-top-games-table tbody tr:nth-child(4) {
  background: #f0f7fa;
}

.page-slots-hub .slot-top-games-table tbody tr:hover {
  background: rgba(51, 190, 179, 0.08);
}

.page-slots-hub .slot-top-games-table tbody tr:last-child td {
  border-bottom: none;
}

.page-slots-hub .slot-top-games__cell--rtp {
  text-align: center;
}

.page-slots-hub .slot-top-games__cell--play {
  text-align: center;
}

.page-slots-hub .slot-top-games__game {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.page-slots-hub .slot-top-games__rank {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--primary, #33beb3);
  font-size: 0.875rem;
  line-height: 1.45;
}

.page-slots-hub .slot-top-games__game-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.page-slots-hub .slot-top-games__title {
  display: block;
  font-weight: 700;
  color: var(--text-main, #0f172a);
  font-size: 0.9375rem;
  line-height: 1.35;
}

.page-slots-hub .slot-top-games__provider {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #94a3b8;
  line-height: 1.3;
}

.page-slots-hub .slot-top-games__rtp {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f766e;
  background: rgba(51, 190, 179, 0.12);
  border: 1px solid rgba(51, 190, 179, 0.22);
  white-space: nowrap;
}

.page-slots-hub .slot-top-games__feature {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-main, #334155);
  line-height: 1.45;
}

.page-slots-hub .slot-top-games__why {
  display: block;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-secondary, #475569);
  max-width: 28rem;
}

.page-slots-hub .slot-top-games__play-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 0;
  transition: opacity 0.15s ease;
}

.page-slots-hub .slot-top-games__play-link:hover {
  opacity: 0.82;
}

.page-slots-hub .slot-top-games__play-logo {
  display: inline-block;
  font-size: 0;
  line-height: 0;
  color: transparent;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 7.5rem;
  height: 2.5rem;
  vertical-align: middle;
}

.page-slots-hub .slot-top-games__play-text {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary, #33beb3);
  line-height: 1.3;
}

@media (max-width: 900px) {
  .page-slots-hub .slot-top-games-wrap {
    overflow: visible;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    margin-top: 1.25rem;
  }

  .page-slots-hub .slot-top-games-table {
    display: block;
  }

  .page-slots-hub .slot-top-games-table thead {
    display: none;
  }

  .page-slots-hub .slot-top-games-table tbody {
    display: grid;
    gap: 1rem;
  }

  .page-slots-hub .slot-top-games-table tbody tr {
    display: block;
    padding: 1rem 1.125rem;
    border: 1px solid var(--border-light, #e2e8f0);
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
  }

  .page-slots-hub .slot-top-games-table tbody tr:nth-child(even),
  .page-slots-hub .slot-top-games-table tbody tr.slot-top-games__row--highlight,
  .page-slots-hub .slot-top-games-table tbody tr:nth-child(4) {
    background: #fff;
  }

  .page-slots-hub .slot-top-games-table tbody tr:hover {
    background: #fff;
    box-shadow: 0 4px 14px rgba(51, 190, 179, 0.12);
  }

  .page-slots-hub .slot-top-games-table tbody tr:last-child {
    border-bottom: 1px solid var(--border-light, #e2e8f0);
  }

  .page-slots-hub .slot-top-games-table td {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem 0;
    border: none;
    width: 100%;
  }

  .page-slots-hub .slot-top-games-table td::before {
    content: attr(data-label);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748b;
    flex-shrink: 0;
    max-width: 42%;
    padding-top: 0.15rem;
  }

  .page-slots-hub .slot-top-games__cell--game {
    display: block;
    padding: 0 0 0.875rem;
    margin-bottom: 0.625rem;
    border-bottom: 1px solid var(--border-light, #e2e8f0);
  }

  .page-slots-hub .slot-top-games__cell--game::before {
    display: none;
  }

  .page-slots-hub .slot-top-games__why {
    max-width: none;
    text-align: right;
  }

  .page-slots-hub .slot-top-games__cell--play {
    display: block;
    padding-top: 0.75rem;
    margin-top: 0.25rem;
    border-top: 1px dashed rgba(51, 190, 179, 0.25);
  }

  .page-slots-hub .slot-top-games__cell--play::before {
    display: none;
  }

  .page-slots-hub .slot-top-games__play-link,
  .page-slots-hub .slot-top-games__play-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 3rem;
    padding: 0.625rem 1rem;
    border-radius: 0.75rem;
    text-decoration: none;
  }

  .page-slots-hub .slot-top-games__play-link {
    background: #fff;
    border: 1px solid rgba(51, 190, 179, 0.35);
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
  }

  .page-slots-hub .slot-top-games__play-link:hover {
    opacity: 1;
    border-color: var(--primary, #33beb3);
    box-shadow: 0 2px 8px rgba(51, 190, 179, 0.18);
  }

  .page-slots-hub .slot-top-games__play-link .slot-top-games__play-logo {
    width: 7.5rem;
    height: 2.25rem;
  }

  .page-slots-hub .slot-top-games__play-text {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--primary, #33beb3);
    background: rgba(51, 190, 179, 0.1);
    border: 1px solid rgba(51, 190, 179, 0.25);
  }
}

/* Slots hub — rating criteria cards */
.page-slots-hub #slot-rating-intro,
.page-slots-hub #slot-rating-outro {

  line-height: 1.7;
  color: var(--text-secondary, #475569);
}

.page-slots-hub #slot-rating-intro {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.page-slots-hub #slot-rating-outro {
  margin-top: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0;
  font-size: 0.9375rem;
}

.page-slots-hub .slot-criteria-grid {
  gap: clamp(0.875rem, 2vw, 1.25rem);
  margin: 0;
  align-items: stretch;
}

.page-slots-hub .slot-criteria-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.35rem 1.25rem 1.4rem;
  background: linear-gradient(180deg, #fff 0%, #f8fcfd 100%);
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 1rem;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 4px 14px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.page-slots-hub .slot-criteria-card:hover {
  border-color: color-mix(in srgb, var(--primary) 35%, var(--border-light));
  box-shadow:
    0 6px 20px rgba(15, 23, 42, 0.08),
    0 2px 6px rgba(51, 190, 179, 0.12);
  transform: translateY(-2px);
}

.page-slots-hub .slot-criteria-card__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}

.page-slots-hub .slot-criteria-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(51, 190, 179, 0.16) 0%, rgba(51, 190, 179, 0.08) 100%);
  color: var(--primary, #33beb3);
  border: 1px solid rgba(51, 190, 179, 0.18);
  flex-shrink: 0;
}

.page-slots-hub .slot-criteria-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.page-slots-hub .slot-criteria-card .live-casino-criteria-card__title {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1e3a5f;
}

.page-slots-hub .slot-criteria-card .live-casino-criteria-card__body {
  flex: 1;
  margin: 0;
  padding-top: 0.875rem;
  border-top: 1px solid rgba(51, 190, 179, 0.12);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary, #475569);
}

@media (max-width: 900px) {
  .page-slots-hub .slot-criteria-grid {
    grid-template-columns: 1fr;
  }

  .page-slots-hub .slot-criteria-card__head {
    align-items: flex-start;
  }
}

/* Slots hub — choose checklist */
.page-slots-hub #slot-checklist-intro {

  line-height: 1.7;
  color: var(--text-secondary, #475569);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.page-slots-hub #slot-checklist-outro {
  width: 100%;
  max-width: none;
  line-height: 1.7;
  color: var(--text-secondary, #475569);
  margin-top: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0;
  font-size: 0.9375rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--primary, #33beb3);
  background: rgba(51, 190, 179, 0.06);
  border-radius: 0 0.75rem 0.75rem 0;
  box-sizing: border-box;
}

.page-slots-hub .slot-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.875rem, 2vw, 1.125rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-slots-hub .slot-checklist__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.15rem 1.25rem 1.2rem;
  background: linear-gradient(180deg, #fff 0%, #f8fcfd 100%);
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 1rem;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 4px 14px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.page-slots-hub .slot-checklist__step:hover {
  border-color: color-mix(in srgb, var(--primary) 35%, var(--border-light));
  box-shadow:
    0 6px 20px rgba(15, 23, 42, 0.08),
    0 2px 6px rgba(51, 190, 179, 0.12);
  transform: translateY(-2px);
}

.page-slots-hub .slot-checklist__mark {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  width: 2.75rem;
}

.page-slots-hub .slot-checklist__step-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary, #33beb3);
  line-height: 1;
  white-space: nowrap;
}

.page-slots-hub .slot-checklist__num-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary, #33beb3) 0%, #2aa89f 100%);
  box-shadow: 0 2px 10px rgba(51, 190, 179, 0.35);
}

.page-slots-hub .slot-checklist__num {
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.page-slots-hub .slot-checklist__head-main {
  flex: none;
  width: 100%;
  min-width: 0;
  padding-right: 3.25rem;
}

.page-slots-hub .slot-checklist__body {
  flex: none;
  width: 100%;
  min-width: 0;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-secondary, #475569);
}

.page-slots-hub .slot-checklist__icon {
  position: absolute;
  top: 1.15rem;
  right: 1.25rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(51, 190, 179, 0.14) 0%, rgba(51, 190, 179, 0.06) 100%);
  color: var(--primary, #33beb3);
  border: 1px solid rgba(51, 190, 179, 0.18);
}

.page-slots-hub .slot-checklist__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.page-slots-hub .slot-checklist__title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1e3a5f;
}

@media (max-width: 768px) {
  .page-slots-hub .slot-checklist {
    grid-template-columns: 1fr;
  }

  .page-slots-hub .slot-checklist__mark {
    flex-direction: row;
    align-items: center;
    gap: 0.625rem;
    width: auto;
  }

  .page-slots-hub .slot-checklist__head-main {
    padding-right: 3.25rem;
  }

  .page-slots-hub .slot-checklist__body {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(51, 190, 179, 0.12);
  }
}

/* Slots hub — trending features */
.page-slots-hub #slot-trending-intro {

  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
  color: var(--text-secondary, #475569);
}

.page-slots-hub .slot-trending-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.875rem, 2vw, 1.25rem);
  align-items: stretch;
}

.page-slots-hub .slot-trending-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.35rem 1.25rem 1.4rem;
  background: linear-gradient(180deg, #fff 0%, #f8fcfd 100%);
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 1rem;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 4px 14px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.page-slots-hub .slot-trending-card:hover {
  border-color: color-mix(in srgb, var(--primary) 35%, var(--border-light));
  box-shadow:
    0 6px 20px rgba(15, 23, 42, 0.08),
    0 2px 6px rgba(51, 190, 179, 0.12);
  transform: translateY(-2px);
}

.page-slots-hub .slot-trending-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(51, 190, 179, 0.16) 0%, rgba(51, 190, 179, 0.08) 100%);
  color: var(--primary, #33beb3);
  border: 1px solid rgba(51, 190, 179, 0.18);
}

.page-slots-hub .slot-trending-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.page-slots-hub .slot-trending-card__title {
  margin: 0 0 0.625rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1e3a5f;
}

.page-slots-hub .slot-trending-card__body {
  flex: 1;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary, #475569);
}

.page-slots-hub .slot-trending-card__body a {
  font-weight: 600;
  color: var(--primary, #33beb3);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.page-slots-hub .slot-trending-card__body a:hover {
  color: #2aa89f;
}

@media (max-width: 900px) {
  .page-slots-hub .slot-trending-grid {
    grid-template-columns: 1fr;
  }
}

/* Slots hub — mechanics cards (shared feature card pattern) */
.page-slots-hub #slot-mechanics-intro {

  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
  color: var(--text-secondary, #475569);
}

.page-slots-hub .slot-mechanics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.875rem, 2vw, 1.25rem);
  align-items: stretch;
}

.page-slots-hub .slot-mechanics-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.35rem 1.25rem 1.4rem;
  background: linear-gradient(180deg, #fff 0%, #f8fcfd 100%);
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 1rem;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 4px 14px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.page-slots-hub .slot-mechanics-card:hover {
  border-color: color-mix(in srgb, var(--primary) 35%, var(--border-light));
  box-shadow:
    0 6px 20px rgba(15, 23, 42, 0.08),
    0 2px 6px rgba(51, 190, 179, 0.12);
  transform: translateY(-2px);
}

.page-slots-hub .slot-mechanics-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(51, 190, 179, 0.16) 0%, rgba(51, 190, 179, 0.08) 100%);
  color: var(--primary, #33beb3);
  border: 1px solid rgba(51, 190, 179, 0.18);
}

.page-slots-hub .slot-mechanics-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.page-slots-hub .slot-mechanics-card__title {
  margin: 0 0 0.625rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1e3a5f;
}

.page-slots-hub .slot-mechanics-card__body {
  flex: 1;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary, #475569);
}

@media (max-width: 900px) {
  .page-slots-hub .slot-mechanics-grid {
    grid-template-columns: 1fr;
  }
}

/* Slots hub — slot variants (2×2 grid) */
.page-slots-hub #slot-variants-intro {

  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
  color: var(--text-secondary, #475569);
}

.page-slots-hub .slot-variants-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.875rem, 2vw, 1.125rem);
  align-items: stretch;
}

.page-slots-hub .slot-variants-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.35rem 1.25rem 1.4rem;
  background: linear-gradient(180deg, #fff 0%, #f8fcfd 100%);
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 1rem;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 4px 14px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.page-slots-hub .slot-variants-card:hover {
  border-color: color-mix(in srgb, var(--primary) 35%, var(--border-light));
  box-shadow:
    0 6px 20px rgba(15, 23, 42, 0.08),
    0 2px 6px rgba(51, 190, 179, 0.12);
  transform: translateY(-2px);
}

.page-slots-hub .slot-variants-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(51, 190, 179, 0.16) 0%, rgba(51, 190, 179, 0.08) 100%);
  color: var(--primary, #33beb3);
  border: 1px solid rgba(51, 190, 179, 0.18);
}

.page-slots-hub .slot-variants-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.page-slots-hub .slot-variants-card__title {
  margin: 0 0 0.625rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1e3a5f;
}

.page-slots-hub .slot-variants-card__body {
  flex: 1;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary, #475569);
}

@media (max-width: 768px) {
  .page-slots-hub .slot-variants-grid {
    grid-template-columns: 1fr;
  }
}

/* Slots hub — providers table */
.page-slots-hub .slot-providers-wrap {
  overflow-x: auto;
  margin: 1.75rem 0 1rem;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 1rem;
  background: var(--bg-card, #fff);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
}

.page-slots-hub .slot-providers-table {
  width: 100%;
  min-width: 52rem;
  table-layout: auto;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.page-slots-hub .slot-providers-table th,
.page-slots-hub .slot-providers-table td {
  padding: 0.9375rem 1.125rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light, #e2e8f0);
  vertical-align: middle;
}

.page-slots-hub .slot-providers-table thead th {
  background: linear-gradient(180deg, #f0f7fa 0%, #e8f4f8 100%);
  padding: 0.875rem 1.125rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #475569;
  line-height: 1.2;
  white-space: nowrap;
  border-bottom: 2px solid rgba(51, 190, 179, 0.2);
}

.page-slots-hub .slot-providers-table__th--provider,
.page-slots-hub .slot-providers-table td:nth-child(1) {
  min-width: 9rem;
}

.page-slots-hub .slot-providers-table__th--known,
.page-slots-hub .slot-providers-table td:nth-child(2) {
  min-width: 14rem;
}

.page-slots-hub .slot-providers-table__th--slot,
.page-slots-hub .slot-providers-table td:nth-child(3) {
  min-width: 11rem;
  white-space: nowrap;
}

.page-slots-hub .slot-providers-table__th--play,
.page-slots-hub .slot-providers-table td:nth-child(4) {
  width: 1%;
  min-width: 9rem;
  text-align: center;
  white-space: nowrap;
}

.page-slots-hub .slot-providers-table tbody tr:nth-child(even) {
  background: #f8fcfd;
}

.page-slots-hub .slot-providers-table tbody tr:hover {
  background: rgba(51, 190, 179, 0.08);
}

.page-slots-hub .slot-providers-table tbody tr:last-child td {
  border-bottom: none;
}

.page-slots-hub .slot-providers__provider {
  display: block;
  font-weight: 700;
  color: var(--text-main, #0f172a);
  font-size: 0.9375rem;
}

.page-slots-hub .slot-providers__known,
.page-slots-hub .slot-providers__slot {
  display: block;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-secondary, #475569);
}

.page-slots-hub .slot-providers__slot {
  font-weight: 600;
  color: var(--text-main, #334155);
}

.page-slots-hub .slot-providers__cell--play {
  text-align: center;
}

@media (max-width: 900px) {
  .page-slots-hub .slot-providers-wrap {
    overflow: visible;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .page-slots-hub .slot-providers-table {
    display: block;
    min-width: 0;
  }

  .page-slots-hub .slot-providers-table thead {
    display: none;
  }

  .page-slots-hub .slot-providers-table tbody {
    display: grid;
    gap: 1rem;
  }

  .page-slots-hub .slot-providers-table tbody tr {
    display: block;
    padding: 1rem 1.125rem;
    border: 1px solid var(--border-light, #e2e8f0);
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
  }

  .page-slots-hub .slot-providers-table tbody tr:nth-child(even) {
    background: #fff;
  }

  .page-slots-hub .slot-providers-table td {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem 0;
    border: none;
    white-space: normal;
  }

  .page-slots-hub .slot-providers-table td::before {
    content: attr(data-label);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748b;
    flex-shrink: 0;
    max-width: 42%;
    padding-top: 0.15rem;
  }

  .page-slots-hub .slot-providers__cell--provider {
    display: block;
    padding: 0 0 0.875rem;
    margin-bottom: 0.625rem;
    border-bottom: 1px solid var(--border-light, #e2e8f0);
  }

  .page-slots-hub .slot-providers__cell--provider::before {
    display: none;
  }

  .page-slots-hub .slot-providers__cell--play {
    display: block;
    padding-top: 0.75rem;
    margin-top: 0.25rem;
    border-top: 1px dashed rgba(51, 190, 179, 0.25);
  }

  .page-slots-hub .slot-providers__cell--play::before {
    display: none;
  }
}

/* Slots hub — player tips quote card */
.page-slots-hub .slot-player-tips-section h2 {
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.page-slots-hub .slot-player-tips__card {
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3.5vw, 2.25rem);
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 1rem;
  box-shadow:
    0 10px 28px rgba(15, 23, 42, 0.06),
    0 2px 8px rgba(15, 23, 42, 0.04);
}

.page-slots-hub .slot-player-tips__text {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
  color: #334155;
}

.page-slots-hub .slot-player-tips__text strong {
  font-weight: 700;
  font-style: italic;
}

/* Slots hub — responsible play */
.page-slots-hub .slot-responsible-section {
  padding-top: clamp(2rem, 4vw, 2.75rem);
  padding-bottom: clamp(2.25rem, 4.5vw, 3rem);
  border-bottom: 1px solid var(--border-light, #e2e8f0);
}

.page-slots-hub .slot-responsible-section h2 {
  margin: 0 0 clamp(0.875rem, 2vw, 1.125rem);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #0f172a;
}

.page-slots-hub .slot-responsible__intro {

  margin: 0 0 clamp(1.75rem, 3.5vw, 2.25rem);
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  line-height: 1.7;
  color: var(--text-secondary, #475569);
}

.page-slots-hub .slot-responsible__block {

  margin-bottom: clamp(1.5rem, 3vw, 1.875rem);
}

.page-slots-hub .slot-responsible__block:last-child {
  margin-bottom: 0;
}

.page-slots-hub .slot-responsible__block h3 {
  margin: 0 0 0.625rem;
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: #0f172a;
}

.page-slots-hub .slot-responsible__block p {
  margin: 0;
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  line-height: 1.7;
  color: #64748b;
}

/* --------------------------------------------------------------------------
   Blackjack hub (.page-blackjack-hub) — reuses live-casino / slots tokens
   -------------------------------------------------------------------------- */
.page-blackjack-hub section.malaysia-section:not(.container) {
  padding-top: 0;
}

.page-blackjack-hub #blackjack-listing-meta {
  margin-bottom: 0;
}

.page-blackjack-hub .blackjack-section-lead {
  margin: 0 0 1.5rem;
  font-size: clamp(0.9375rem, 1.45vw, 1.0625rem);
  line-height: 1.75;
  color: var(--text-secondary, #475569);
}

.page-blackjack-hub .blackjack-section-footnote {
  margin: 1.5rem 0 0;
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  line-height: 1.7;
  color: var(--text-muted, #64748b);
}

/* Criteria cards — matches slots hub polish */
.page-blackjack-hub .blackjack-criteria-grid {
  gap: clamp(0.875rem, 2vw, 1.25rem);
  margin: 0;
  align-items: stretch;
}

.page-blackjack-hub .blackjack-criteria-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.35rem 1.25rem 1.4rem;
  background: linear-gradient(180deg, #fff 0%, #f8fcfd 100%);
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 1rem;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 4px 14px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.page-blackjack-hub .blackjack-criteria-card:hover {
  border-color: color-mix(in srgb, var(--primary) 35%, var(--border-light));
  box-shadow:
    0 6px 20px rgba(15, 23, 42, 0.08),
    0 2px 6px rgba(51, 190, 179, 0.12);
  transform: translateY(-2px);
}

.page-blackjack-hub .blackjack-criteria-card .slot-criteria-card__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}

.page-blackjack-hub .blackjack-criteria-card .slot-criteria-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(51, 190, 179, 0.16) 0%, rgba(51, 190, 179, 0.08) 100%);
  color: var(--primary, #33beb3);
  border: 1px solid rgba(51, 190, 179, 0.18);
  flex-shrink: 0;
}

.page-blackjack-hub .blackjack-criteria-card .slot-criteria-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.page-blackjack-hub .blackjack-criteria-card .live-casino-criteria-card__title {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1e3a5f;
}

.page-blackjack-hub .blackjack-criteria-card .live-casino-criteria-card__body {
  flex: 1;
  margin: 0;
  padding-top: 0.875rem;
  border-top: 1px solid rgba(51, 190, 179, 0.12);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary, #475569);
}

/* Key features grid */
.page-blackjack-hub .blackjack-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.875rem, 2vw, 1.25rem);
  margin-top: 0.25rem;
}

.page-blackjack-hub .blackjack-feature-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.35rem 1.25rem 1.4rem;
  background: linear-gradient(180deg, #fff 0%, #f8fcfd 100%);
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 1rem;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 4px 14px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.page-blackjack-hub .blackjack-feature-card:hover {
  border-color: color-mix(in srgb, var(--primary) 35%, var(--border-light));
  box-shadow:
    0 6px 20px rgba(15, 23, 42, 0.08),
    0 2px 6px rgba(51, 190, 179, 0.12);
  transform: translateY(-2px);
}

.page-blackjack-hub .blackjack-feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.625rem;
  height: 2.625rem;
  margin-bottom: 0.875rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(51, 190, 179, 0.16) 0%, rgba(51, 190, 179, 0.08) 100%);
  color: var(--primary, #33beb3);
  border: 1px solid rgba(51, 190, 179, 0.18);
}

.page-blackjack-hub .blackjack-feature-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.page-blackjack-hub .blackjack-feature-card__title {
  margin: 0 0 0.625rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1e3a5f;
}

.page-blackjack-hub .blackjack-feature-card__body {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary, #475569);
}

.page-blackjack-hub .slot-editors-choice__panel {
  background: linear-gradient(180deg, rgba(51, 190, 179, 0.08) 0%, rgba(248, 250, 252, 0.95) 100%);
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
}

.page-blackjack-hub .slot-editors-choice__panel>h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 1.25;
  text-align: center;
  font-weight: 700;
  color: #0f172a;
}

.page-blackjack-hub .slot-editors-choice__intro {
  margin-bottom: 1.25rem;
  line-height: 1.7;
  color: var(--text-body, #334155);
  text-align: center;
}

.page-blackjack-hub .slot-editors-choice__intro p {
  margin-bottom: 10px;
}

.page-blackjack-hub .slot-editors-choice__intro p:last-child {
  margin-bottom: 0;
}

.page-blackjack-hub .slot-editors-choice__hero {
  margin: 0 0 1.5rem;
}

.page-blackjack-hub .slot-editors-choice__hero-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg, 12px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.page-blackjack-hub .slot-editors-choice__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.page-blackjack-hub .slot-editors-choice__card {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  min-height: 7.5rem;
  height: 100%;
  padding: 1.125rem 1.25rem 1.25rem;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.page-blackjack-hub .slot-editors-choice__card:hover {
  border-color: rgba(51, 190, 179, 0.35);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
  transform: translateY(-1px);
}

.page-blackjack-hub .slot-editors-choice__card-head {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-height: 2.25rem;
}

.page-blackjack-hub .slot-editors-choice__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.625rem;
  background: rgba(51, 190, 179, 0.14);
  color: var(--primary, #33beb3);
}

.page-blackjack-hub .slot-editors-choice__card-icon i,
.page-blackjack-hub .slot-editors-choice__card-icon svg {
  width: 1.125rem;
  height: 1.125rem;
  stroke-width: 2.15;
}

.page-blackjack-hub .slot-editors-choice__card-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25;
  color: #1e3a5f;
  letter-spacing: -0.01em;
}

.page-blackjack-hub .slot-editors-choice__card-value {
  padding-left: calc(2.25rem + 0.625rem);
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #64748b;
}

.page-blackjack-hub .slot-editors-choice__card-text {
  display: block;
}

.page-blackjack-hub .slot-editors-choice__card--casino .slot-editors-choice__card-value {
  padding-left: calc(2.25rem + 0.625rem);
  padding-right: 0.25rem;
}

.page-blackjack-hub .slot-editors-choice__casino-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 11rem;
  min-height: 2.75rem;
  padding: 0.5rem 1.125rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary) 0%, #2aa197 100%);
  box-shadow: 0 2px 8px rgba(51, 190, 179, 0.35);
  text-decoration: none;
  transition:
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.page-blackjack-hub .slot-editors-choice__casino-pill:hover,
.page-blackjack-hub .slot-editors-choice__casino-pill:focus-visible {
  background: linear-gradient(135deg, var(--primary-hover) 0%, #238b82 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(51, 190, 179, 0.42);
}

.page-blackjack-hub .slot-editors-choice__casino-logo {
  display: block;
  width: auto;
  max-width: 4.25rem;
  max-height: 1.5rem;
  object-fit: contain;
}

.page-blackjack-hub .slot-editors-choice__casino-name {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.page-blackjack-hub .slot-editors-choice__casino-pill:has(.slot-editors-choice__casino-logo) .slot-editors-choice__casino-name {
  display: none;
}

.page-blackjack-hub .slot-editors-choice__card--license {
  background: rgba(51, 190, 179, 0.08);
  border-color: rgba(51, 190, 179, 0.22);
}

.page-blackjack-hub .slot-editors-choice__card--license .slot-editors-choice__card-icon {
  background: rgba(51, 190, 179, 0.18);
}

.page-blackjack-hub .slot-editors-choice__license-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.875rem;
  border-radius: 999px;
  background: var(--primary, #33beb3);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.page-blackjack-hub .slot-editors-choice__pro-tip {
  margin: 0.75rem 0 1.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-light, #e2e8f0);
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text-muted, #64748b);
  font-style: italic;
}

.page-blackjack-hub .slot-editors-choice__pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light, #e2e8f0);
}

.page-blackjack-hub .slot-editors-choice__list-title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 1rem;
  padding-bottom: 0.625rem;
  border-bottom: 2px solid rgba(51, 190, 179, 0.35);
  color: #1e3a5f;
}

.page-blackjack-hub .slot-editors-choice__list {
  margin: 0;
  padding-left: 1.125rem;
  line-height: 1.65;
  color: #64748b;
  font-size: 0.875rem;
}

.page-blackjack-hub .slot-editors-choice__list li+li {
  margin-top: 0.625rem;
}

@media (max-width: 992px) {
  .page-blackjack-hub .slot-editors-choice__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .page-blackjack-hub .slot-editors-choice__grid {
    grid-template-columns: 1fr;
  }

  .page-blackjack-hub .slot-editors-choice__card-value {
    padding-left: 0;
  }

  .page-blackjack-hub .slot-editors-choice__pros-cons {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .page-blackjack-hub .slot-editors-choice__panel {
    padding: 1.25rem;
  }
}

.page-blackjack-hub .slot-top-games-wrap {
  overflow-x: auto;
  margin: 1.75rem 0 0;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 1rem;
  background: var(--bg-card, #fff);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
}

.page-blackjack-hub .slot-top-games-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.page-blackjack-hub .slot-top-games-table th,
.page-blackjack-hub .slot-top-games-table td {
  padding: 1rem 1.125rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light, #e2e8f0);
  vertical-align: middle;
}

.page-blackjack-hub .slot-top-games-table thead th {
  background: linear-gradient(180deg, #f0f7fa 0%, #e8f4f8 100%);
  padding: 0.875rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #475569;
  line-height: 1.35;
  vertical-align: bottom;
  white-space: normal;
  border-bottom: 2px solid rgba(51, 190, 179, 0.2);
}

.page-blackjack-hub .slot-top-games-table__th-label {
  display: inline-block;
  max-width: 100%;
  line-height: 1.35;
  letter-spacing: inherit;
  text-wrap: balance;
}

.page-blackjack-hub #blackjack-variants-table th:nth-child(1),
.page-blackjack-hub #blackjack-variants-table td:nth-child(1) {
  width: 20%;
}

.page-blackjack-hub #blackjack-variants-table th:nth-child(2),
.page-blackjack-hub #blackjack-variants-table td:nth-child(2) {
  width: 10%;
  text-align: center;
}

.page-blackjack-hub #blackjack-variants-table th:nth-child(3),
.page-blackjack-hub #blackjack-variants-table td:nth-child(3) {
  width: 52%;
}

.page-blackjack-hub #blackjack-variants-table th:nth-child(4),
.page-blackjack-hub #blackjack-variants-table td:nth-child(4) {
  width: 18%;
  text-align: center;
}

.page-blackjack-hub #blackjack-variants-table th:nth-child(2) {
  text-align: center;
}

.page-blackjack-hub .slot-top-games-table tbody tr {
  transition: background-color 0.15s ease;
}

.page-blackjack-hub .slot-top-games-table tbody tr:nth-child(even) {
  background: #f8fcfd;
}

.page-blackjack-hub .slot-top-games-table tbody tr:hover {
  background: rgba(51, 190, 179, 0.08);
}

.page-blackjack-hub .slot-top-games-table tbody tr:last-child td {
  border-bottom: none;
}

.page-blackjack-hub .slot-top-games__cell--rtp {
  text-align: center;
}

.page-blackjack-hub .slot-top-games__cell--play {
  text-align: center;
}

.page-blackjack-hub .slot-top-games__game {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.page-blackjack-hub .slot-top-games__rank {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--primary, #33beb3);
  font-size: 0.875rem;
  line-height: 1.45;
}

.page-blackjack-hub .slot-top-games__game-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.page-blackjack-hub .slot-top-games__title {
  display: block;
  font-weight: 700;
  color: var(--text-main, #0f172a);
  font-size: 0.9375rem;
  line-height: 1.35;
}

.page-blackjack-hub .slot-top-games__provider {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #94a3b8;
  line-height: 1.3;
}

.page-blackjack-hub .slot-top-games__rtp {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f766e;
  background: rgba(51, 190, 179, 0.12);
  border: 1px solid rgba(51, 190, 179, 0.22);
  white-space: nowrap;
}

.page-blackjack-hub .slot-top-games__why {
  display: block;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-secondary, #475569);
}

.page-blackjack-hub .slot-top-games__play-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 0;
  transition: opacity 0.15s ease;
}

.page-blackjack-hub .slot-top-games__play-link:hover,
.page-blackjack-hub .slot-top-games__play-link:focus-visible {
  opacity: 0.82;
}

.page-blackjack-hub .slot-top-games__play-logo {
  display: inline-block;
  font-size: 0;
  line-height: 0;
  color: transparent;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 7.5rem;
  height: 2.5rem;
  vertical-align: middle;
}

.page-blackjack-hub .slot-top-games__play-text {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary, #33beb3);
  line-height: 1.3;
}

.page-blackjack-hub .slot-top-games__play-link:hover .slot-top-games__play-text,
.page-blackjack-hub .slot-top-games__play-link:focus-visible .slot-top-games__play-text {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .page-blackjack-hub .slot-top-games-wrap {
    overflow: visible;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    margin-top: 1.25rem;
  }

  .page-blackjack-hub .slot-top-games-table {
    display: block;
  }

  .page-blackjack-hub .slot-top-games-table thead {
    display: none;
  }

  .page-blackjack-hub .slot-top-games-table tbody {
    display: grid;
    gap: 1rem;
  }

  .page-blackjack-hub .slot-top-games-table tbody tr {
    display: block;
    padding: 1rem 1.125rem;
    border: 1px solid var(--border-light, #e2e8f0);
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
  }

  .page-blackjack-hub .slot-top-games-table tbody tr:nth-child(even) {
    background: #fff;
  }

  .page-blackjack-hub .slot-top-games-table tbody tr:hover {
    background: #fff;
    box-shadow: 0 4px 14px rgba(51, 190, 179, 0.12);
  }

  .page-blackjack-hub .slot-top-games-table td {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem 0;
    border: none;
    width: 100%;
    text-align: left;
  }

  .page-blackjack-hub .slot-top-games-table td::before {
    content: attr(data-label);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748b;
    flex-shrink: 0;
    max-width: 42%;
    padding-top: 0.15rem;
  }

  .page-blackjack-hub .slot-top-games__cell--game {
    display: block;
    padding: 0 0 0.875rem;
    margin-bottom: 0.625rem;
    border-bottom: 1px solid var(--border-light, #e2e8f0);
  }

  .page-blackjack-hub .slot-top-games__cell--game::before {
    display: none;
  }

  .page-blackjack-hub .slot-top-games__cell--rtp {
    text-align: right;
  }

  .page-blackjack-hub .slot-top-games__why {
    text-align: right;
  }

  .page-blackjack-hub .slot-top-games__cell--play {
    display: block;
    padding-top: 0.75rem;
    margin-top: 0.25rem;
    border-top: 1px dashed rgba(51, 190, 179, 0.25);
  }

  .page-blackjack-hub .slot-top-games__cell--play::before {
    display: none;
  }

  .page-blackjack-hub .slot-top-games__play-link,
  .page-blackjack-hub .slot-top-games__play-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 2.75rem;
    padding: 0.625rem 1rem;
    border-radius: 0.75rem;
    text-decoration: none;
  }

  .page-blackjack-hub .slot-top-games__play-link {
    background: #fff;
    border: 1px solid rgba(51, 190, 179, 0.35);
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
  }

  .page-blackjack-hub .slot-top-games__play-link:hover {
    background: rgba(51, 190, 179, 0.06);
  }

  .page-blackjack-hub .slot-top-games__play-link .slot-top-games__play-logo {
    width: 6.5rem;
    height: 2.25rem;
  }
}

.page-blackjack-hub .blackjack-category-picks {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 1.5rem;
}

.page-blackjack-hub .blackjack-category-pick {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 0;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 4px 14px rgba(15, 23, 42, 0.04);
  border-left: 4px solid var(--primary, #33beb3);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.page-blackjack-hub .blackjack-category-pick:hover {
  box-shadow:
    0 6px 20px rgba(15, 23, 42, 0.08),
    0 2px 6px rgba(51, 190, 179, 0.12);
  transform: translateY(-2px);
}

.page-blackjack-hub .blackjack-category-pick__header {
  margin-bottom: 0;
}

.page-blackjack-hub .blackjack-category-pick__category {
  margin: 0;
  padding: 0.625rem clamp(1.25rem, 2.5vw, 1.5rem);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.35;
  color: #0f766e;
  background: linear-gradient(90deg, rgba(51, 190, 179, 0.16) 0%, rgba(51, 190, 179, 0.04) 100%);
  border-bottom: 1px solid rgba(51, 190, 179, 0.14);
}

.page-blackjack-hub .blackjack-category-pick__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem clamp(1.25rem, 2.5vw, 1.5rem) 0.875rem;
}

.page-blackjack-hub .blackjack-category-pick__logo-link {
  flex-shrink: 0;
  display: block;
  text-decoration: none;
  border-radius: 0.75rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.page-blackjack-hub .blackjack-category-pick__logo-link:hover,
.page-blackjack-hub .blackjack-category-pick__logo-link:focus-visible {
  transform: translateY(-1px);
}

.page-blackjack-hub .blackjack-category-pick__logo-link:focus-visible .blackjack-category-pick__logo-wrap {
  box-shadow: 0 0 0 3px rgba(51, 190, 179, 0.35);
}

.page-blackjack-hub .blackjack-category-pick__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.5rem;
  height: 3.5rem;
  padding: 0.5rem 0.75rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.page-blackjack-hub .blackjack-category-pick__logo-link:hover .blackjack-category-pick__logo-wrap,
.page-blackjack-hub .blackjack-category-pick__logo-link:focus-visible .blackjack-category-pick__logo-wrap {
  border-color: rgba(51, 190, 179, 0.45);
  box-shadow: 0 4px 12px rgba(51, 190, 179, 0.15);
}

.page-blackjack-hub .blackjack-category-pick__logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.page-blackjack-hub .blackjack-category-pick__logo-fallback {
  font-size: 1.375rem;
  font-weight: 800;
  color: #64748b;
}

.page-blackjack-hub .blackjack-category-pick__brand-meta {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  min-width: 0;
}

.page-blackjack-hub .blackjack-category-pick__casino {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
}

.page-blackjack-hub .blackjack-category-pick__body {
  margin-bottom: 1rem;
  padding: 0 clamp(1.25rem, 2.5vw, 1.5rem);
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  line-height: 1.7;
  color: #64748b;
}

.page-blackjack-hub .blackjack-category-pick__body p {
  margin: 0 0 0.75rem;
}

.page-blackjack-hub .blackjack-category-pick__body p:last-child {
  margin-bottom: 0;
}

.page-blackjack-hub .blackjack-category-pick__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1rem;
  margin: 0 clamp(1.25rem, 2.5vw, 1.5rem) 1.125rem;
  padding: 0.875rem 1rem;
  background: rgba(51, 190, 179, 0.05);
  border: 1px solid rgba(51, 190, 179, 0.12);
  border-radius: 0.75rem;
}

.page-blackjack-hub .blackjack-category-pick__spec {
  margin: 0;
}

.page-blackjack-hub .blackjack-category-pick__spec dt {
  margin: 0 0 0.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}

.page-blackjack-hub .blackjack-category-pick__spec dd {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.45;
  color: #1e3a5f;
}

.page-blackjack-hub .blackjack-category-pick__cta-btn {
  display: inline-flex;
  width: auto;
  min-width: 10rem;
  margin: 0 clamp(1.25rem, 2.5vw, 1.5rem) clamp(1.25rem, 2.5vw, 1.5rem);
  justify-content: center;
}

.page-blackjack-hub .blackjack-bonus-category {
  margin-top: 1.5rem;
}

.page-blackjack-hub .blackjack-bonus-category__heading {
  margin: 0 0 0.625rem;
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  font-weight: 700;
  color: #0f172a;
}

.page-blackjack-hub .blackjack-bonus-category__body {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  line-height: 1.7;
  color: #64748b;
}

.page-blackjack-hub .blackjack-bonus-category__body p {
  margin: 0 0 0.75rem;
}

.page-blackjack-hub .blackjack-limits__casino {
  display: inline-flex;
  align-items: center;
}

.page-blackjack-hub .blackjack-limits__logo {
  max-height: 2rem;
  width: auto;
  object-fit: contain;
}

.page-blackjack-hub .blackjack-limits__cta {
  font-weight: 600;
  color: var(--accent, #2563eb);
  text-decoration: none;
  white-space: nowrap;
}

.page-blackjack-hub .blackjack-limits__cta:hover,
.page-blackjack-hub .blackjack-limits__cta:focus-visible {
  text-decoration: underline;
}

.page-blackjack-hub .blackjack-mobile-tips {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  line-height: 1.7;
  color: #64748b;
}

.page-blackjack-hub .blackjack-mobile-tips li {
  margin-bottom: 0.5rem;
}

.page-blackjack-hub .blackjack-rng-live-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
  margin: 1.5rem 0 clamp(1.75rem, 3vw, 2rem);
}

.page-blackjack-hub .blackjack-rng-live-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(1.25rem, 2.5vw, 1.5rem);
  background: linear-gradient(180deg, #fff 0%, #f8fcfd 100%);
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 1rem;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 4px 14px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.page-blackjack-hub .blackjack-rng-live-card:hover {
  border-color: rgba(51, 190, 179, 0.35);
  box-shadow:
    0 6px 20px rgba(15, 23, 42, 0.08),
    0 2px 6px rgba(51, 190, 179, 0.12);
  transform: translateY(-2px);
}

.page-blackjack-hub .blackjack-rng-live-card--rng {
  border-top: 3px solid #6366f1;
}

.page-blackjack-hub .blackjack-rng-live-card--live {
  border-top: 3px solid var(--primary, #33beb3);
}

.page-blackjack-hub .blackjack-rng-live-card__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}

.page-blackjack-hub .blackjack-rng-live-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(51, 190, 179, 0.16) 0%, rgba(51, 190, 179, 0.08) 100%);
  color: var(--primary, #33beb3);
  border: 1px solid rgba(51, 190, 179, 0.18);
}

.page-blackjack-hub .blackjack-rng-live-card--rng .blackjack-rng-live-card__icon {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.14) 0%, rgba(99, 102, 241, 0.06) 100%);
  color: #6366f1;
  border-color: rgba(99, 102, 241, 0.2);
}

.page-blackjack-hub .blackjack-rng-live-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.page-blackjack-hub .blackjack-rng-live-card__title {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  font-weight: 700;
  line-height: 1.35;
  color: #1e3a5f;
}

.page-blackjack-hub .blackjack-rng-live-card__body {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #64748b;
}

.page-blackjack-hub .blackjack-rng-live-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
}

.page-blackjack-hub .blackjack-rng-live-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.page-blackjack-hub .blackjack-rng-live-table th,
.page-blackjack-hub .blackjack-rng-live-table td {
  padding: 1rem 1.125rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light, #e2e8f0);
  vertical-align: middle;
}

.page-blackjack-hub .blackjack-rng-live-table thead th {
  background: linear-gradient(180deg, #f0f7fa 0%, #e8f4f8 100%);
  padding: 0.875rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #475569;
  line-height: 1.35;
  border-bottom: 2px solid rgba(51, 190, 179, 0.2);
}

.page-blackjack-hub .blackjack-rng-live-table__th--aspect {
  width: 22%;
}

.page-blackjack-hub .blackjack-rng-live-table__th--rng,
.page-blackjack-hub .blackjack-rng-live-table__th--live {
  width: 39%;
}

.page-blackjack-hub .blackjack-rng-live-table__th--rng {
  color: #4338ca;
}

.page-blackjack-hub .blackjack-rng-live-table__th--live {
  color: #0f766e;
}

.page-blackjack-hub .blackjack-rng-live-table tbody tr {
  transition: background-color 0.15s ease;
}

.page-blackjack-hub .blackjack-rng-live-table tbody tr:nth-child(even) {
  background: #f8fcfd;
}

.page-blackjack-hub .blackjack-rng-live-table tbody tr:hover {
  background: rgba(51, 190, 179, 0.08);
}

.page-blackjack-hub .blackjack-rng-live-table tbody tr:last-child td {
  border-bottom: none;
}

.page-blackjack-hub .blackjack-rng-live-table__aspect-inner {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.page-blackjack-hub .blackjack-rng-live-table__aspect-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: rgba(51, 190, 179, 0.12);
  color: var(--primary, #33beb3);
}

.page-blackjack-hub .blackjack-rng-live-table__aspect-icon svg {
  width: 1rem;
  height: 1rem;
}

.page-blackjack-hub .blackjack-rng-live-table__aspect-label {
  font-weight: 700;
  color: #1e3a5f;
  font-size: 0.875rem;
  line-height: 1.35;
}

.page-blackjack-hub .blackjack-rng-live-table__rng,
.page-blackjack-hub .blackjack-rng-live-table__live {
  font-size: 0.875rem;
  line-height: 1.55;
  color: #475569;
}

.page-blackjack-hub .blackjack-rng-live-table__rng {
  border-left: 3px solid rgba(99, 102, 241, 0.2);
}

.page-blackjack-hub .blackjack-rng-live-table__live {
  border-left: 3px solid rgba(51, 190, 179, 0.25);
}

@media (max-width: 900px) {
  .page-blackjack-hub .blackjack-rng-live-cards {
    grid-template-columns: 1fr;
  }

  .page-blackjack-hub .blackjack-rng-live-table-wrap {
    overflow: visible;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .page-blackjack-hub .blackjack-rng-live-table {
    display: block;
  }

  .page-blackjack-hub .blackjack-rng-live-table thead {
    display: none;
  }

  .page-blackjack-hub .blackjack-rng-live-table tbody {
    display: grid;
    gap: 1rem;
  }

  .page-blackjack-hub .blackjack-rng-live-table tbody tr {
    display: block;
    padding: 1rem 1.125rem;
    border: 1px solid var(--border-light, #e2e8f0);
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
  }

  .page-blackjack-hub .blackjack-rng-live-table tbody tr:nth-child(even) {
    background: #fff;
  }

  .page-blackjack-hub .blackjack-rng-live-table tbody tr:hover {
    background: #fff;
    box-shadow: 0 4px 14px rgba(51, 190, 179, 0.12);
  }

  .page-blackjack-hub .blackjack-rng-live-table td {
    display: block;
    padding: 0.5rem 0;
    border: none;
    border-left: none !important;
  }

  .page-blackjack-hub .blackjack-rng-live-table__aspect {
    padding-bottom: 0.75rem;
    margin-bottom: 0.625rem;
    border-bottom: 1px solid var(--border-light, #e2e8f0);
  }

  .page-blackjack-hub .blackjack-rng-live-table__rng,
  .page-blackjack-hub .blackjack-rng-live-table__live {
    padding-left: 0;
  }

  .page-blackjack-hub .blackjack-rng-live-table__rng::before,
  .page-blackjack-hub .blackjack-rng-live-table__live::before {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748b;
  }

  .page-blackjack-hub .blackjack-rng-live-table__rng::before {
    content: attr(data-label);
    color: #4338ca;
  }

  .page-blackjack-hub .blackjack-rng-live-table__live::before {
    content: attr(data-label);
    color: #0f766e;
  }
}

@media (max-width: 900px) {

  .page-blackjack-hub .blackjack-criteria-grid,
  .page-blackjack-hub .blackjack-feature-grid {
    grid-template-columns: 1fr;
  }

  .page-blackjack-hub .blackjack-criteria-card .slot-criteria-card__head {
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .page-blackjack-hub .blackjack-category-pick__specs {
    grid-template-columns: 1fr;
  }

  .page-blackjack-hub .blackjack-category-pick__cta-btn {
    width: 100%;
  }
}

/* ==========================================================================
   Roulette hub (.page-roulette-hub) — reuses live-casino / blackjack tokens
   ========================================================================== */
.page-roulette-hub section.malaysia-section:not(.container) {
  padding-block: clamp(2rem, 4vw, 3rem);
}

.page-roulette-hub #roulette-listing-meta {
  margin-bottom: 0;
}

.page-roulette-hub .roulette-rating-section {
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
}

.page-roulette-hub .roulette-rating-section>h2 {
  margin-bottom: 0.75rem;
  max-width: 48ch;
  line-height: 1.25;
}

.page-roulette-hub .roulette-section-lead {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(1rem, 1.6vw, 1.0625rem);
  line-height: 1.7;
  color: var(--text-secondary, #475569);
}

.page-roulette-hub .roulette-section-footnote {
  margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
  padding: 1rem 1.15rem;
  border-radius: 0.75rem;
  background: color-mix(in srgb, var(--primary, #33beb3) 6%, #f8fafc);
  border: 1px solid rgba(51, 190, 179, 0.14);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary, #475569);
}

.page-roulette-hub .roulette-criteria-grid {
  gap: clamp(0.875rem, 2vw, 1.25rem);
  margin: 0 0 clamp(1.75rem, 3vw, 2.25rem);
  align-items: stretch;
}

.page-roulette-hub .roulette-criteria-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.35rem 1.25rem 1.4rem;
  background: linear-gradient(180deg, #fff 0%, #f8fcfd 100%);
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 1rem;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 4px 14px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.page-roulette-hub .roulette-criteria-card:hover {
  border-color: color-mix(in srgb, var(--primary) 35%, var(--border-light));
  box-shadow:
    0 6px 20px rgba(15, 23, 42, 0.08),
    0 2px 6px rgba(51, 190, 179, 0.12);
  transform: translateY(-2px);
}

.page-roulette-hub .roulette-criteria-card .slot-criteria-card__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}

.page-roulette-hub .roulette-criteria-card .slot-criteria-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(51, 190, 179, 0.16) 0%, rgba(51, 190, 179, 0.08) 100%);
  color: var(--primary, #33beb3);
  border: 1px solid rgba(51, 190, 179, 0.18);
  flex-shrink: 0;
}

.page-roulette-hub .roulette-criteria-card .slot-criteria-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.page-roulette-hub .roulette-criteria-card .live-casino-criteria-card__title {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1e3a5f;
}

.page-roulette-hub .roulette-criteria-card .live-casino-criteria-card__body {
  flex: 1;
  margin: 0;
  padding-top: 0.875rem;
  border-top: 1px solid rgba(51, 190, 179, 0.12);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary, #475569);
}

.page-roulette-hub .roulette-checklist-panel {
  padding: clamp(1.35rem, 2.5vw, 1.75rem);
  border-radius: 1rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border: 1px solid var(--border-light, #e2e8f0);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.page-roulette-hub .roulette-checklist-panel__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.0625rem, 2vw, 1.2rem);
  font-weight: 700;
  line-height: 1.35;
  color: #1e3a5f;
}

.page-roulette-hub .roulette-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: none;
}

.page-roulette-hub .roulette-checklist__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 1.1rem;
  border-radius: 0.875rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.page-roulette-hub .roulette-checklist__step:hover {
  border-color: rgba(51, 190, 179, 0.22);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.page-roulette-hub .roulette-checklist__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary, #33beb3) 0%, #2aa89f 100%);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(51, 190, 179, 0.35);
}

.page-roulette-hub .roulette-checklist__content {
  min-width: 0;
}

.page-roulette-hub .roulette-checklist__title {
  display: block;
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1e3a5f;
}

.page-roulette-hub .roulette-checklist__body {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary, #475569);
}

.page-roulette-hub .roulette-beginner-section>h2 {
  margin-bottom: 0.75rem;
  max-width: 48ch;
  line-height: 1.25;
}

.page-roulette-hub .roulette-beginner-concepts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.page-roulette-hub .roulette-beginner-steps-panel {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.page-roulette-hub .roulette-beginner-tips-panel {
  padding: clamp(1.35rem, 2.5vw, 1.75rem);
  border-radius: 1rem;
  background: linear-gradient(180deg, #f0f7fa 0%, #ffffff 100%);
  border: 1px solid rgba(51, 190, 179, 0.16);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.page-roulette-hub .roulette-beginner-tips-panel__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.0625rem, 2vw, 1.2rem);
  font-weight: 700;
  line-height: 1.35;
  color: #1e3a5f;
}

.page-roulette-hub .roulette-beginner-tips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.875rem, 2vw, 1.125rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-roulette-hub .roulette-beginner-tip {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  height: 100%;
  padding: 1.15rem 1.1rem 1.2rem;
  border-radius: 0.875rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.page-roulette-hub .roulette-beginner-tip:hover {
  border-color: rgba(51, 190, 179, 0.22);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}

.page-roulette-hub .roulette-beginner-tip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(51, 190, 179, 0.16) 0%, rgba(51, 190, 179, 0.08) 100%);
  color: var(--primary, #33beb3);
  border: 1px solid rgba(51, 190, 179, 0.18);
  flex-shrink: 0;
}

.page-roulette-hub .roulette-beginner-tip__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.page-roulette-hub .roulette-beginner-tip__content {
  min-width: 0;
}

.page-roulette-hub .roulette-beginner-tip__title {
  display: block;
  margin: 0 0 0.4rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1e3a5f;
}

.page-roulette-hub .roulette-beginner-tip__body {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary, #475569);
}

.page-roulette-hub .roulette-beginner-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: none;
}

.page-roulette-hub .roulette-games-wrap {
  overflow-x: auto;
  margin: clamp(1.25rem, 2.5vw, 1.75rem) 0;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 1rem;
  background: var(--bg-card, #fff);
  box-shadow:
    0 4px 16px rgba(15, 23, 42, 0.06),
    0 1px 3px rgba(15, 23, 42, 0.04);
}

.page-roulette-hub .roulette-games-table {
  width: 100%;
  min-width: 52rem;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.page-roulette-hub .roulette-games-table th,
.page-roulette-hub .roulette-games-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light, #e2e8f0);
  vertical-align: middle;
}

.page-roulette-hub .roulette-games-table thead th {
  background: linear-gradient(180deg, #f0f7fa 0%, #e8f4f8 100%);
  padding: 0.8rem 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #475569;
  line-height: 1.35;
  white-space: nowrap;
  border-bottom: 2px solid rgba(51, 190, 179, 0.2);
}

.page-roulette-hub .roulette-games-table th:nth-child(1),
.page-roulette-hub .roulette-games-table td:nth-child(1) {
  width: 16%;
}

.page-roulette-hub .roulette-games-table th:nth-child(2),
.page-roulette-hub .roulette-games-table td:nth-child(2) {
  width: 14%;
}

.page-roulette-hub .roulette-games-table th:nth-child(3),
.page-roulette-hub .roulette-games-table td:nth-child(3) {
  width: 18%;
}

.page-roulette-hub .roulette-games-table th:nth-child(4),
.page-roulette-hub .roulette-games-table td:nth-child(4),
.page-roulette-hub .roulette-games-table th:nth-child(5),
.page-roulette-hub .roulette-games-table td:nth-child(5) {
  width: 9%;
  text-align: center;
}

.page-roulette-hub .roulette-games-table th:nth-child(6),
.page-roulette-hub .roulette-games-table td:nth-child(6) {
  width: 10%;
  text-align: center;
}

.page-roulette-hub .roulette-games-table th:nth-child(7),
.page-roulette-hub .roulette-games-table td:nth-child(7) {
  width: 14%;
  text-align: center;
}

.page-roulette-hub .roulette-games__row {
  transition: background-color 0.15s ease;
}

.page-roulette-hub .roulette-games__row:nth-child(even) {
  background: #f8fcfd;
}

.page-roulette-hub .roulette-games__row:hover {
  background: rgba(51, 190, 179, 0.08);
}

.page-roulette-hub .roulette-games__row:last-child td {
  border-bottom: none;
}

.page-roulette-hub .roulette-games__cell {
  vertical-align: middle;
}

.page-roulette-hub .roulette-games__cell--play {
  text-align: center;
}

.page-roulette-hub .slot-top-games__game {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.page-roulette-hub .slot-top-games__rank {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--primary, #33beb3);
  font-size: 0.875rem;
  line-height: 1.45;
}

.page-roulette-hub .slot-top-games__title {
  display: block;
  font-weight: 700;
  color: var(--text-main, #0f172a);
  font-size: 0.9375rem;
  line-height: 1.35;
}

.page-roulette-hub .roulette-games__software,
.page-roulette-hub .roulette-games__type {
  display: block;
  line-height: 1.45;
  font-size: 0.8125rem;
  color: var(--text-secondary, #475569);
}

.page-roulette-hub .roulette-games__bet {
  display: block;
  white-space: nowrap;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-main, #0f172a);
  text-align: center;
}

.page-roulette-hub .slot-top-games__rtp {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f766e;
  background: rgba(51, 190, 179, 0.12);
  border: 1px solid rgba(51, 190, 179, 0.22);
  white-space: nowrap;
}

.page-roulette-hub .slot-top-games__play-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 0;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.page-roulette-hub .slot-top-games__play-link:hover,
.page-roulette-hub .slot-top-games__play-link:focus-visible {
  opacity: 0.85;
  transform: scale(1.03);
}

.page-roulette-hub .slot-top-games__play-logo {
  display: inline-block;
  font-size: 0;
  line-height: 0;
  color: transparent;
  overflow: hidden;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 6.5rem;
  height: 2.25rem;
  vertical-align: middle;
}

.page-roulette-hub .slot-top-games__play-text {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary, #33beb3);
  line-height: 1.3;
}

.page-roulette-hub .roulette-mobile-featured {
  margin: 1.25rem 0;
}

.page-roulette-hub .malaysia-operator-row--featured .malaysia-operator-row__rank {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #fff;
  border: none;
  box-shadow: 0 2px 6px rgba(245, 158, 11, 0.35);
  font-size: 0.9rem;
}

.page-roulette-hub .malaysia-operator-row__rating-score {
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-main, #0f172a);
  font-variant-numeric: tabular-nums;
}

.page-roulette-hub .malaysia-operator-row--featured .malaysia-operator-row__highlight-tag {
  display: inline-block;
  padding: 0.55rem 0.85rem;
  border-radius: 0.5rem;
  background: rgba(51, 190, 179, 0.1);
  border: 1px solid rgba(51, 190, 179, 0.18);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.45;
  color: #0f766e;
  text-align: center;
}

.page-roulette-hub .roulette-providers-section>h2 {
  margin-bottom: 0.75rem;
  max-width: 48ch;
  line-height: 1.25;
}

.page-roulette-hub .roulette-providers-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.875rem, 2vw, 1.125rem);
  margin: clamp(1.25rem, 2.5vw, 1.75rem) 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-roulette-hub .roulette-provider {
  padding: clamp(1rem, 2vw, 1.2rem) clamp(1rem, 2vw, 1.15rem);
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 0.875rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.page-roulette-hub .roulette-provider:hover {
  border-color: rgba(51, 190, 179, 0.22);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.page-roulette-hub .roulette-provider__title {
  margin: 0 0 0.5rem;
  padding-left: 0.875rem;
  border-left: 3px solid var(--primary, #33beb3);
  font-size: clamp(1.0625rem, 2vw, 1.1875rem);
  font-weight: 700;
  line-height: 1.35;
  color: #1e3a5f;
}

.page-roulette-hub .roulette-provider__body {
  margin: 0;
  padding-left: calc(0.875rem + 3px);
  max-width: none;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary, #475569);
}

.page-roulette-hub #roulette-variations h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.page-roulette-hub #roulette-variations h3:first-child {
  margin-top: 0;
}

.page-roulette-hub .roulette-bonus-category {
  margin-top: 1.25rem;
}

.page-roulette-hub .roulette-bonus-category__heading {
  margin-bottom: 0.5rem;
  font-size: 1.0625rem;
}

@media (max-width: 900px) {

  .page-roulette-hub .roulette-criteria-grid,
  .page-roulette-hub .roulette-beginner-concepts {
    grid-template-columns: 1fr;
  }

  .page-roulette-hub .roulette-criteria-card .slot-criteria-card__head {
    align-items: flex-start;
  }

  .page-roulette-hub .roulette-beginner-tips {
    grid-template-columns: 1fr;
  }

  .page-roulette-hub .roulette-providers-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .page-roulette-hub .roulette-games-wrap {
    overflow: visible;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .page-roulette-hub .roulette-games-table {
    display: block;
    min-width: 0;
  }

  .page-roulette-hub .roulette-games-table thead {
    display: none;
  }

  .page-roulette-hub .roulette-games-table tbody {
    display: grid;
    gap: 1rem;
  }

  .page-roulette-hub .roulette-games__row {
    display: block;
    padding: 1rem 1.125rem;
    margin-bottom: 0;
    border: 1px solid var(--border-light, #e2e8f0);
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
  }

  .page-roulette-hub .roulette-games__row:nth-child(even) {
    background: #fff;
  }

  .page-roulette-hub .roulette-games__row:hover {
    background: #fff;
    box-shadow: 0 4px 14px rgba(51, 190, 179, 0.12);
  }

  .page-roulette-hub .roulette-games__row td {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    text-align: right;
  }

  .page-roulette-hub .roulette-games__row td:last-child {
    border-bottom: none;
  }

  .page-roulette-hub .roulette-games__row td::before {
    content: attr(data-label);
    font-weight: 700;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
    text-align: left;
    flex-shrink: 0;
  }

  .page-roulette-hub .roulette-games__cell--game {
    display: block;
    text-align: left;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }

  .page-roulette-hub .roulette-games__cell--game::before {
    display: none;
  }

  .page-roulette-hub .roulette-games__cell--play {
    justify-content: space-between;
    align-items: center;
  }

  .page-roulette-hub .roulette-games__bet {
    text-align: right;
  }
}

@media (max-width: 767px) {
  .page-roulette-hub .slot-top-games__play-logo {
    width: 5.5rem;
    height: 2rem;
  }
}

/* ==========================================================================
   Baccarat hub (.page-baccarat-hub) — reuses live-casino / blackjack tokens
   ========================================================================== */
.page-baccarat-hub section.malaysia-section:not(.container) {
  padding-top: 0;
}

.page-baccarat-hub #baccarat-listing-meta {
  margin-bottom: 0;
}

.page-baccarat-hub .baccarat-rating-section {
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
}

.page-baccarat-hub .baccarat-rating-section>h2,
.page-baccarat-hub .baccarat-beginner-section>h2,
.page-baccarat-hub #baccarat-payouts-h2,
.page-baccarat-hub #baccarat-sample-round-h2,
.page-baccarat-hub #baccarat-variations-h2,
.page-baccarat-hub #baccarat-real-money-h2 {
  margin-bottom: 0.75rem;
  max-width: 48ch;
  line-height: 1.25;
  font-size: clamp(1.375rem, 2.8vw, 1.75rem);
  font-weight: 700;
  color: #1e3a5f;
}

.page-baccarat-hub .baccarat-section-lead {
  margin: 0 0 clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(1rem, 1.6vw, 1.0625rem);
  line-height: 1.7;
  color: var(--text-secondary, #475569);
}

.page-baccarat-hub .baccarat-section-footnote {
  margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
  padding: 1rem 1.15rem;
  border-radius: 0.75rem;
  background: color-mix(in srgb, var(--primary, #33beb3) 6%, #f8fafc);
  border: 1px solid rgba(51, 190, 179, 0.14);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary, #475569);
}

/* Criteria grid — 2×2 for four cards (overrides live-casino 3-col) */
.page-baccarat-hub .live-casino-criteria-grid.baccarat-criteria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.875rem, 2vw, 1.25rem);
  margin: 0 0 clamp(1.75rem, 3vw, 2.25rem);
  align-items: stretch;
}

.page-baccarat-hub .baccarat-criteria-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.35rem 1.25rem 1.4rem;
  background: linear-gradient(180deg, #fff 0%, #f8fcfd 100%);
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 1rem;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 4px 14px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.page-baccarat-hub .baccarat-criteria-card:hover {
  border-color: color-mix(in srgb, var(--primary) 35%, var(--border-light));
  box-shadow:
    0 6px 20px rgba(15, 23, 42, 0.08),
    0 2px 6px rgba(51, 190, 179, 0.12);
  transform: translateY(-2px);
}

.page-baccarat-hub .baccarat-criteria-card .slot-criteria-card__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0;
}

.page-baccarat-hub .baccarat-criteria-card .slot-criteria-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(51, 190, 179, 0.16) 0%, rgba(51, 190, 179, 0.08) 100%);
  color: var(--primary, #33beb3);
  border: 1px solid rgba(51, 190, 179, 0.18);
  flex-shrink: 0;
}

.page-baccarat-hub .baccarat-criteria-card .slot-criteria-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.page-baccarat-hub .baccarat-criteria-card .live-casino-criteria-card__title {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1e3a5f;
}

.page-baccarat-hub .baccarat-criteria-card .live-casino-criteria-card__body {
  flex: 1;
  margin: 0;
  padding-top: 0.875rem;
  border-top: 1px solid rgba(51, 190, 179, 0.12);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary, #475569);
}

.page-baccarat-hub .baccarat-criteria-card .live-casino-criteria-card__body .rich-text-body p,
.page-baccarat-hub .baccarat-criteria-card .live-casino-criteria-card__body .rich-text-body ul {
  margin: 0;
}

.page-baccarat-hub .baccarat-criteria-card .live-casino-criteria-card__body .rich-text-body p+p,
.page-baccarat-hub .baccarat-criteria-card .live-casino-criteria-card__body .rich-text-body ul {
  margin-top: 0.5rem;
}

/* Beginner guide panel */
.page-baccarat-hub .baccarat-beginner-section>h2 {
  margin-bottom: 0.75rem;
}

.page-baccarat-hub .baccarat-guide-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.875rem, 2vw, 1.125rem);
  padding: clamp(1.25rem, 2.5vw, 1.65rem);
  border-radius: 1rem;
  background: linear-gradient(165deg, #f0f9f8 0%, #f8fafc 45%, #ffffff 100%);
  border: 1px solid rgba(51, 190, 179, 0.14);
  box-shadow:
    0 2px 12px rgba(15, 23, 42, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.page-baccarat-hub .baccarat-guide-block {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem 1.25rem 1.3rem 1.35rem;
  border-radius: 0.9375rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.page-baccarat-hub .baccarat-guide-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary, #33beb3) 0%, rgba(51, 190, 179, 0.35) 100%);
  border-radius: 4px 0 0 4px;
}

.page-baccarat-hub .baccarat-guide-block:hover {
  border-color: rgba(51, 190, 179, 0.28);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
  transform: translateY(-1px);
}

.page-baccarat-hub .baccarat-guide-block__step {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(51, 190, 179, 0.55);
  line-height: 1;
}

.page-baccarat-hub .baccarat-guide-block__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-right: 2rem;
}

.page-baccarat-hub .baccarat-guide-block__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(51, 190, 179, 0.18) 0%, rgba(51, 190, 179, 0.08) 100%);
  color: var(--primary, #33beb3);
  border: 1px solid rgba(51, 190, 179, 0.2);
  flex-shrink: 0;
}

.page-baccarat-hub .baccarat-guide-block__icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.page-baccarat-hub .baccarat-guide-block__title {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
  font-weight: 700;
  line-height: 1.35;
  color: #1e3a5f;
}

.page-baccarat-hub .baccarat-guide-block__body,
.page-baccarat-hub .baccarat-guide-block p.baccarat-guide-block__body {
  margin: 0;
  padding-left: 0.15rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary, #475569);
}

.page-baccarat-hub .baccarat-guide-block__body>p:first-child {
  margin-top: 0;
}

.page-baccarat-hub .baccarat-guide-block__body ul,
.page-baccarat-hub .baccarat-guide-block__body ol {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.page-baccarat-hub .baccarat-guide-block__body ul li,
.page-baccarat-hub .baccarat-guide-block__body ol li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-secondary, #475569);
}

.page-baccarat-hub .baccarat-guide-block__body ul li::before,
.page-baccarat-hub .baccarat-guide-block__body ol li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--primary, #33beb3);
  box-shadow: 0 0 0 2px rgba(51, 190, 179, 0.18);
}

.page-baccarat-hub .baccarat-guide-block__body ul li strong {
  color: #1e3a5f;
  font-weight: 700;
}

.page-baccarat-hub .baccarat-guide-block__body p+p,
.page-baccarat-hub .baccarat-guide-block__body p+ul,
.page-baccarat-hub .baccarat-guide-block__body p+ol,
.page-baccarat-hub .baccarat-guide-block__body ul+p,
.page-baccarat-hub .baccarat-guide-block__body ol+p {
  margin-top: 0.75rem;
}

/* CMS: paragraph label before a bullet list (Player Bet, Banker Bet, etc.) */
.page-baccarat-hub .baccarat-guide-block__body p:has(+ ul),
.page-baccarat-hub .baccarat-guide-block__body p:has(+ ol),
.page-baccarat-hub .baccarat-guide-block__bet-label {
  margin: 0.85rem 0 0.35rem;
  padding: 0.35rem 0.65rem;
  width: fit-content;
  max-width: 100%;
  border-radius: 0.375rem;
  background: rgba(51, 190, 179, 0.1);
  border: 1px solid rgba(51, 190, 179, 0.16);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1e3a5f;
  text-transform: capitalize;
}

.page-baccarat-hub .baccarat-guide-block__body>p:first-child,
.page-baccarat-hub .baccarat-guide-block__body>p:first-of-type:not(:has(+ ul)) {
  margin-top: 0;
}

.page-baccarat-hub .baccarat-guide-block__body>p:has(+ ul):first-child {
  margin-top: 0;
}

.page-baccarat-hub .baccarat-guide-block__tip,
.page-baccarat-hub .baccarat-guide-block__body p:last-child:has(strong) {
  margin-top: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.625rem;
  background: color-mix(in srgb, var(--primary, #33beb3) 7%, #f8fafc);
  border-left: 3px solid var(--primary, #33beb3);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary, #475569);
}

.page-baccarat-hub .baccarat-guide-block__tip strong,
.page-baccarat-hub .baccarat-guide-block__body p:last-child:has(strong) strong {
  color: #1e3a5f;
}

/* Steps panel */
.page-baccarat-hub .baccarat-steps-panel {
  padding: clamp(1.35rem, 2.5vw, 1.75rem);
  border-radius: 1rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border: 1px solid var(--border-light, #e2e8f0);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  margin: 0 0 1.5rem;
}

.page-baccarat-hub .baccarat-steps-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-baccarat-hub .baccarat-steps-list .roulette-checklist__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 1.1rem;
  border-radius: 0.875rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.page-baccarat-hub .baccarat-steps-list .roulette-checklist__step:hover {
  border-color: rgba(51, 190, 179, 0.22);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.page-baccarat-hub .baccarat-steps-list .roulette-checklist__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary, #33beb3) 0%, #2aa89f 100%);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(51, 190, 179, 0.35);
}

.page-baccarat-hub .baccarat-steps-list .roulette-checklist__title {
  display: block;
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1e3a5f;
}

.page-baccarat-hub .baccarat-steps-list .roulette-checklist__body {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary, #475569);
}

/* Variations grid */
.page-baccarat-hub .baccarat-variant-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.875rem, 2vw, 1.25rem);
  margin-top: 0.25rem;
}

.page-baccarat-hub .baccarat-variant-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.25rem 1.2rem 1.3rem;
  background: linear-gradient(180deg, #fff 0%, #f8fcfd 100%);
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 1rem;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 4px 14px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.page-baccarat-hub .baccarat-variant-card:hover {
  border-color: color-mix(in srgb, var(--primary) 30%, var(--border-light));
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.07);
  transform: translateY(-2px);
}

.page-baccarat-hub .baccarat-variant-card__title {
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: #1e3a5f;
  line-height: 1.35;
}

.page-baccarat-hub .baccarat-variant-card__body {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary, #475569);
}

.page-baccarat-hub .baccarat-promo-wrap,
.page-baccarat-hub .baccarat-guide-promo-wrap {
  margin-top: 1.5rem;
}

.page-baccarat-hub .baccarat-wagering-body {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: 0.75rem;
  background: color-mix(in srgb, var(--primary, #33beb3) 5%, #f8fafc);
  border: 1px solid rgba(51, 190, 179, 0.12);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary, #475569);
}

.page-baccarat-hub .baccarat-wagering-body p {
  margin: 0;
}

/* Payouts table — compact, simple */
.page-baccarat-hub .baccarat-payouts-section {
  margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
}

.page-baccarat-hub .baccarat-payout-table-wrap {
  overflow-x: auto;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 0.75rem;
  background: #fff;
}

.page-baccarat-hub .baccarat-payout-table,
.page-baccarat-hub .baccarat-payout-table-wrap .rich-text-body table {
  width: 100%;
  min-width: 36rem;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.page-baccarat-hub .baccarat-payout-table th,
.page-baccarat-hub .baccarat-payout-table td,
.page-baccarat-hub .baccarat-payout-table-wrap .rich-text-body table th,
.page-baccarat-hub .baccarat-payout-table-wrap .rich-text-body table td {
  padding: 0.625rem 0.75rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border-light, #e2e8f0);
  line-height: 1.5;
}

.page-baccarat-hub .baccarat-payout-table thead th,
.page-baccarat-hub .baccarat-payout-table-wrap .rich-text-body table thead th {
  background: #f8fafc;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
  white-space: nowrap;
}

.page-baccarat-hub .baccarat-payout-table tbody tr:last-child td,
.page-baccarat-hub .baccarat-payout-table-wrap .rich-text-body table tbody tr:last-child td {
  border-bottom: none;
}

.page-baccarat-hub .baccarat-payout-table td:first-child,
.page-baccarat-hub .baccarat-payout-table-wrap .rich-text-body table td:first-child {
  font-weight: 600;
  color: #1e3a5f;
  white-space: nowrap;
}

.page-baccarat-hub .baccarat-payout-table td:nth-child(3),
.page-baccarat-hub .baccarat-payout-table-wrap .rich-text-body table td:nth-child(3) {
  white-space: nowrap;
}

.page-baccarat-hub .baccarat-payout-table td:last-child,
.page-baccarat-hub .baccarat-payout-table-wrap .rich-text-body table td:last-child {
  color: var(--text-secondary, #475569);
}

@media (max-width: 991px) {

  .page-baccarat-hub .live-casino-criteria-grid.baccarat-criteria-grid,
  .page-baccarat-hub .baccarat-variant-items {
    grid-template-columns: 1fr;
  }
}

/* === 888reviews guide-post design v2 === */
body.page-guide-post {
  background: #f4f7f8;
}

.page-guide-post .gp-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  height: 3px;
  pointer-events: none;
  background: transparent;
}

.page-guide-post .gp-progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary) 0%, #2aa197 55%, #1d8f86 100%);
  box-shadow: 0 0 12px rgba(51, 190, 179, 0.45);
  transition: width 0.08s linear;
}

@media (prefers-reduced-motion: reduce) {
  .page-guide-post .gp-progress__bar {
    transition: none;
  }
}

.page-guide-post .post-hero.post-hero--guide-fit {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 12% -10%, rgba(51, 190, 179, 0.16), transparent 55%),
    radial-gradient(ellipse 55% 45% at 92% 8%, rgba(14, 165, 233, 0.08), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f4f7f8 100%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.page-guide-post .post-hero__guide-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 88%);
  opacity: 0.7;
}

.page-guide-post .post-hero__guide-inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(28px, 3.5vw, 48px);
  padding-bottom: clamp(28px, 3.5vw, 44px);
  animation: gp-hero-in 0.55s ease both;
}

@keyframes gp-hero-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-guide-post .post-hero__guide-inner {
    animation: none;
  }
}

.page-guide-post .post-hero--guide-fit .ph-layout--guide-hero .ph-content {
  max-width: none;
}

.page-guide-post .ph-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #cbd5e1;
  flex-shrink: 0;
}

.page-guide-post .post-hero .ph-meta {
  gap: 10px;
}

.page-guide-post .post-hero .ph-pill {
  background: rgba(51, 190, 179, 0.12);
  border: 1px solid rgba(51, 190, 179, 0.28);
  color: #0f766e;
}

.page-guide-post .post-hero .ph-meta-text {
  color: #64748b;
  font-weight: 500;
}

.page-guide-post .post-hero .ph-title {
  font-size: clamp(1.95rem, 3.4vw + 0.45rem, 3.05rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.page-guide-post .post-hero .ph-subtitle {
  font-size: clamp(0.95rem, 0.35vw + 0.88rem, 1.125rem);
  line-height: 1.65;
  color: #475569;
  margin-bottom: clamp(18px, 2.2vw, 24px);
  max-width: none;
}

.page-guide-post .post-hero .ph-author {
  flex-wrap: wrap;
  gap: 14px 18px;
  padding-top: clamp(16px, 2vw, 20px);
  border-top-color: rgba(226, 232, 240, 0.95);
}

.page-guide-post .post-hero .pha-img {
  width: 44px;
  height: 44px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(51, 190, 179, 0.35);
}

.page-guide-post .gp-share-inline {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: #334155;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.page-guide-post .gp-share-inline i {
  width: 15px;
  height: 15px;
}

.page-guide-post .gp-share-inline:hover {
  border-color: rgba(51, 190, 179, 0.55);
  color: #0f766e;
  background: rgba(51, 190, 179, 0.08);
  transform: translateY(-1px);
}

.page-guide-post .gp-share-inline.is-copied {
  border-color: rgba(5, 150, 105, 0.45);
  color: #047857;
  background: rgba(5, 150, 105, 0.08);
}

.page-guide-post .gp-breadcrumb__list [aria-current='page'] {
  max-width: 100%;
  overflow: visible;
  text-overflow: unset;
  white-space: normal;
}

.page-guide-post .post-main-container {
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(48px, 6vw, 80px);
}

.page-guide-post .post-layout--guide-read {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: start;
}

.page-guide-post .post-layout--guide-read:has(.gp-toc:not([hidden])) {
  grid-template-columns: minmax(12rem, 15rem) minmax(0, 1fr);
}

.page-guide-post .post-core-content {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius-xl);
  padding: clamp(1.35rem, 2.8vw, 2.35rem) clamp(1.2rem, 2.5vw, 2.5rem);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.03),
    0 18px 40px -28px rgba(15, 23, 42, 0.18);
  animation: gp-article-in 0.6s ease 0.08s both;
}

@keyframes gp-article-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-guide-post .post-core-content {
    animation: none;
  }
}

.page-guide-post .post-core-content.cr-article .rich-text-body.guide-post-md {
  max-width: 42rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #1e293b;
}

.page-guide-post .post-core-content.cr-article .guide-post-md h1,
.page-guide-post .post-core-content.cr-article .guide-post-md h2,
.page-guide-post .post-core-content.cr-article .guide-post-md h3 {
  scroll-margin-top: calc(var(--sticky-header-offset) + 1rem);
  letter-spacing: -0.02em;
}

.page-guide-post .post-core-content.cr-article .guide-post-md h2 {
  margin-top: 2.5rem;
  padding-bottom: 0.55rem;
  border-bottom: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, rgba(51, 190, 179, 0.55), rgba(51, 190, 179, 0.08) 55%, transparent) border-box;
}

.page-guide-post .post-core-content.cr-article .guide-post-md a {
  color: #0f766e;
  text-decoration-color: rgba(51, 190, 179, 0.45);
  text-underline-offset: 3px;
}

.page-guide-post .post-core-content.cr-article .guide-post-md blockquote {
  background: linear-gradient(90deg, rgba(51, 190, 179, 0.08), rgba(248, 250, 252, 0.9));
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.page-guide-post .gp-toc {
  position: sticky;
  top: calc(var(--sticky-header-offset) + 0.75rem);
  align-self: start;
  max-height: calc(100vh - var(--sticky-header-offset) - 1.5rem);
  overflow: auto;
  padding: 4px 2px 4px 0;
}

.page-guide-post .gp-toc[hidden] {
  display: none !important;
}

.page-guide-post .gp-toc__nav {
  padding: 1rem 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.page-guide-post .gp-toc__label {
  margin: 0 0 0.75rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0f766e;
}

.page-guide-post .gp-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-left: 2px solid #e2e8f0;
}

.page-guide-post .gp-toc__list a {
  display: block;
  padding: 0.45rem 0.65rem 0.45rem 0.85rem;
  margin-left: -2px;
  border-left: 2px solid transparent;
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}

.page-guide-post .gp-toc__list a:hover {
  color: #0f172a;
  background: rgba(51, 190, 179, 0.06);
}

.page-guide-post .gp-toc__list a.is-active {
  color: #0f766e;
  font-weight: 650;
  border-left-color: var(--primary);
  background: rgba(51, 190, 179, 0.08);
}

.page-guide-post .gp-article-foot {
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding-top: clamp(1.35rem, 2.5vw, 1.75rem);
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  max-width: 42rem;
}

.page-guide-post .gp-article-foot__note {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: #64748b;
}

.page-guide-post .gp-article-foot__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-guide-post .gp-article-foot__actions .btn {
  text-decoration: none;
}

.page-guide-post .gp-article-foot__actions .btn-outline {
  background: #fff;
  border: 1px solid var(--border);
  color: #334155;
}

.page-guide-post .gp-article-foot__actions .btn-outline:hover {
  border-color: rgba(51, 190, 179, 0.55);
  color: #0f766e;
}

.page-guide-post .gp-related-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0f766e;
}

.page-guide-post .gp-related-latest-section {
  background: linear-gradient(180deg, #f4f7f8 0%, #eef4f5 100%);
}

@media (max-width: 980px) {
  .page-guide-post .post-layout--guide-read,
  .page-guide-post .post-layout--guide-read:has(.gp-toc:not([hidden])) {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-guide-post .gp-toc {
    position: static;
    max-height: none;
    overflow: visible;
  }

  .page-guide-post .gp-toc__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px 8px;
    border-left: none;
  }

  .page-guide-post .gp-toc__list a {
    margin-left: 0;
    border-left: none;
    border-radius: 8px;
    padding: 0.5rem 0.65rem;
  }

  .page-guide-post .gp-toc__list a.is-active {
    border-left: none;
  }
}

@media (max-width: 900px) {
  .page-guide-post .gp-share-inline {
    margin-left: 0;
  }

  .page-guide-post .post-hero--guide-fit .ph-layout--guide-hero .ph-content {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .page-guide-post .gp-toc__list {
    grid-template-columns: 1fr;
  }

  .page-guide-post .post-core-content {
    border-radius: var(--radius-lg);
    padding: 1.15rem 1rem 1.35rem;
  }
}

/* === guide-post hero author remove + stacked title/image === */
.page-guide-post .post-hero .ph-author {
  display: none !important;
}

.page-guide-post .post-hero .ph-meta {
  flex-wrap: wrap;
  align-items: center;
}

.page-guide-post .post-hero .gp-share-inline {
  display: none !important;
}

.page-guide-post .post-hero .ph-byline {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94a3b8;
}

.page-guide-post .ph-hero-visual[hidden] {
  display: block !important;
}

.page-guide-post .post-hero--guide-fit .ph-layout--guide-hero {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

.page-guide-post .post-hero--guide-fit .ph-layout--guide-hero .ph-content {
  flex: none;
  width: 100%;
  max-width: none;
  order: 1;
  padding-right: 0;
}

.page-guide-post .post-hero--guide-fit .ph-title {
  max-width: none;
}

.page-guide-post .post-hero--guide-fit .ph-subtitle {
  max-width: none;
}

.page-guide-post .post-hero--guide-fit .ph-hero-visual {
  display: block !important;
  order: 2;
  flex: none;
  width: 100%;
  max-width: none;
  align-self: stretch;
  margin: 0;
}

.page-guide-post .post-hero--guide-fit .ph-hero-cover-img {
  display: block;
  width: 100%;
  max-width: none;
  max-height: none;
  height: auto;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 18px 44px -14px rgba(15, 23, 42, 0.22);
}

@media (max-width: 700px) {
  .page-guide-post .post-hero--guide-fit .ph-hero-cover-img {
    aspect-ratio: 16 / 10;
  }
}
