﻿  :root {
    /* SpinBetter green / teal palette */
    --sb-bg: #001817;
    --sb-bg-2: #021c19;
    --sb-bg-3: #032725;

    --sb-header: #00382f;
    --sb-header-2: #002f29;
    --sb-nav: #002b25;

    --sb-surface: #052b27;
    --sb-surface-2: #07362f;
    --sb-surface-3: #0b443a;

    --sb-card: #062e28;
    --sb-card-2: #083b33;

    --sb-border: rgba(183, 255, 70, 0.16);
    --sb-border-strong: rgba(183, 255, 70, 0.28);

    --sb-text: #ffffff;
    --sb-text-soft: #e8f3ee;
    --sb-muted: #b8c8c1;
    --sb-muted-2: #8ba39a;

    --sb-lime: #c8f000;
    --sb-lime-hover: #e4ff1a;

    --sb-yellow: #fff200;
    --sb-yellow-hover: #ffff28;
    --sb-yellow-soft: #e0da92;

    --sb-orange: #ff7900;
    --sb-orange-hover: #ff8d1a;
    --sb-orange-dark: #d85d00;

    --sb-purple: #b82ee6;
    --sb-purple-hover: #cc43ff;

    --sb-danger: #e04735;

    --sb-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
    --sb-shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.28);

    /* Legacy mappings */
    --header-h: 64px;
    --header-bg: var(--sb-header);
    --hero-gradient-start: #00231f;
    --hero-gradient-end: #07362f;
    --brand-orange: var(--sb-orange);
    --brand-orange-hover: var(--sb-orange-hover);
    --brand-blue: var(--sb-surface-3);
    --brand-blue-hover: var(--sb-card-2);
    --orange: var(--sb-orange);
    --orange-dark: var(--sb-orange-dark);
    --orange-light: var(--sb-orange-hover);
    --black: #000000;
    --dark: var(--sb-bg);
    --dark2: var(--sb-bg-2);
    --dark3: var(--sb-card);
    --dark4: var(--sb-card-2);
    --white: var(--sb-text);
    --gray: var(--sb-muted-2);
    --gray-light: var(--sb-muted);
    --gold: var(--sb-yellow);
    --nav-bg: var(--sb-nav);
    --card-bg: var(--sb-card);
    --border: var(--sb-border);
  }

  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Montserrat', 'Segoe UI', system-ui, sans-serif;
    background:
      radial-gradient(circle at 18% 0%, rgba(200, 240, 0, 0.06), transparent 26%),
      linear-gradient(180deg, var(--sb-bg-2) 0%, var(--sb-bg) 100%);
    color: var(--sb-text);
    line-height: 1.6;
    font-size: 16px;
    --scrollbar-track: var(--sb-bg-2);
    --scrollbar-thumb: var(--sb-lime);
  }

  .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-main {
    padding-bottom: 48px;
  }

  .page-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 28px;
  }

  .container--seo {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 8px;
    padding-bottom: 40px;
  }

  a {
    color: var(--sb-orange);
    text-decoration: none;
    transition: color 0.2s;
  }

  a:hover {
    color: var(--sb-orange-hover);
  }

  /* ===== PRIMARY CTA BUTTONS (orange — not hero/signup) ===== */
  .btn,
  .btn-primary,
  .btn-cta,
  .floating-cta__link,
  .btn-submit-review,
  .content-area .btn-cta,
  .page-hero__actions .btn-cta:not(.btn-cta--ghost),
  .review-form-demo .btn-submit-review {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--sb-orange);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(255, 121, 0, 0.28);
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  }

  .btn:hover,
  .btn-primary:hover,
  .btn-cta:hover,
  .floating-cta__link:hover,
  .btn-submit-review:hover,
  .content-area .btn-cta:hover,
  .page-hero__actions .btn-cta:not(.btn-cta--ghost):hover,
  .review-form-demo .btn-submit-review:hover {
    background: var(--sb-orange-hover);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(255, 121, 0, 0.36);
  }

  /* Registration — header orange */
  .btn-signup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--sb-orange);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(255, 121, 0, 0.3);
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }

  .btn-signup:hover {
    background: var(--sb-orange-hover);
    color: #ffffff;
    transform: translateY(-1px);
  }

  /* Login — header purple */
  .btn-signin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--sb-purple);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(184, 46, 230, 0.28);
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }

  .btn-signin:hover {
    background: var(--sb-purple-hover);
    color: #ffffff;
    transform: translateY(-1px);
  }

  .page-hero__actions .btn-cta--ghost {
    background: var(--sb-card);
    color: var(--sb-text);
    border: 1px solid var(--sb-border);
    box-shadow: none;
  }

  .page-hero__actions .btn-cta--ghost:hover {
    background: var(--sb-card-2);
    color: var(--sb-text);
    transform: none;
  }

  /* Hero CTA — bright yellow pill */
  .hero-banner .hero-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    min-height: 44px;
    padding: 0 28px;
    white-space: nowrap;
    flex-shrink: 0;
    box-sizing: border-box;
    font-size: 0.9375rem;
    background: var(--sb-yellow);
    color: #001817;
    border: none;
    border-radius: 999px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 10px 22px rgba(255, 242, 0, 0.26);
    vertical-align: middle;
  }

  .hero-banner .hero-card__cta:hover {
    background: var(--sb-yellow-hover);
    color: #001817;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(255, 242, 0, 0.34);
  }

  /* ===== SURFACE CARDS (shared) ===== */
  .content-area,
  .faq-section,
  .reviews-section,
  .author-card,
  .landing-section,
  .login-card,
  .info-callout,
  .review-form-wrap,
  .game-card,
  .providers-card,
  .providers-card--static {
    background: linear-gradient(180deg, var(--sb-card-2) 0%, var(--sb-card) 100%);
    border: 1px solid var(--sb-border);
    box-shadow: var(--sb-shadow-soft);
  }

  img {
    max-width: 100%;
    height: auto;
  }

  /* ===== TOP NAV ===== */
  .top-nav {
    background-color: var(--sb-header);
    border-bottom: 1px solid rgba(200, 240, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1200;
  }

  .top-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 64px;
  }

  .header-start {
    display: flex;
    align-items: center;
    gap: 0;
    min-width: 0;
    flex: 1 1 auto;
  }

  .header-nav {
    margin-left: 8px;
    padding-left: 16px;
    border-left: 1px solid rgba(200, 240, 0, 0.08);
  }

  .nav-burger {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    padding: 0;
    border: none;
    border-radius: 6px;
    background: var(--sb-card);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s;
  }

  .nav-burger:hover {
    background: var(--sb-card-2);
  }

  .nav-burger__bar {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, #c8d6e8 0%, #9eb2c9 55%, #7f96b0 100%);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: transform 0.2s, opacity 0.2s;
  }

  .nav-burger.is-active .nav-burger__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-burger.is-active .nav-burger__bar:nth-child(2) {
    opacity: 0;
  }

  .nav-burger.is-active .nav-burger__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  body.nav-drawer-open {
    overflow: hidden;
  }

  .nav-drawer-overlay {
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1180;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  .nav-drawer-overlay.is-visible {
    opacity: 1;
    visibility: visible;
  }

  .nav-drawer-overlay[hidden] {
    display: none;
  }

  .nav-drawer {
    position: fixed;
    top: var(--header-h);
    left: 0;
    z-index: 1190;
    width: min(320px, 88vw);
    height: calc(100dvh - var(--header-h));
    max-height: none;
    background: var(--sb-nav);
    border-right: 1px solid var(--sb-border);
    box-shadow: 8px 0 32px rgba(0, 0, 0, 0.35);
    transform: translateX(-100%);
    transition: transform 0.28s ease;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .nav-drawer.is-open {
    transform: translateX(0);
  }

  .nav-drawer__inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: calc(100dvh - var(--header-h));
    padding: 16px 14px 24px;
  }

  .nav-drawer__tiles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .nav-drawer__tile {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 72px;
    padding: 8px 10px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--sb-surface);
    border: 1px solid var(--sb-border);
    text-decoration: none;
    color: var(--white);
    transition: background 0.2s, border-color 0.2s;
  }

  .nav-drawer__tile::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px 0 0 0;
    pointer-events: none;
    background: radial-gradient(
      ellipse 145% 145% at 0% 0%,
      var(--tile-glow, rgba(241, 90, 34, 0.35)) 0%,
      var(--tile-glow-mid, rgba(241, 90, 34, 0.12)) 38%,
      transparent 72%
    );
  }

  .nav-drawer__tile:nth-child(1) {
    --tile-glow: rgba(200, 240, 0, 0.45);
    --tile-glow-mid: rgba(200, 240, 0, 0.18);
  }

  .nav-drawer__tile:nth-child(2) {
    --tile-glow: rgba(241, 90, 34, 0.42);
    --tile-glow-mid: rgba(241, 90, 34, 0.16);
  }

  .nav-drawer__tile:nth-child(3) {
    --tile-glow: rgba(88, 178, 42, 0.4);
    --tile-glow-mid: rgba(88, 178, 42, 0.15);
  }

  .nav-drawer__tile:nth-child(4) {
    --tile-glow: rgba(246, 229, 0, 0.42);
    --tile-glow-mid: rgba(246, 229, 0, 0.16);
  }

  .nav-drawer__tile > * {
    position: relative;
    z-index: 1;
  }

  .nav-drawer__tile:hover {
    background: var(--sb-surface-3);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--white);
  }

  .nav-drawer__tile-media {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-drawer__tile-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .nav-drawer__tile-label {
    font-size: 0.65rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

  .nav-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .nav-drawer__nav-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .nav-drawer__nav-group--header {
    display: none;
  }

  .nav-drawer__link {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    border-radius: 10px;
    background: var(--sb-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
  }

  .nav-drawer__link:hover {
    background: var(--sb-card-2);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
  }

  .nav-drawer__link--active {
    border-color: rgba(241, 90, 34, 0.35);
    background: rgba(241, 90, 34, 0.12);
    color: var(--white);
    font-weight: 700;
  }

  .nav-drawer__app {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--white);
    overflow: hidden;
    background-color: var(--sb-surface-2);
    border: 1px solid var(--sb-border);
    transition: filter 0.2s, border-color 0.2s;
  }

  .nav-drawer__app::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 72%;
    border-radius: 10px 0 0 10px;
    background: radial-gradient(
      ellipse 105% 145% at 0% 50%,
      rgba(168, 236, 88, 0.85) 0%,
      rgba(96, 180, 48, 0.58) 34%,
      transparent 68%
    );
    pointer-events: none;
  }

  .nav-drawer__app > * {
    position: relative;
    z-index: 1;
  }

  .nav-drawer__app:hover {
    border-color: rgba(255, 255, 255, 0.12);
    filter: brightness(1.06);
    color: var(--white);
  }

  .nav-drawer__app-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.35);
    overflow: hidden;
  }

  .nav-drawer__app-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .nav-drawer__app-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1 1 auto;
    min-width: 0;
  }

  .nav-drawer__app-title {
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--white);
  }

  .nav-drawer__app-subtitle {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.3;
    color: rgba(186, 230, 140, 0.95);
  }

  .nav-drawer__app-download {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--white);
    opacity: 0.95;
  }

  .nav-drawer__app-download svg {
    width: 22px;
    height: 22px;
  }

  .logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    line-height: 0;
    margin-right: 28px;
  }

  .logo-link:hover {
    opacity: 0.92;
  }

  .logo-img {
    display: block;
    width: auto;
    height: 50px;
    max-width: min(180px, 42vw);
    object-fit: contain;
  }

  .header-nav {
    display: flex;
    align-items: center;
    min-width: 0;
  }

  /* Image placeholders (assets added later) */
  .media-placeholder {
    background: transparent;
    border: 1px dashed rgba(255, 255, 255, 0.12);
  }

  .media-placeholder--banner {
    width: 100%;
    height: 100%;
    display: block;
  }

  .media-placeholder--slot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .casino-name-nav {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
  }

  .casino-name-nav span {
    color: var(--sb-lime);
  }

  .nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    list-style: none;
  }

  .nav-links li a {
    color: var(--sb-lime);
    font-size: 0.9375rem;
    font-weight: 800;
    padding: 8px 0;
    text-decoration: none;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }

  .nav-links li a:hover {
    color: var(--sb-yellow-hover);
  }

  .nav-links li a.active {
    color: var(--sb-yellow);
    font-weight: 800;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-shrink: 0;
  }

  .nav-search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
  }

  .nav-search:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
  }

  .nav-search svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .btn-signup,
  .btn-signin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }

  .btn-signin:focus {
    outline: none;
  }

  /* ===== HERO BANNER (Grattiano: bg cover + art contain right) ===== */
  .page-stack .hero-banner {
    padding: 0;
  }

  .hero-banner {
    padding: 0;
  }

  .hero-swiper-wrap {
    position: relative;
    width: 100%;
  }

  .hero-swiper {
    position: relative;
    width: 100%;
    aspect-ratio: 1276 / 372;
    border-radius: 16px;
    overflow: hidden;
    background: #00231f;
    box-shadow: var(--sb-shadow-soft);
    border: 1px solid var(--sb-border);
  }

  .hero-slide-panel {
    position: absolute;
    inset: 0;
    isolation: isolate;
    overflow: hidden;
    background-color: #00231f;
    background-image: var(--hero-bg),
      linear-gradient(90deg, #00231f 0%, #04372f 55%, #062e28 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px 28px 36px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }

  .hero-slide-panel.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
  }

  .hero-slide-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(0, 35, 31, 0.92) 0%, rgba(4, 55, 47, 0.78) 48%, rgba(6, 46, 40, 0.55) 100%);
  }

  .hero-slide__art {
    position: absolute;
    top: 0;
    right: -27%;
    height: 100%;
    width: 86%;
    max-width: 640px;
    overflow: hidden;
    isolation: isolate;
    pointer-events: none;
    z-index: 2;
  }

  .hero-slide__art img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .hero-slide__content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    max-width: min(46%, 444px);
    color: var(--white);
  }

  .hero-slide__headline {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: center;
    min-height: 4.5rem;
    margin: 12px 0;
  }

  .hero-card__eyebrow {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
  }

  .hero-card__title {
    margin: 0;
    max-width: 22ch;
    font-size: clamp(1.5rem, 2.6vw, 2.35rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--white);
  }

  .hero-slide__content .hero-card__cta {
    margin-top: auto;
  }

  .hero-card__cta:focus {
    outline: none;
  }

  .hero-banner__pagination {
    position: absolute;
    left: 50%;
    bottom: 12px;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 320px;
    padding: 0 20px;
    transform: translateX(-50%);
    pointer-events: none;
  }

  .hero-banner__pagination .hero-dot {
    pointer-events: auto;
  }

  .hero-dot {
    width: 28px;
    height: 4px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
  }

  .hero-dot.active {
    background: var(--sb-yellow);
  }

  /* ===== LATEST WINS STRIP ===== */
  .latest-wins {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .latest-wins__title {
    margin: 0;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 800;
    color: var(--sb-text);
    letter-spacing: -0.01em;
  }

  .latest-wins__strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 4px;
  }

  .latest-wins__strip::-webkit-scrollbar {
    height: 6px;
  }

  .latest-wins__strip::-webkit-scrollbar-thumb {
    background: rgba(200, 240, 0, 0.35);
    border-radius: 999px;
  }

  .latest-wins__item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: min(240px, 78vw);
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--sb-yellow-soft);
    color: #001817;
    border: 1px solid rgba(0, 24, 23, 0.08);
  }

  .latest-wins__thumb {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: rgba(0, 24, 23, 0.12);
  }

  .latest-wins__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }

  .latest-wins__player {
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1.2;
  }

  .latest-wins__game {
    font-size: 0.72rem;
    font-weight: 600;
    opacity: 0.85;
  }

  .latest-wins__amount {
    font-size: 0.85rem;
    font-weight: 800;
    color: #001817;
  }

  /* ===== GAME CARDS SECTION ===== */
  .section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 16px;
  }

  .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .section-title-text {
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--orange);
  }

  .section-title-text .star {
    color: var(--gold);
    font-size: 1.1rem;
  }

  .see-all {
    font-size: 0.85rem;
    color: var(--orange);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    user-select: none;
    text-transform: none;
  }

  .see-all:hover {
    color: var(--orange-light);
  }

  /* Slots grids (3 rows like screenshot) */
  .slots-row {
    margin-bottom: 26px;
  }

  .slots-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
  }

  .slot-card {
    display: block;
    background: var(--sb-surface);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 6px 20px rgba(0,0,0,0.45);
    transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
    aspect-ratio: 1 / 1;
    position: relative;
  }

  .slot-card .media-placeholder {
    width: 100%;
    height: 100%;
    display: block;
  }

  .slot-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 18px 16px 16px;
    text-align: center;
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.78) 100%);
    opacity: 0;
    transition: opacity 0.18s;
  }

  .slot-fav {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 20px;
    line-height: 1;
    color: var(--orange);
    text-shadow: 0 2px 10px rgba(0,0,0,0.65);
  }

  .slot-title {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--white);
    line-height: 1.15;
    text-shadow: 0 2px 12px rgba(0,0,0,0.7);
    max-width: 92%;
  }

  .slot-play {
    width: min(86%, 220px);
    background: var(--orange);
    color: var(--black);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 16px;
    border-radius: 6px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.55);
  }

  .slot-card:hover {
    transform: translateY(-3px);
    border-color: rgba(241,90,34,0.75);
    box-shadow: 0 10px 26px rgba(0,0,0,0.55);
  }

  .slot-card:hover .slot-overlay {
    opacity: 1;
  }

  @media (max-width: 1024px) {
    .slots-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  }
  @media (max-width: 768px) {
    .slots-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  }
  @media (max-width: 480px) {
    .slots-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }

  .game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
  }

  /* ===== HOME LAYOUT (reference) ===== */
  .promo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .promo-grid .promo-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 112px;
    padding: 18px 12px 18px 20px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: var(--white);
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .promo-grid .promo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
    color: var(--white);
  }

  .promo-grid .promo-card__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 1 1 auto;
    min-width: 0;
    padding-right: 8px;
  }

  .promo-grid .promo-card__label {
    margin: 0 0 10px;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.92);
  }

  .promo-grid .promo-card__title {
    margin: 0;
    font-size: clamp(1.125rem, 1.35vw, 1.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }

  .promo-grid .promo-card__media {
    position: relative;
    flex: 0 0 auto;
    width: 46%;
    max-width: 168px;
    align-self: flex-end;
    margin-bottom: -6px;
    pointer-events: none;
  }

  .promo-grid .promo-card__media img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 112px;
    object-fit: contain;
    object-position: bottom right;
  }

  .page-stack > .promo-grid .promo-card {
    align-items: stretch;
    min-height: 112px;
    height: 112px;
  }

  .page-stack > .promo-grid .promo-card__media {
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 0;
    overflow: hidden;
    max-height: 100%;
  }

  .page-stack > .promo-grid .promo-card__media img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center right;
  }

  .promo-grid .promo-card--slots {
    background: linear-gradient(100deg, #062e28 0%, #123f25 100%);
  }

  .promo-grid .promo-card--live {
    background: linear-gradient(100deg, #062e28 0%, #54301f 100%);
  }

  .promo-grid .promo-card--bonus {
    background: linear-gradient(100deg, #062e28 0%, #3b4416 100%);
  }

  .promo-grid .promo-card--tournaments {
    background: linear-gradient(100deg, #062e28 0%, #65351d 100%);
  }

  .promo-grid--pre-faq {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 4px;
  }

  .promo-grid--pre-faq .promo-card--slots {
    background: linear-gradient(100deg, #062e28 0%, #123f25 100%);
  }

  .promo-grid--pre-faq .promo-card--live {
    background: linear-gradient(100deg, #062e28 0%, #54301f 100%);
  }

  .promo-grid--pre-faq .promo-card--bonus {
    background: linear-gradient(100deg, #062e28 0%, #3b4416 100%);
  }

  .promo-grid--pre-faq .promo-card--tournaments {
    background: linear-gradient(100deg, #062e28 0%, #65351d 100%);
  }

  .promo-grid--pre-faq .promo-card {
    position: relative;
    display: block;
    height: 184px;
    min-height: 184px;
    padding: 0;
    overflow: hidden;
    transition: box-shadow 0.25s ease;
  }

  .promo-grid--pre-faq .promo-card:hover {
    transform: none;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  }

  .promo-grid--pre-faq .promo-card__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 0;
    max-width: 56%;
    padding: 24px 8px 20px 24px;
  }

  .promo-grid--pre-faq .promo-card__label {
    margin: 0 0 8px;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
  }

  .promo-grid--pre-faq .promo-card__title {
    margin: 0 0 6px;
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.01em;
  }

  .promo-grid--pre-faq .promo-card__desc {
    display: block;
    margin: 0;
    max-width: 220px;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.82);
  }

  .promo-grid--pre-faq .promo-card__media {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: 100%;
    padding-left: 56%;
    width: auto;
    max-width: none;
    margin: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .promo-grid--pre-faq .promo-card__media img {
    display: block;
    flex: 0 1 auto;
    width: auto;
    height: auto;
    max-width: min(148px, 100%);
    max-height: 100%;
    margin: 0;
    opacity: 1;
    object-fit: contain;
    object-position: center center;
    transition: transform 0.35s ease;
    will-change: transform;
  }

  .promo-grid--pre-faq .promo-card:hover .promo-card__media img {
    transform: scale(1.08);
  }

  @media (max-width: 769px) {
    .promo-grid--pre-faq {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .promo-grid--pre-faq .promo-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      height: auto;
      min-height: 0;
      padding: 14px 10px 12px;
      border-radius: 12px;
      text-align: center;
    }

    .promo-grid--pre-faq .promo-card__media {
      position: static;
      order: -1;
      flex: 0 0 auto;
      width: 100%;
      height: auto;
      padding: 0;
      margin: 0 0 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: visible;
    }

    .promo-grid--pre-faq .promo-card__media img {
      width: auto;
      height: auto;
      max-width: 88px;
      max-height: 88px;
      margin: 0 auto;
    }

    .promo-grid--pre-faq .promo-card__content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      flex: 0 0 auto;
      width: 100%;
      height: auto;
      min-height: 0;
      max-width: none;
      padding: 0;
      text-align: center;
      color: var(--white);
    }

    .promo-grid--pre-faq .promo-card__label {
      margin: 0 0 4px;
      font-size: 0.625rem;
      line-height: 1.2;
    }

    .promo-grid--pre-faq .promo-card__title {
      margin: 0 0 6px;
      font-size: 0.8125rem;
      font-weight: 800;
      line-height: 1.15;
      text-transform: uppercase;
    }

    .promo-grid--pre-faq .promo-card__desc {
      max-width: none;
      font-size: 0.6875rem;
      line-height: 1.35;
      color: rgba(255, 255, 255, 0.85);
    }

    .promo-grid--pre-faq .promo-card:hover {
      box-shadow: none;
    }

    .promo-grid--pre-faq .promo-card:hover .promo-card__media img {
      transform: scale(1.06);
    }
  }

  .home-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .section-head__title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--white);
  }

  .section-head__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
  }

  .section-head__link:hover {
    color: var(--white);
  }

  .games-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
  }

  .games-grid .game-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: linear-gradient(180deg, var(--sb-card-2) 0%, var(--sb-card) 100%);
    border: 1px solid var(--sb-border);
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: auto;
    text-decoration: none;
    color: inherit;
    transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
  }

  .games-grid .game-card:hover {
    transform: translateY(-2px);
    border-color: rgba(241, 90, 34, 0.45);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  }

  .game-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    padding: 3px 8px;
    border-radius: 4px;
    background: var(--brand-orange);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .game-card__media {
    position: relative;
    aspect-ratio: 3 / 4;
    background: rgba(0, 0, 0, 0.2);
  }

  .game-card__placeholder {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border: none;
    background: rgba(0, 0, 0, 0.2);
  }

  .game-card__placeholder img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .game-card__meta {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    padding: 8px 10px 10px;
    background: var(--sb-surface-2);
    border-top: 1px solid var(--sb-border);
    min-height: 52px;
  }

  .game-card__title {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--white);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .game-card__provider {
    margin-top: 2px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
  }

  @media (min-width: 640px) {
    .games-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }

  @media (min-width: 768px) {
    .games-grid {
      grid-template-columns: repeat(5, minmax(0, 1fr));
    }
  }

  @media (min-width: 1280px) {
    .games-grid {
      grid-template-columns: repeat(6, minmax(0, 1fr));
    }
  }

  @media (max-width: 900px) {
    .promo-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 767px) {
    .page-stack {
      gap: 12px;
      padding-top: 12px;
      padding-bottom: 24px;
    }

    .container {
      padding-left: 16px;
      padding-right: 16px;
    }

    .page-stack > .promo-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .page-stack > .promo-grid .promo-card {
      position: relative;
      display: block;
      height: 88px;
      min-height: 88px;
      padding: 0;
      border-radius: 12px;
      overflow: hidden;
    }

    .page-stack > .promo-grid .promo-card__content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
      min-height: 0;
      max-width: 58%;
      padding: 10px 6px 10px 12px;
    }

    .page-stack > .promo-grid .promo-card__label {
      margin: 0 0 4px;
      font-size: 0.6875rem;
      font-weight: 500;
      line-height: 1.2;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.88);
    }

    .page-stack > .promo-grid .promo-card__title {
      font-size: 0.875rem;
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: 0.01em;
    }

    .page-stack > .promo-grid .promo-card__media {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 40%;
      z-index: 1;
      width: auto;
      max-width: none;
      height: 100%;
      margin: 0;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      overflow: hidden;
      pointer-events: none;
    }

    .page-stack > .promo-grid .promo-card__media img {
      display: block;
      width: auto;
      height: auto;
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      object-position: center right;
    }

    .home-section {
      gap: 8px;
    }

    .section-head__title {
      font-size: 1rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.02em;
    }

    .section-head__link {
      font-size: 0.875rem;
    }

    .games-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .games-grid .game-card {
      border-radius: 4px;
      border-color: rgb(39, 62, 99);
    }

    .game-card__media {
      aspect-ratio: 2 / 3;
    }

    .game-card__meta {
      padding: 4px;
      text-align: center;
      min-height: 40px;
    }

    .game-card__title {
      font-size: 0.75rem;
      font-weight: 700;
      line-height: 1.33;
    }

    .game-card__provider {
      margin-top: 0;
      font-size: 0.625rem;
      line-height: 1.2;
      color: rgba(255, 255, 255, 0.92);
    }

    .game-card__badge {
      top: 6px;
      left: 6px;
      padding: 2px 6px;
      font-size: 0.5625rem;
    }

    .page-stack > .promo-grid .promo-card:hover {
      transform: none;
    }

    .games-grid .game-card:hover {
      transform: none;
    }

  }

  .game-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid var(--border);
  }

  .game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(241,90,34,0.3);
    border-color: var(--orange);
  }

  .game-card-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    text-align: center;
    padding: 12px;
    position: relative;
  }

  .game-card-1 { background: linear-gradient(135deg, var(--sb-surface) 0%, var(--sb-surface-2) 55%, rgba(200, 240, 0, 0.18) 100%); }
  .game-card-2 { background: linear-gradient(135deg, var(--sb-surface) 0%, var(--sb-surface-2) 55%, rgba(241, 90, 34, 0.22) 100%); }
  .game-card-3 { background: linear-gradient(135deg, var(--sb-surface) 0%, var(--sb-surface-2) 55%, rgba(241, 90, 34, 0.35) 100%); }
  .game-card-4 { background: linear-gradient(135deg, var(--sb-surface) 0%, var(--sb-surface-2) 55%, rgba(246, 229, 0, 0.16) 100%); }
  .game-card-5 { background: linear-gradient(135deg, var(--sb-surface) 0%, var(--sb-surface-2) 55%, rgba(88, 178, 42, 0.2) 100%); }
  .game-card-6 { background: linear-gradient(135deg, var(--sb-surface) 0%, var(--sb-surface-2) 55%, rgba(224, 71, 53, 0.18) 100%); }

  .game-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--orange);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 3px;
    text-transform: uppercase;
  }

  .game-badge.hot {
    background: #e53935;
  }

  .game-badge.new {
    background: #00897b;
  }

  .game-title-card {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
    text-align: center;
  }

  /* ===== PROMOTIONS STRIP ===== */
  .promo-strip {
    background: linear-gradient(135deg, var(--dark2) 0%, var(--dark3) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px 16px;
  }

  .promo-strip-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
  }

  .promo-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--border);
    transition: border-color 0.2s;
  }

  .promo-card:hover {
    border-color: var(--orange);
  }

  .promo-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .promo-text-label {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
  }

  .promo-text-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
  }

  /* ===== MAIN CONTENT (Grattiano SEO panels) ===== */
  .main-content-wrap {
    margin: 0;
    padding: 0;
  }

  .content-area {
    border-radius: 16px;
    padding: clamp(28px, 4vw, 48px) clamp(24px, 3.5vw, 56px);
  }

  .toc-wrap {
    margin-bottom: 28px;
    padding: 16px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--sb-border);
  }

  .bonus-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--sb-border);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .bonus-icon {
    font-size: 2rem;
    flex-shrink: 0;
  }

  .bonus-text-content {
    flex: 1;
  }

  .bonus-label-text {
    font-size: 0.75rem;
    color: var(--sb-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
  }

  .bonus-value-text {
    font-size: 1.05rem;
    color: var(--white);
    font-weight: 700;
  }

  .content-area,
  .content-area p,
  .content-area li {
    color: var(--sb-muted);
    line-height: 1.75;
  }

  .content-area p {
    margin-bottom: 16px;
  }

  .content-area h1,
  .content-area h2,
  .content-area h3,
  .content-area h4 {
    color: var(--white);
    font-weight: 800;
    line-height: 1.25;
    margin: 28px 0 12px;
  }

  .content-area h2 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
  }

  .content-area h3 {
    font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  }

  .content-area a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
  }

  .content-area a:hover {
    color: var(--orange-light);
  }

  .content-title {
    margin: 0 0 20px;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    color: var(--white);
    letter-spacing: -0.02em;
  }

  .content-subtitle {
    margin: 28px 0 12px;
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.01em;
  }

  .content-area .section-sep {
    display: none;
  }

  .content-area .content-cta {
    margin-top: 28px;
    padding: 28px 24px;
    border-radius: 12px;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--sb-border);
  }

  .content-area .content-cta__title {
    margin: 0 0 8px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
  }

  .content-area .content-cta__text {
    margin: 0 0 16px;
    font-size: 0.92rem;
    color: var(--sb-muted);
  }

  .content-area .btn-cta {
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
  }

  /* Tables inside content */
  .content-area .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 24px;
    border-radius: 12px;
    border: 1px solid var(--sb-border);
    background: rgba(255, 255, 255, 0.02);
  }

  .content-area table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
    background: transparent;
  }

  .content-area thead {
    background: var(--sb-surface-3);
  }

  .content-area thead th {
    padding: 12px 16px;
    text-align: left;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--sb-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .content-area tbody tr {
    border-bottom: 1px solid var(--sb-border);
    transition: background 0.15s;
  }

  .content-area tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
  }

  .content-area tbody tr:last-child {
    border-bottom: none;
  }

  .content-area tbody td {
    padding: 14px 16px;
    font-size: 0.9rem;
    color: var(--sb-muted);
  }

  .content-area tbody td:first-child {
    color: var(--white);
    font-weight: 600;
  }

  /* Legacy table fallback outside content-area */
  .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 24px;
    border-radius: 12px;
    border: 1px solid var(--sb-border);
  }

  table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
    background: var(--sb-surface);
  }

  thead {
    background: rgba(255, 255, 255, 0.04);
  }

  thead th {
    padding: 12px 16px;
    text-align: left;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--sb-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  tbody tr {
    border-bottom: 1px solid var(--sb-border);
    transition: background 0.15s;
  }

  tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
  }

  tbody tr:last-child {
    border-bottom: none;
  }

  tbody td {
    padding: 14px 16px;
    font-size: 0.9rem;
    color: var(--sb-muted);
  }

  tbody td:first-child {
    color: var(--white);
    font-weight: 600;
  }

  @media (max-width: 600px) {
    .content-area table,
    table {
      min-width: unset;
    }

    .content-area thead,
    thead {
      display: none;
    }

    .content-area tbody tr,
    tbody tr {
      display: block;
      margin-bottom: 1em;
      border: 1px solid var(--sb-border);
      border-radius: 10px;
      overflow: hidden;
    }

    .content-area tbody td,
    tbody td {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.6em 1em;
      border-bottom: 1px solid var(--sb-border);
    }

    .content-area tbody td:last-child,
    tbody td:last-child {
      border-bottom: none;
    }

    .content-area tbody td::before,
    tbody td::before {
      content: attr(data-label);
      font-weight: 700;
      color: var(--white);
      margin-right: 12px;
      flex-shrink: 0;
    }
  }

  /* ===== FAQ SECTION ===== */
  .faq-section {
    border-radius: 16px;
    padding: clamp(28px, 4vw, 40px) clamp(24px, 3.5vw, 48px);
  }

  .faq-title {
    margin: 0 0 20px;
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .faq-title::before {
    content: '?';
    background: rgba(241, 90, 34, 0.14);
    color: var(--orange);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid rgba(241, 90, 34, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 800;
    flex-shrink: 0;
  }

  .faq-section details {
    margin-bottom: 10px;
    padding: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--sb-border);
    overflow: hidden;
    transition: background 0.2s, border-color 0.2s;
  }

  .faq-section details:last-child {
    margin-bottom: 0;
  }

  .faq-section details:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
  }

  .faq-section details[open] {
    border-color: rgba(241, 90, 34, 0.28);
    background: rgba(255, 255, 255, 0.04);
  }

  .faq-section summary {
    cursor: pointer;
    font-weight: 700;
    padding: 16px 18px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.35;
    transition: color 0.2s;
    user-select: none;
  }

  .faq-section summary::-webkit-details-marker {
    display: none;
  }

  .faq-section summary::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--orange);
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1;
  }

  .faq-section details[open] summary {
    color: var(--white);
    border-bottom: 1px solid var(--sb-border);
  }

  .faq-section details[open] summary::after {
    content: '−';
  }

  .faq-section details p {
    padding: 16px 18px 18px;
    color: var(--sb-muted);
    line-height: 1.75;
    font-size: 0.92rem;
    margin: 0;
  }

  .faq-section details p a {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .faq-section details p a:hover {
    color: var(--orange-light);
  }

  /* ===== REVIEWS SECTION ===== */
  .reviews-section {
    border-radius: 16px;
    padding: clamp(28px, 4vw, 40px) clamp(24px, 3.5vw, 48px);
  }

  .reviews-title {
    margin: 0 0 20px;
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.01em;
  }

  .reviews-section .comment {
    background: rgba(255, 255, 255, 0.03);
    padding: 16px 18px;
    border-radius: 12px;
    margin-bottom: 10px;
    border: 1px solid var(--sb-border);
    transition: background 0.2s, border-color 0.2s;
  }

  .reviews-section .comment:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
  }

  .reviews-section .comment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
  }

  .reviews-section .comment-author {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
  }

  .reviews-section .comment-date {
    font-size: 0.8rem;
    color: rgba(148, 163, 184, 0.85);
  }

  .reviews-section .comment-stars {
    color: var(--orange);
    font-size: 0.88rem;
    letter-spacing: 2px;
  }

  .reviews-section .comment-text {
    margin-top: 0;
    line-height: 1.65;
    color: var(--sb-muted);
    font-size: 0.92rem;
  }

  .reviews-section .review-form-wrap {
    margin-top: 24px;
    padding: 20px 22px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--sb-border);
  }

  .reviews-section .review-form-title {
    margin: 0 0 16px;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }

  .reviews-section .review-form-title::before {
    display: none;
  }

  .reviews-section .review-form-wrap form {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .reviews-section .review-form-wrap input[type="text"],
  .reviews-section .review-form-wrap textarea {
    background: rgba(12, 20, 39, 0.55);
    border: 1px solid var(--sb-border);
    border-radius: 10px;
    color: var(--white);
    padding: 12px 14px;
    font-size: 0.93rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
  }

  .reviews-section .review-form-wrap input[type="text"]::placeholder,
  .reviews-section .review-form-wrap textarea::placeholder {
    color: rgba(148, 163, 184, 0.75);
  }

  .reviews-section .review-form-wrap input[type="text"]:focus,
  .reviews-section .review-form-wrap textarea:focus {
    border-color: rgba(241, 90, 34, 0.55);
    box-shadow: 0 0 0 3px rgba(241, 90, 34, 0.12);
  }

  .reviews-section .review-form-wrap textarea {
    min-height: 100px;
    resize: vertical;
  }

  .reviews-section .btn-submit-review {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.2s;
    align-self: flex-start;
  }

  .reviews-section .btn-submit-review:hover {
    background: var(--orange-light);
    transform: translateY(-1px);
  }

  /* ===== AUTHOR SECTION ===== */
  .author-section {
    margin: 0;
    padding: 0;
  }

  .author-card {
    border-radius: 16px;
    padding: clamp(24px, 3.5vw, 32px);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  }

  .author-card .author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--sb-muted);
    overflow: hidden;
  }

  .author-card .author-avatar__icon {
    display: block;
    width: 38px;
    height: 38px;
  }

  .author-card .author-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .author-card .author-info {
    flex: 1;
    min-width: 0;
  }

  .author-card .author-label {
    font-size: 0.72rem;
    color: var(--sb-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
  }

  .author-card .author-name {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }

  .author-card .author-bio {
    color: var(--sb-muted);
    font-size: 0.92rem;
    line-height: 1.7;
  }

  /* ===== FOOTER (SpinBetter reference) ===== */
  .site-footer {
    background: #003b31;
    color: #ffffff;
    padding: 56px 0 44px;
    border-top: 1px solid rgba(200, 240, 0, 0.12);
    margin-top: 4px;
  }

  .site-footer .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 22px;
    align-items: center;
    margin-bottom: 36px;
  }

  .footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.35;
    transition: color 0.2s;
  }

  .footer-nav a:hover {
    color: var(--sb-lime);
  }

  .footer-main {
    display: grid;
    grid-template-columns: 240px 1fr auto;
    gap: 42px;
    align-items: start;
  }

  .footer-brand {
    min-width: 0;
  }

  .footer-logo {
    display: block;
    text-decoration: none;
  }

  .footer-logo img {
    display: block;
    max-width: 190px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: left center;
  }

  .footer-copy {
    margin: 26px 0 0;
    color: var(--sb-lime);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
  }

  .footer-description {
    max-width: 760px;
    margin: 0;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.65;
  }

  .footer-dmca {
    display: inline-flex;
    align-items: stretch;
    height: 22px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 2px;
    overflow: hidden;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    margin-top: 2px;
    flex-shrink: 0;
  }

  .footer-dmca__left {
    display: inline-flex;
    align-items: center;
    background: #8ac440;
    color: #ffffff;
    padding: 4px 6px;
  }

  .footer-dmca__right {
    display: inline-flex;
    align-items: center;
    background: #2b2b2b;
    color: #ffffff;
    padding: 4px 7px;
  }

  /* ===== COOKIE BANNER ===== */
  .cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 998;
    display: flex;
    align-items: center;
    gap: 12px;
    width: max-content;
    max-width: min(520px, calc(100vw - 200px));
    padding: 10px 12px 10px 14px;
    border-radius: 10px;
    background: rgba(17, 27, 45, 0.96);
    border: 1px solid var(--sb-border);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
  }

  .cookie-banner.is-hidden {
    display: none;
  }

  .cookie-banner__icon {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
  }

  .cookie-banner__text {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
    white-space: nowrap;
  }

  .cookie-banner__text strong {
    color: var(--orange);
    font-weight: 700;
  }

  .cookie-banner__btn {
    flex-shrink: 0;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    background: var(--orange);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }

  .cookie-banner__btn:hover {
    background: var(--orange-light);
    transform: translateY(-1px);
  }

  /* ===== FLOATING CTA ===== */
  .floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
  }

  .floating-cta__link {
    gap: 10px;
    padding: 10px 16px 10px 12px;
    border-radius: 10px;
  }

  .floating-cta__icon {
    display: block;
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
  }

  .floating-cta__text {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
  }

  /* ===== DIVIDER ===== */
  .divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border) 30%, var(--border) 70%, transparent 100%);
    margin: 0;
  }

  /* ===== STATS BAR ===== */
  .stats-bar {
    background: var(--dark2);
    padding: 20px 16px;
    border-bottom: 1px solid var(--border);
  }

  .stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-item {
    text-align: center;
  }

  .stat-number {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 4px;
  }

  .stat-label {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }


  /* ===== TRUST BADGES ===== */
  .trust-section {
    background: var(--dark2);
    padding: 24px 16px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .trust-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--gray);
  }

  .trust-icon {
    font-size: 1.3rem;
    color: var(--orange);
  }

  /* ===== GAME PROVIDERS ===== */
  .providers-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
  }

  .providers-section--payments {
    gap: 16px;
    margin-top: 0;
    margin-bottom: 20px;
    padding: 8px 0 4px;
  }

  .providers-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .providers-section__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--white);
  }

  .providers-section__nav {
    display: none;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }

  .providers-section.is-scrollable .providers-section__nav {
    display: flex;
  }

  .providers-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    border-radius: 4px;
    background: var(--sb-card);
    color: rgba(255, 255, 255, 0.92);
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
  }

  .providers-nav-btn:hover:not(:disabled) {
    background: var(--sb-card-2);
  }

  .providers-nav-btn:disabled {
    opacity: 0.45;
    cursor: default;
  }

  .providers-nav-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .providers-carousel {
    position: relative;
    width: 100%;
    min-width: 0;
  }

  .providers-carousel__viewport {
    overflow: hidden;
    width: 100%;
    min-width: 0;
  }

  .providers-track {
    display: flex;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-top: 15px;
  }

  .providers-track::-webkit-scrollbar {
    display: none;
  }

  .providers-card {
    flex: 0 0 109px;
    width: 109px;
    min-width: 109px;
    height: 64px;
    min-height: 64px;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    border-radius: 6px;
    background: var(--sb-surface-2);
    border: none;
    text-decoration: none;
    transition: background 0.2s ease;
  }

  .providers-card:hover {
    background: var(--sb-card);
    transform: none;
  }

  .providers-card--static {
    cursor: default;
    pointer-events: none;
  }

  .providers-card--static:hover {
    background: var(--sb-surface-2);
    transform: none;
  }

  .providers-section--payments .providers-card {
    flex: 0 0 96px;
    width: 96px;
    min-width: 96px;
    height: 48px;
    min-height: 48px;
    padding: 8px;
  }

  .providers-section--payments .providers-track {
    justify-content: center;
  }

  .providers-section--payments.is-scrollable .providers-track {
    justify-content: flex-start;
  }

  .providers-card img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    opacity: 1;
    object-fit: contain;
    object-position: center;
    transition: opacity 0.3s ease;
  }

  @media (max-width: 1023px) {
    .providers-carousel {
      margin-left: -16px;
      margin-right: -16px;
      padding-left: 16px;
      padding-right: 16px;
    }

    .providers-section.is-scrollable .providers-section__head {
      padding-right: 16px;
    }
  }

  @media (min-width: 1024px) {

    .providers-section__title {
      font-size: 1.125rem;
    }

    .providers-nav-btn {
      width: 40px;
      height: 40px;
      border-radius: 8px;
    }
  }

  @media (min-width: 1280px) {
    .providers-card {
      flex: 0 0 145.5px;
      width: 145.5px;
      min-width: 145.5px;
    }
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .footer-main {
      grid-template-columns: 200px 1fr;
      gap: 32px;
    }

    .footer-dmca {
      grid-column: 1 / -1;
      justify-self: start;
    }
  }

  @media (max-width: 768px) {
    :root {
      --header-h: 60px;
    }

    .top-nav-inner {
      gap: 12px;
      padding: 0 12px;
      height: var(--header-h);
    }

    .header-nav {
      display: none;
    }

    .nav-drawer__nav-group--header {
      display: flex;
    }

    .logo-link {
      margin-right: 0;
    }

    .nav-burger {
      width: 36px;
      height: 36px;
      margin-right: 8px;
      gap: 4px;
    }

    .nav-burger__bar {
      width: 16px;
      height: 1.75px;
    }

    .nav-search {
      display: none;
    }

    .btn-signup,
    .btn-signin {
      min-height: 36px;
      padding: 0 12px;
      font-size: 0.8125rem;
    }

    .hero-bonus-box {
      padding: 20px 28px;
    }

    .game-grid {
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    .content-area,
    .reviews-section,
    .faq-section {
      padding: 22px 18px;
    }

    .content-title {
      font-size: 1.35rem;
    }

    .author-card {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 22px 18px;
    }

    .author-card .author-avatar {
      width: 64px;
      height: 64px;
    }

    .cookie-banner {
      bottom: 12px;
      left: 12px;
      right: 12px;
      transform: none;
      width: auto;
      max-width: none;
    }

    .cookie-banner__text {
      white-space: normal;
    }

    body:not(.cookies-accepted) .floating-cta {
      bottom: calc(12px + 52px + 10px);
    }

    .floating-cta {
      bottom: 12px;
      right: 12px;
    }

    body.cookies-accepted .floating-cta {
      bottom: 12px;
    }

    .site-footer {
      padding: 40px 0 32px;
    }

    .site-footer .footer-inner {
      padding: 0 18px;
    }

    .footer-nav {
      gap: 14px 18px;
      margin-bottom: 28px;
    }

    .footer-nav a {
      font-size: 14px;
    }

    .footer-main {
      grid-template-columns: 1fr;
      gap: 28px;
    }

    .footer-description {
      max-width: none;
    }

    .footer-dmca {
      margin-top: 0;
    }
  }

  @media (max-width: 600px) {
    .site-footer {
      padding: 32px 0 28px;
    }

    .footer-nav {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 24px;
    }

    .footer-nav a {
      font-size: 14px;
    }

    .footer-logo img {
      max-width: 160px;
    }

    .footer-copy {
      margin-top: 18px;
      font-size: 14px;
    }

    .footer-description {
      font-size: 14px;
      line-height: 1.6;
    }
  }

  @media (max-width: 480px) {
    .logo-img {
      height: 40px;
      max-width: 130px;
    }

    .btn-signin {
      display: none;
    }

    .game-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }

    .promo-strip-inner {
      grid-template-columns: 1fr;
    }

    .stats-inner {
      gap: 16px;
    }

    .stat-number {
      font-size: 1.3rem;
    }

    .hero-bonus-box {
      padding: 18px 20px;
    }

    .btn-cta {
      font-size: 0.95rem;
      padding: 14px 28px;
    }

    .floating-cta__link {
      padding: 8px 14px 8px 10px;
    }

    .floating-cta__icon {
      width: 36px;
      height: 36px;
    }

    .floating-cta__text {
      font-size: 0.8125rem;
    }
  }

  /* ===== UTILITY ===== */
  .text-orange { color: var(--orange); }
  .text-gold { color: var(--gold); }
  .text-gray { color: var(--gray); }
  .mt-0 { margin-top: 0; }
  .mb-0 { margin-bottom: 0; }

  @media (max-width: 768px) {
    .hero-swiper {
      aspect-ratio: auto;
      height: 200px;
      min-height: 200px;
      border-radius: 12px;
    }

    .hero-slide-panel {
      padding: 12px 12px 28px;
    }

    .hero-slide__art {
      top: 0;
      right: -27%;
      bottom: 0;
      left: auto;
      width: 92%;
      max-width: 344px;
      height: 100%;
      z-index: 0;
      overflow: visible;
      display: block;
    }

    .hero-slide__art img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
    }

    .hero-slide__content {
      position: relative;
      z-index: 2;
      max-width: 172px;
      height: 100%;
      justify-content: flex-start;
    }

    .hero-slide__headline {
      flex: 0 1 auto;
      min-height: 72px;
      margin: 0;
      justify-content: center;
    }

    .hero-card__eyebrow {
      margin: 0 0 12px;
      font-size: 0.625rem;
      font-weight: 800;
      line-height: 1.2;
      letter-spacing: 0.04em;
    }

    .hero-card__title {
      max-width: none;
      font-size: 1rem;
      font-weight: 800;
      line-height: 1.5;
      letter-spacing: 0;
    }

    .hero-slide__content .hero-card__cta {
      margin-top: auto;
    }

    .hero-banner .hero-card__cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
      min-height: 36px;
      padding: 0 20px;
      font-size: 0.875rem;
      font-weight: 800;
      border-radius: 999px;
    }

    .hero-banner__pagination {
      bottom: 12px;
    }

    .hero-dot {
      width: 22px;
      height: 3px;
    }
  }

  @media (min-width: 768px) {
    .hero-swiper {
      aspect-ratio: 1276 / 372;
    }

    .hero-slide-panel {
      padding: 20px 32px 40px;
    }

    .hero-slide__art {
      right: -12%;
      width: 62%;
    }

    .hero-slide__content {
      max-width: min(44%, 480px);
    }
  }

  @media (min-width: 1280px) {
    .hero-slide__art {
      right: 0;
      width: 55%;
      max-width: 640px;
    }
  }

  /* ===== SECTION SEPARATOR ===== */
  .section-sep {
    height: 4px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--orange-dark) 50%, transparent 100%);
    border-radius: 2px;
    margin-bottom: 20px;
    max-width: 80px;
  }

  /* Links styled as UI controls */
  a.btn-signup,
  a.btn-signin,
  a.nav-search,
  a.logo-link,
  a.hero-card__cta {
    text-decoration: none;
  }

  /* ===== INNER PAGE HERO ===== */
  .page-hero {
    position: relative;
    padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 40px);
    border-radius: 16px;
    overflow: hidden;
    background:
      radial-gradient(circle at 85% 15%, rgba(200, 240, 0, 0.1), transparent 42%),
      linear-gradient(135deg, var(--sb-bg) 0%, var(--sb-card-2) 55%, var(--sb-header-2) 100%);
    border: 1px solid var(--sb-border);
    box-shadow: var(--sb-shadow-soft);
  }

  .page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(200, 240, 0, 0.12) 0%, transparent 55%);
    pointer-events: none;
  }

  .page-hero > * {
    position: relative;
    z-index: 1;
  }

  .page-hero__eyebrow {
    margin: 0 0 10px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
  }

  .page-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    letter-spacing: -0.02em;
  }

  .page-hero__lead {
    margin: 0 0 20px;
    max-width: 62ch;
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
  }

  .page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .page-hero__actions .btn-cta {
    min-height: 44px;
    padding: 0 22px;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 700;
  }

  /* ===== CONTENT BLOCKS (LANDING SECTIONS) ===== */
  .landing-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border-radius: 16px;
  }

  .landing-section__title {
    margin: 0;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.01em;
  }

  .landing-section__text {
    margin: 0;
    color: var(--sb-muted);
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .landing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .landing-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-card {
    padding: 18px;
    border-radius: 12px;
    background: linear-gradient(180deg, var(--sb-card-2) 0%, var(--sb-card) 100%);
    border: 1px solid var(--sb-border);
    transition: border-color 0.2s, transform 0.2s;
  }

  .landing-card:hover {
    border-color: rgba(241, 90, 34, 0.35);
    transform: translateY(-2px);
  }

  .landing-card__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: rgba(241, 90, 34, 0.14);
    border: 1px solid rgba(241, 90, 34, 0.25);
  }

  .landing-card h3 {
    margin: 0 0 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
  }

  .landing-card p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.55;
    color: var(--sb-muted);
  }

  .steps-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    list-style: none;
    counter-reset: step;
  }

  .steps-list__item {
    position: relative;
    padding: 18px 16px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--sb-border);
  }

  .steps-list__item::before {
    counter-increment: step;
    content: counter(step);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-bottom: 10px;
    border-radius: 8px;
    background: var(--brand-orange);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 800;
  }

  .steps-list__title {
    margin: 0 0 6px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
  }

  .steps-list__text {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--sb-muted);
  }

  .promo-code-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(241, 90, 34, 0.12) 0%, rgba(200, 240, 0, 0.08) 100%);
    border: 1px dashed rgba(241, 90, 34, 0.45);
  }

  .promo-code-box__label {
    margin: 0 0 4px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sb-muted);
  }

  .promo-code-box__code {
    margin: 0;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.06em;
  }

  .promo-code-box__hint {
    margin: 6px 0 0;
    font-size: 0.82rem;
    color: var(--sb-muted);
  }

  .rg-notice {
    padding: 18px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--sb-orange);
  }

  .rg-notice__title {
    margin: 0 0 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
  }

  .rg-notice p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--sb-muted);
  }

  .rg-notice a {
    color: var(--orange);
    font-weight: 600;
  }

  .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .trust-grid__item {
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--sb-border);
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
  }

  .trust-grid__item span {
    display: block;
    margin-top: 4px;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--sb-muted);
  }

  /* ===== LOGIN DEMO CARD ===== */
  .login-wrap {
    max-width: 420px;
    margin: 0 auto;
  }

  .login-card {
    padding: 28px 24px;
    border-radius: 16px;
  }

  .login-card__badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(241, 90, 34, 0.15);
    border: 1px solid rgba(241, 90, 34, 0.3);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--orange);
  }

  .login-card h2 {
    margin: 0 0 8px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
  }

  .login-card__sub {
    margin: 0 0 20px;
    font-size: 0.85rem;
    color: var(--sb-muted);
    line-height: 1.5;
  }

  .login-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .login-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
  }

  .login-form input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--sb-border-strong);
    background: #00231f;
    color: var(--sb-text);
    font-size: 0.93rem;
    font-family: inherit;
    outline: none;
  }

  .login-form input::placeholder {
    color: var(--sb-muted);
  }

  .login-form input:focus {
    border-color: var(--sb-yellow);
    box-shadow: 0 0 0 3px rgba(255, 242, 0, 0.18);
  }

  .login-form input:disabled {
    opacity: 0.65;
    cursor: not-allowed;
  }

  .login-form__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
  }

  .login-form__remember {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--sb-muted);
  }

  .login-form__remember input {
    width: auto;
  }

  .login-form__submit {
    width: 100%;
    min-height: 44px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 700;
    font-family: inherit;
    cursor: not-allowed;
  }

  .login-card__note {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--sb-border);
    font-size: 0.78rem;
    line-height: 1.55;
    color: var(--sb-muted);
  }

  .info-callout {
    margin-top: 20px;
    padding: 16px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--sb-border);
  }

  .info-callout h3 {
    margin: 0 0 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
  }

  .info-callout p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--sb-muted);
  }

  .page-stack--inner {
    padding-top: 16px;
    padding-bottom: 32px;
  }

  .page-stack--inner .container--seo {
    padding-top: 0;
  }

  @media (max-width: 900px) {
    .landing-grid,
    .landing-grid--2,
    .trust-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .steps-list {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  .landing-card--action {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
  }

  .review-form-demo input[type="text"],
  .review-form-demo textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--sb-border-strong);
    background: #00231f;
    color: var(--sb-text);
    font-size: 0.93rem;
    font-family: inherit;
    margin-bottom: 12px;
    pointer-events: none;
    opacity: 0.85;
  }

  .review-form-demo input[type="text"]::placeholder,
  .review-form-demo textarea::placeholder {
    color: var(--sb-muted);
  }

  .review-form-demo input[type="text"]:focus,
  .review-form-demo textarea:focus {
    outline: none;
    border-color: var(--sb-yellow);
    box-shadow: 0 0 0 3px rgba(255, 242, 0, 0.18);
  }

  .review-form-demo textarea {
    min-height: 100px;
    resize: none;
  }

  .review-form-demo .btn-submit-review {
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
  }

  @media (max-width: 560px) {
    .landing-grid,
    .landing-grid--2,
    .trust-grid,
    .steps-list {
      grid-template-columns: 1fr;
    }

    .promo-code-box {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  /* ===== BONUS PAGE ===== */
  .page-stack--bonus {
    gap: 28px;
  }

  .bonus-page-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    padding: 32px 28px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--sb-card) 0%, var(--sb-header) 55%, #04372f 100%);
    border: 1px solid var(--sb-border);
    box-shadow: var(--sb-shadow-soft);
  }

  .bonus-page-hero__eyebrow {
    margin: 0 0 10px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sb-lime);
  }

  .bonus-page-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--sb-text);
    letter-spacing: -0.02em;
  }

  .bonus-page-hero__lead {
    margin: 0 0 22px;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--sb-text-soft);
  }

  .bonus-page-hero__lead strong {
    color: var(--sb-yellow);
    font-weight: 800;
  }

  .bonus-page-hero .page-hero__media {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bonus-page-hero .page-hero__media img {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
  }

  .btn-bonus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 24px;
    border: none;
    border-radius: 10px;
    background: var(--sb-purple);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 8px 22px rgba(184, 46, 230, 0.32);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  }

  .btn-bonus:hover {
    background: var(--sb-purple-hover);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(184, 46, 230, 0.4);
  }

  .btn-bonus--hero {
    min-height: 48px;
    padding: 0 28px;
    font-size: 0.95rem;
  }

  .bonus-cards-section {
    margin: 0;
  }

  .bonus-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .bonus-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(180deg, var(--sb-card-2) 0%, var(--sb-card) 100%);
    border: 1px solid var(--sb-border);
    box-shadow: var(--sb-shadow-soft);
    transition: border-color 0.2s, transform 0.2s;
  }

  .bonus-card:hover {
    border-color: rgba(200, 240, 0, 0.35);
    transform: translateY(-2px);
  }

  .bonus-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
  }

  .bonus-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .bonus-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 8px;
    padding: 16px 16px 18px;
  }

  .bonus-card__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--sb-text);
  }

  .bonus-card__text {
    margin: 0;
    flex: 1 1 auto;
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--sb-muted);
  }

  .bonus-card__value {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--sb-lime);
  }

  .bonus-card__value strong {
    color: var(--sb-yellow);
    font-weight: 800;
  }

  .bonus-card .btn-bonus {
    width: 100%;
    margin-top: 4px;
  }

  .promo-code-strip {
    padding: 0;
  }

  .promo-code-strip__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
    padding: 22px 26px;
    border-radius: 14px;
    background: linear-gradient(90deg, var(--sb-card) 0%, #04372f 100%);
    border: 1px solid var(--sb-border);
    box-shadow: var(--sb-shadow-soft);
  }

  .promo-code-strip__text {
    flex: 1 1 280px;
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--sb-text-soft);
  }

  .promo-code-strip__code {
    flex-shrink: 0;
    padding: 12px 22px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px dashed var(--sb-lime);
    color: var(--sb-yellow);
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-align: center;
  }

  .btn-bonus--strip {
    flex-shrink: 0;
  }

  .bonus-content {
    padding: 28px 28px 32px;
    border-radius: 16px;
    background: linear-gradient(180deg, var(--sb-card-2) 0%, var(--sb-card) 100%);
    border: 1px solid var(--sb-border);
    box-shadow: var(--sb-shadow-soft);
    color: var(--sb-muted);
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .bonus-content h2 {
    margin: 28px 0 12px;
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 800;
    color: var(--sb-text);
    line-height: 1.25;
  }

  .bonus-content h2:first-child {
    margin-top: 0;
  }

  .bonus-content h3 {
    margin: 20px 0 10px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sb-text-soft);
  }

  .bonus-content p {
    margin: 0 0 14px;
  }

  .bonus-content a {
    color: var(--sb-lime);
    font-weight: 600;
  }

  .bonus-content a:hover {
    color: var(--sb-yellow-hover);
  }

  .bonus-faq {
    padding: 28px 24px 32px;
    border-radius: 16px;
    background: linear-gradient(180deg, var(--sb-card-2) 0%, var(--sb-card) 100%);
    border: 1px solid var(--sb-border);
    box-shadow: var(--sb-shadow-soft);
  }

  .bonus-faq__heading {
    margin: 0 0 18px;
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 800;
    color: var(--sb-text);
  }

  .bonus-faq .faq-item {
    margin-bottom: 10px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid var(--sb-border);
    overflow: hidden;
  }

  .bonus-faq .faq-item:last-child {
    margin-bottom: 0;
  }

  .bonus-faq .faq-item summary {
    cursor: pointer;
    padding: 14px 16px;
    list-style: none;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--sb-text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    user-select: none;
  }

  .bonus-faq .faq-item summary::-webkit-details-marker {
    display: none;
  }

  .bonus-faq .faq-item summary::after {
    content: "+";
    color: var(--sb-lime);
    font-size: 1.2rem;
    font-weight: 800;
    flex-shrink: 0;
  }

  .bonus-faq .faq-item[open] summary::after {
    content: "−";
  }

  .bonus-faq .faq-item[open] summary {
    border-bottom: 1px solid var(--sb-border);
  }

  .bonus-faq .faq-item p {
    margin: 0;
    padding: 14px 16px 16px;
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--sb-muted);
  }

  @media (max-width: 1024px) {
    .bonus-cards-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bonus-page-hero {
      gap: 24px;
      padding: 28px 22px;
    }
  }

  @media (max-width: 900px) {
    .bonus-page-hero {
      grid-template-columns: 1fr;
    }

    .bonus-page-hero .page-hero__media {
      order: -1;
    }

    .promo-code-strip__inner {
      flex-direction: column;
      align-items: stretch;
      text-align: center;
    }

    .promo-code-strip__code {
      width: 100%;
    }

    .btn-bonus--strip {
      width: 100%;
    }
  }

  @media (max-width: 600px) {
    .bonus-cards-grid {
      grid-template-columns: 1fr;
    }

    .bonus-page-hero {
      padding: 22px 18px;
    }

    .bonus-page-hero h1 {
      font-size: 1.35rem;
    }

    .btn-bonus,
    .btn-bonus--hero {
      width: 100%;
    }

    .bonus-content,
    .bonus-faq {
      padding: 22px 18px;
    }
  }

  /* ===== KASINO PAGE ===== */
  .page-stack--kasino {
    gap: 28px;
  }

  .kasino-page-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    padding: 32px 28px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--sb-card) 0%, var(--sb-header) 55%, #04372f 100%);
    border: 1px solid var(--sb-border);
    box-shadow: var(--sb-shadow-soft);
  }

  .kasino-page-hero__eyebrow {
    margin: 0 0 10px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sb-lime);
  }

  .kasino-page-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--sb-text);
    letter-spacing: -0.02em;
  }

  .kasino-page-hero__lead {
    margin: 0 0 22px;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--sb-text-soft);
  }

  .kasino-page-hero__lead a {
    color: var(--sb-lime);
    font-weight: 600;
  }

  .kasino-page-hero__lead a:hover {
    color: var(--sb-yellow-hover);
  }

  .kasino-page-hero__lead strong {
    color: var(--sb-yellow);
    font-weight: 800;
  }

  .kasino-page-hero .page-hero__media {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .kasino-page-hero .page-hero__media img {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
  }

  .btn-kasino-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 24px;
    border: none;
    border-radius: 999px;
    background: var(--sb-yellow);
    color: #001817;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 10px 22px rgba(255, 242, 0, 0.26);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  }

  .btn-kasino-cta:hover {
    background: var(--sb-yellow-hover);
    color: #001817;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(255, 242, 0, 0.34);
  }

  .btn-kasino-cta--hero {
    min-height: 48px;
    padding: 0 28px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

  .btn-kasino-cta--strip {
    flex-shrink: 0;
    border-radius: 10px;
    text-transform: none;
    letter-spacing: 0;
  }

  .casino-games-section__title {
    margin: 0 0 16px;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 800;
    color: var(--sb-text);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .casino-games-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
  }

  .casino-game-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 10px 12px;
    border-radius: 12px;
    background: linear-gradient(180deg, var(--sb-card-2) 0%, var(--sb-card) 100%);
    border: 1px solid var(--sb-border);
    box-shadow: var(--sb-shadow-soft);
    transition: border-color 0.2s, transform 0.2s;
  }

  .casino-game-card:hover {
    border-color: rgba(200, 240, 0, 0.4);
    transform: translateY(-2px);
  }

  .casino-game-card__thumb-link {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
    aspect-ratio: 3 / 4;
    background: rgba(0, 0, 0, 0.25);
  }

  .casino-game-card__thumb-link img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .casino-game-card__title {
    margin: 0 0 10px;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--sb-text);
    text-align: center;
    min-height: 2.5em;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .casino-game-card__actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: auto;
  }

  .btn-game {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border: none;
    border-radius: 8px;
    background: var(--sb-yellow);
    color: #001817;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: background 0.2s, transform 0.2s;
  }

  .btn-game:hover {
    background: var(--sb-yellow-hover);
    color: #001817;
    transform: translateY(-1px);
  }

  .btn-demo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid var(--sb-lime);
    background: transparent;
    color: var(--sb-lime);
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }

  .btn-demo:hover {
    background: rgba(200, 240, 0, 0.1);
    color: var(--sb-yellow-hover);
    border-color: var(--sb-yellow-hover);
  }

  .casino-info-table__title {
    margin: 0 0 14px;
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    font-weight: 800;
    color: var(--sb-text);
  }

  .casino-info-table .info-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    border: 1px solid var(--sb-border);
  }

  .casino-info-table .info-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 320px;
    background: linear-gradient(180deg, var(--sb-card-2) 0%, var(--sb-card) 100%);
  }

  .casino-info-table .info-table th,
  .casino-info-table .info-table td {
    padding: 12px 16px;
    text-align: left;
    font-size: 0.88rem;
    line-height: 1.45;
    border-bottom: 1px solid var(--sb-border);
  }

  .casino-info-table .info-table tr:last-child th,
  .casino-info-table .info-table tr:last-child td {
    border-bottom: none;
  }

  .casino-info-table .info-table th {
    width: 38%;
    font-weight: 700;
    color: var(--sb-lime);
    background: rgba(0, 0, 0, 0.15);
  }

  .casino-info-table .info-table td {
    color: var(--sb-text-soft);
  }

  .casino-info-table .info-table a {
    color: var(--sb-lime);
    font-weight: 600;
  }

  .casino-info-table .info-table a:hover {
    color: var(--sb-yellow-hover);
  }

  .promo-code-strip--kasino .btn-kasino-cta--strip {
    background: var(--sb-purple);
    color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 22px rgba(184, 46, 230, 0.32);
  }

  .promo-code-strip--kasino .btn-kasino-cta--strip:hover {
    background: var(--sb-purple-hover);
    color: #ffffff;
  }

  .kasino-content {
    padding: 28px 28px 32px;
    border-radius: 16px;
    background: linear-gradient(180deg, var(--sb-card-2) 0%, var(--sb-card) 100%);
    border: 1px solid var(--sb-border);
    box-shadow: var(--sb-shadow-soft);
    color: var(--sb-muted);
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .kasino-content h2 {
    margin: 28px 0 12px;
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 800;
    color: var(--sb-text);
    line-height: 1.25;
  }

  .kasino-content h2:first-child {
    margin-top: 0;
  }

  .kasino-content h3 {
    margin: 20px 0 10px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sb-text-soft);
  }

  .kasino-content p {
    margin: 0 0 14px;
  }

  .kasino-content a {
    color: var(--sb-lime);
    font-weight: 600;
  }

  .kasino-content a:hover {
    color: var(--sb-yellow-hover);
  }

  .kasino-faq {
    padding: 28px 24px 32px;
    border-radius: 16px;
    background: linear-gradient(180deg, var(--sb-card-2) 0%, var(--sb-card) 100%);
    border: 1px solid var(--sb-border);
    box-shadow: var(--sb-shadow-soft);
  }

  .kasino-faq__heading {
    margin: 0 0 18px;
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 800;
    color: var(--sb-text);
  }

  .kasino-faq .faq-item {
    margin-bottom: 10px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid var(--sb-border);
    overflow: hidden;
  }

  .kasino-faq .faq-item:last-child {
    margin-bottom: 0;
  }

  .kasino-faq .faq-item summary {
    cursor: pointer;
    padding: 14px 16px;
    list-style: none;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--sb-text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    user-select: none;
  }

  .kasino-faq .faq-item summary::-webkit-details-marker {
    display: none;
  }

  .kasino-faq .faq-item summary::after {
    content: "+";
    color: var(--sb-lime);
    font-size: 1.2rem;
    font-weight: 800;
    flex-shrink: 0;
  }

  .kasino-faq .faq-item[open] summary::after {
    content: "−";
  }

  .kasino-faq .faq-item[open] summary {
    border-bottom: 1px solid var(--sb-border);
  }

  .kasino-faq .faq-item p {
    margin: 0;
    padding: 14px 16px 16px;
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--sb-muted);
  }

  .kasino-faq .faq-item p a {
    color: var(--sb-lime);
    font-weight: 600;
  }

  @media (max-width: 1200px) {
    .casino-games-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }

  @media (max-width: 1024px) {
    .casino-games-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .kasino-page-hero {
      gap: 24px;
      padding: 28px 22px;
    }
  }

  @media (max-width: 900px) {
    .kasino-page-hero {
      grid-template-columns: 1fr;
    }

    .kasino-page-hero .page-hero__media {
      order: -1;
    }

    .promo-code-strip--kasino .promo-code-strip__inner {
      flex-direction: column;
      align-items: stretch;
      text-align: center;
    }

    .promo-code-strip--kasino .promo-code-strip__code {
      width: 100%;
    }

    .promo-code-strip--kasino .btn-kasino-cta--strip {
      width: 100%;
    }
  }

  @media (max-width: 768px) {
    .casino-games-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 600px) {
    .kasino-page-hero {
      padding: 22px 18px;
    }

    .kasino-page-hero h1 {
      font-size: 1.35rem;
    }

    .btn-kasino-cta,
    .btn-kasino-cta--hero {
      width: 100%;
    }

    .casino-games-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .kasino-content,
    .kasino-faq {
      padding: 22px 18px;
    }
  }

  @media (max-width: 400px) {
    .casino-games-grid {
      grid-template-columns: 1fr;
      max-width: 220px;
      margin: 0 auto;
    }
  }

  /* ===== CONTACTS PAGE ===== */
  .contacts-page-hero .page-hero__lead {
    max-width: 62ch;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--sb-text-soft);
  }

  .contacts-content h2 {
    margin: 28px 0 12px;
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 800;
    color: var(--sb-text);
    line-height: 1.25;
  }

  .contacts-content h2:first-child {
    margin-top: 0;
  }

  .contacts-content h3 {
    margin: 18px 0 8px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sb-text-soft);
  }

  .contacts-faq__title {
    margin: 0 0 18px;
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 800;
    color: var(--sb-text);
  }

  .contacts-faq .faq-item {
    margin-bottom: 10px;
    padding: 14px 16px 16px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid var(--sb-border);
  }

  .contacts-faq .faq-item:last-child {
    margin-bottom: 0;
  }

  .contacts-faq .faq-item h3 {
    margin: 0 0 8px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--sb-text);
    line-height: 1.35;
  }

  .contacts-faq .faq-item p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--sb-muted);
  }

  .footer-nav a[aria-current="page"] {
    color: var(--sb-lime);
    font-weight: 700;
  }

  /* ===== LOGIN PAGE ===== */
  .login-page-hero .page-hero__lead {
    max-width: 68ch;
    margin: 0 0 20px;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--sb-text-soft);
  }

  .login-page-hero .btn-cta,
  .promo-code-page-hero .btn-cta,
  .responsible-page-hero .btn-cta,
  .terms-page-hero .btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 34px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
  }

  .login-card .btn-cta,
  .login-preview-section .btn-cta,
  .promo-code-highlight .btn-cta,
  .promo-code-content .content-cta .btn-cta,
  .login-content .content-cta .btn-cta,
  .responsible-content .content-cta .btn-cta,
  .terms-content .content-cta .btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 32px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
  }

  .login-card .btn-cta,
  .login-card__cta {
    width: 100%;
    max-width: 100%;
  }

  .login-card__cta {
    margin-top: 12px;
  }

  .login-preview-section .content-cta,
  .login-content .content-cta,
  .promo-code-highlight .content-cta,
  .promo-code-content .content-cta,
  .responsible-content .content-cta,
  .terms-content .content-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
  }

  .login-preview-section .content-cta .btn-cta,
  .login-content .content-cta .btn-cta,
  .promo-code-highlight .content-cta .btn-cta,
  .promo-code-content .content-cta .btn-cta {
    margin-left: 0 !important;
  }

  .login-preview-section {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .login-summary h2 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--sb-text);
  }

  .login-form[role="presentation"] {
    gap: 10px;
    padding: 14px 0 4px;
    border-top: 1px solid var(--sb-border);
    margin-top: 4px;
  }

  .login-form[role="presentation"] .login-card__sub--tight {
    margin: 0;
  }

  .login-content h2 {
    margin: 28px 0 12px;
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 800;
    color: var(--sb-text);
    line-height: 1.25;
  }

  .login-content h2:first-child {
    margin-top: 0;
  }

  .login-content h3 {
    margin: 20px 0 10px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sb-text-soft);
  }

  .login-content h4 {
    margin: 16px 0 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--sb-muted);
  }

  .login-content a {
    color: var(--sb-lime);
    font-weight: 600;
  }

  .login-content a:hover {
    color: var(--sb-yellow-hover);
  }

  .login-content .content-cta--row,
  .promo-code-content .content-cta--row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 28px;
  }

  .login-content .content-cta--row .btn-cta,
  .promo-code-content .content-cta--row .btn-cta {
    margin-left: 0 !important;
    min-height: 52px;
    padding: 0 32px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 800;
  }

  .login-content .content-cta .btn-cta--ghost,
  .login-content .content-cta--row .btn-cta--ghost,
  .login-page-hero .btn-cta--ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 32px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 800;
    background: var(--sb-card);
    color: var(--sb-text);
    border: 1px solid var(--sb-border);
    box-shadow: none;
  }

  .login-content .btn-cta--ghost:hover,
  .login-page-hero .btn-cta--ghost:hover {
    background: var(--sb-card-2);
    color: var(--sb-text);
    transform: none;
  }

  .login-faq__title {
    margin: 0 0 18px;
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 800;
    color: var(--sb-text);
  }

  .login-faq .faq-item {
    margin-bottom: 10px;
    padding: 14px 16px 16px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid var(--sb-border);
  }

  .login-faq .faq-item:last-child {
    margin-bottom: 0;
  }

  .login-faq .faq-item h3 {
    margin: 0 0 8px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--sb-text);
    line-height: 1.35;
  }

  .login-faq .faq-item p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--sb-muted);
  }

  /* ===== PROMO CODE PAGE ===== */
  .promo-code-page-hero .page-hero__lead {
    max-width: 68ch;
    margin: 0 0 20px;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--sb-text-soft);
  }

  .promo-code-highlight {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    text-align: center;
  }

  .promo-code-highlight .landing-section__title {
    margin-bottom: 8px;
  }

  .promo-code-highlight .landing-section__text {
    max-width: 52ch;
    margin-left: auto;
    margin-right: auto;
  }

  .promo-code-highlight .promo-code-box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 440px;
    margin: 20px auto;
    padding: 28px 24px;
    text-align: center;
    background: var(--sb-card);
    border: 1px solid var(--sb-border);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  }

  .promo-code-highlight .promo-code-box__code {
    width: 100%;
    margin: 0;
    font-size: clamp(1.75rem, 5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--sb-yellow);
    text-shadow: 0 0 28px rgba(200, 240, 0, 0.22);
  }

  .promo-code-highlight__cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 8px;
  }

  .promo-code-content h2 {
    margin: 28px 0 12px;
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 800;
    color: var(--sb-text);
    line-height: 1.25;
  }

  .promo-code-content h2:first-child {
    margin-top: 0;
  }

  .promo-code-content h3 {
    margin: 20px 0 10px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sb-text-soft);
  }

  .promo-code-content h4 {
    margin: 16px 0 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--sb-muted);
  }

  .promo-code-content a {
    color: var(--sb-lime);
    font-weight: 600;
  }

  .promo-code-content a:hover {
    color: var(--sb-yellow-hover);
  }

  .promo-code-content .steps-list {
    margin: 16px 0 24px;
  }

  .promo-code-content .content-cta .btn-cta--ghost,
  .promo-code-content .content-cta--row .btn-cta--ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 32px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 800;
    background: var(--sb-card);
    color: var(--sb-text);
    border: 1px solid var(--sb-border);
    box-shadow: none;
  }

  .promo-code-content .btn-cta--ghost:hover {
    background: var(--sb-card-2);
    color: var(--sb-text);
    transform: none;
  }

  .promo-code-faq__title {
    margin: 0 0 18px;
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 800;
    color: var(--sb-text);
  }

  .promo-code-faq .faq-item {
    margin-bottom: 10px;
    padding: 14px 16px 16px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid var(--sb-border);
  }

  .promo-code-faq .faq-item:last-child {
    margin-bottom: 0;
  }

  .promo-code-faq .faq-item h3 {
    margin: 0 0 8px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--sb-text);
    line-height: 1.35;
  }

  .promo-code-faq .faq-item p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--sb-muted);
  }

  @media (max-width: 640px) {
    .login-page-hero .btn-cta,
    .promo-code-page-hero .btn-cta,
    .responsible-page-hero .btn-cta,
    .terms-page-hero .btn-cta,
    .login-card .btn-cta,
    .login-card__cta,
    .promo-code-highlight .btn-cta,
    .promo-code-content .content-cta .btn-cta,
    .login-content .content-cta .btn-cta,
    .login-content .content-cta--row .btn-cta,
    .promo-code-content .content-cta--row .btn-cta,
    .responsible-content .content-cta .btn-cta,
    .responsible-content .content-cta--row .btn-cta,
    .terms-content .content-cta .btn-cta,
    .terms-content .content-cta--row .btn-cta {
      width: 100%;
      min-height: 52px;
      padding: 0 24px;
      font-size: 15px;
    }

    .login-preview-section .content-cta,
    .login-content .content-cta,
    .login-content .content-cta--row,
    .promo-code-highlight .content-cta,
    .promo-code-highlight__cta,
    .promo-code-content .content-cta,
    .promo-code-content .content-cta--row,
    .responsible-content .content-cta,
    .responsible-content .content-cta--row {
      flex-direction: column;
      align-items: stretch;
    }

    .promo-code-highlight .promo-code-box {
      padding: 24px 18px;
    }

    .promo-code-highlight .promo-code-box__code {
      letter-spacing: 0.1em;
    }
  }

  /* ===== RESPONSIBLE GAMING PAGE ===== */
  .responsible-page-hero .page-hero__lead {
    max-width: 68ch;
    margin: 0 0 20px;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--sb-text-soft);
  }

  .responsible-intro {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .responsible-content h2 {
    margin: 28px 0 12px;
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 800;
    color: var(--sb-text);
    line-height: 1.25;
  }

  .responsible-content h2:first-child {
    margin-top: 0;
  }

  .responsible-content h3 {
    margin: 20px 0 10px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sb-text-soft);
  }

  .responsible-content h4 {
    margin: 16px 0 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--sb-muted);
  }

  .responsible-content a {
    color: var(--sb-lime);
    font-weight: 600;
  }

  .responsible-content a:hover {
    color: var(--sb-yellow-hover);
  }

  .responsible-content .content-cta--row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 28px;
  }

  .responsible-content .content-cta--row .btn-cta {
    margin-left: 0 !important;
  }

  .responsible-content .content-cta .btn-cta--ghost,
  .responsible-content .content-cta--row .btn-cta--ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 32px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 800;
    background: var(--sb-card);
    color: var(--sb-text);
    border: 1px solid var(--sb-border);
    box-shadow: none;
  }

  .responsible-content .content-cta .btn-cta--ghost:hover,
  .responsible-content .content-cta--row .btn-cta--ghost:hover {
    background: var(--sb-card-2);
    color: var(--sb-text);
    transform: none;
  }

  .responsible-faq__title {
    margin: 0 0 18px;
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 800;
    color: var(--sb-text);
  }

  .responsible-faq .faq-item {
    margin-bottom: 10px;
    padding: 14px 16px 16px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid var(--sb-border);
  }

  .responsible-faq .faq-item:last-child {
    margin-bottom: 0;
  }

  .responsible-faq .faq-item h3 {
    margin: 0 0 8px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--sb-text);
    line-height: 1.35;
  }

  .responsible-faq .faq-item p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--sb-muted);
  }

  @media (max-width: 640px) {
    .responsible-page-hero .btn-cta,
    .responsible-content .content-cta .btn-cta,
    .responsible-content .content-cta--row .btn-cta {
      width: 100%;
      min-height: 52px;
      padding: 0 24px;
      font-size: 15px;
    }

    .responsible-content .content-cta,
    .responsible-content .content-cta--row,
    .terms-content .content-cta,
    .terms-content .content-cta--row {
      flex-direction: column;
      align-items: stretch;
    }
  }

  /* ===== TERMS AND CONDITIONS PAGE ===== */
  .terms-page-hero .page-hero__lead {
    max-width: 68ch;
    margin: 0 0 20px;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--sb-text-soft);
  }

  .terms-intro {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .terms-content h2 {
    margin: 28px 0 12px;
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 800;
    color: var(--sb-text);
    line-height: 1.25;
  }

  .terms-content h2:first-child {
    margin-top: 0;
  }

  .terms-content h3 {
    margin: 20px 0 10px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sb-text-soft);
  }

  .terms-content h4 {
    margin: 16px 0 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--sb-muted);
  }

  .terms-content a {
    color: var(--sb-lime);
    font-weight: 600;
  }

  .terms-content a:hover {
    color: var(--sb-yellow-hover);
  }

  .terms-content .content-cta--row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 28px;
  }

  .terms-content .content-cta--row .btn-cta {
    margin-left: 0 !important;
    min-height: 52px;
    padding: 0 32px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 800;
  }

  .terms-content .content-cta .btn-cta--ghost,
  .terms-content .content-cta--row .btn-cta--ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 32px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 800;
    background: var(--sb-card);
    color: var(--sb-text);
    border: 1px solid var(--sb-border);
    box-shadow: none;
  }

  .terms-content .content-cta .btn-cta--ghost:hover,
  .terms-content .content-cta--row .btn-cta--ghost:hover {
    background: var(--sb-card-2);
    color: var(--sb-text);
    transform: none;
  }

  .terms-faq__title {
    margin: 0 0 18px;
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 800;
    color: var(--sb-text);
  }

  .terms-faq .faq-item {
    margin-bottom: 10px;
    padding: 14px 16px 16px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid var(--sb-border);
  }

  .terms-faq .faq-item:last-child {
    margin-bottom: 0;
  }

  .terms-faq .faq-item h3 {
    margin: 0 0 8px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--sb-text);
    line-height: 1.35;
  }

  .terms-faq .faq-item p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--sb-muted);
  }

  @media (max-width: 640px) {
    .terms-page-hero .btn-cta,
    .terms-content .content-cta .btn-cta,
    .terms-content .content-cta--row .btn-cta {
      width: 100%;
      min-height: 52px;
      padding: 0 24px;
      font-size: 15px;
    }
  }