﻿  :root {
    /* AllySpin tokens (D:\Template) */
    --header-h: 68px;
    --page-bg: rgb(21, 30, 40);
    --page-bg-accent: rgb(48, 61, 77);
    --brand-500: rgb(147, 6, 39);
    --brand-700: rgb(98, 4, 26);
    --brand-800: rgb(78, 3, 21);
    --brand-900: rgb(69, 3, 18);
    --yellow-500: rgb(255, 229, 0);
    --yellow-700: rgb(229, 187, 0);
    --yellow-100: rgb(246, 234, 121);
    --yellow-850: rgb(205, 137, 0);
    --yellow-950: rgb(235, 209, 50);
    --neutral-25: rgb(233, 235, 236);
    --neutral-50: rgb(216, 219, 222);
    --neutral-400: rgb(69, 81, 95);
    --neutral-900: rgb(21, 30, 40);
    --violet-200: rgb(168, 164, 183);
    --header-bg: rgb(71, 16, 29);
    --header-bg-stripe: rgba(0, 0, 0, 0.12);
    --header-search-bg: rgb(44, 52, 64);
    --header-search-border: rgb(0, 0, 0);
    --header-search-placeholder: rgb(156, 163, 175);
    --header-search-icon: rgb(233, 235, 236);
    --hero-gradient-start: rgb(112, 33, 66);
    --hero-gradient-end: rgb(71, 16, 29);
    --btn-min-height: 44px;
    --btn-radius: 10px;
    --btn-primary-bg: linear-gradient(180deg, rgb(229, 187, 0) 7%, rgb(246, 234, 121) 100%);
    --btn-primary-hover: linear-gradient(180deg, rgb(205, 137, 0) 0%, rgb(235, 209, 50) 100%);
    --btn-primary-text: rgb(10, 15, 21);
    --btn-comic-border: 3px;
    --btn-comic-shadow: 2px;
    --btn-comic-radius: 12px;
    --btn-comic-inner-radius: 6px;
    --btn-comic-inset: 6px;
    --btn-comic-outer-bg: linear-gradient(180deg, rgb(255, 244, 173) 0%, rgb(229, 187, 0) 93%);
    --btn-comic-inner-bg: var(--btn-primary-bg);
    --btn-comic-inner-hover: var(--btn-primary-hover);
    --btn-secondary-bg: linear-gradient(180deg, rgb(168, 164, 183) 0%, rgb(216, 219, 222) 100%);
    --btn-secondary-hover: linear-gradient(180deg, rgb(168, 164, 183) 0%, rgb(255, 255, 255) 100%);
    --btn-secondary-text: rgb(98, 4, 26);
    --btn-header-face: linear-gradient(180deg, rgb(236, 236, 236) 0%, rgb(200, 200, 200) 52%, rgb(176, 176, 176) 100%);
    --btn-header-face-hover: linear-gradient(180deg, rgb(245, 245, 245) 0%, rgb(212, 212, 212) 52%, rgb(189, 189, 189) 100%);
    --btn-auth-radius: 6px;
    --btn-auth-inner-radius: 4px;
    --btn-auth-border: 2px;
    --btn-auth-shadow: 1px;
    --btn-auth-inset: 4px;
    --btn-auth-outer-bg: linear-gradient(180deg, rgb(233, 235, 236) 0%, rgb(168, 164, 183) 100%);
    --btn-auth-inner-bg: linear-gradient(180deg, rgb(168, 164, 183) 0%, rgb(216, 219, 222) 100%);
    --btn-auth-text-gradient: linear-gradient(180deg, rgb(15, 22, 31) 18%, rgb(78, 3, 21) 69%, rgb(10, 15, 21) 118%);
    --btn-font: "Fira Sans", "Arial", sans-serif;
    --orange: var(--yellow-500);
    --orange-dark: var(--yellow-700);
    --orange-light: rgb(255, 235, 51);
    --brand-orange: var(--yellow-500);
    --brand-orange-hover: var(--yellow-700);
    --brand-blue: rgb(48, 61, 77);
    --brand-blue-hover: rgb(57, 70, 86);
    --black: #000000;
    --dark: #111111;
    --dark2: #1a1a1a;
    --dark3: #222222;
    --dark4: #2a2a2a;
    --white: #ffffff;
    --gray: #888888;
    --gray-light: #cccccc;
    --gold: #f5c518;
    --nav-bg: #141414;
    --card-bg: #1e1e1e;
    --border: #333333;
  }

  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: "Fira Sans", "Arial", sans-serif;
    background-color: var(--page-bg);
    background-image: radial-gradient(90% 63% at 50% 35%, var(--page-bg-accent), var(--page-bg));
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: var(--white);
    line-height: 1.6;
    font-size: 16px;
    --scrollbar-track: rgb(28, 38, 50);
    --scrollbar-thumb: var(--brand-500);
  }

  .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .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(--orange);
    text-decoration: none;
    transition: color 0.2s;
  }

  a:hover {
    color: var(--orange-light);
  }

  img {
    max-width: 100%;
    height: auto;
  }

  /* ===== TOP NAV ===== */
  .top-nav {
    background-color: var(--header-bg);
    background-image: repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 10px,
      var(--header-bg-stripe) 10px,
      var(--header-bg-stripe) 20px
    );
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1200;
  }

  .top-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: var(--header-h);
  }

  .header-start {
    display: flex;
    align-items: center;
    gap: 0;
    min-width: 0;
    flex: 1 1 auto;
  }

  .nav-burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 8px;
    padding: 0;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, opacity 0.2s;
  }

  .nav-burger:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-burger__icon {
    display: block;
    width: 22px;
    height: 22px;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .nav-burger.is-active {
    opacity: 0.85;
  }

  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: rgb(11, 18, 28);
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 8px 0 32px rgba(0, 0, 0, 0.45);
    transform: translateX(-100%);
    transition: transform 0.28s ease;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.12) transparent;
  }

  .nav-drawer.is-open {
    transform: translateX(0);
  }

  .nav-drawer__inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: calc(100dvh - var(--header-h));
    padding: 12px 10px 10px;
  }

  .nav-drawer__tiles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    flex-shrink: 0;
  }

  .nav-drawer__tile {
    position: relative;
    display: block;
    min-height: 74px;
    padding: 10px 10px 8px;
    border-radius: 8px;
    overflow: hidden;
    border: none;
    text-decoration: none;
    color: var(--white);
    transition: filter 0.2s ease, transform 0.2s ease;
  }

  .nav-drawer__tile:nth-child(1) {
    background: linear-gradient(145deg, rgb(147, 24, 44) 0%, rgb(69, 3, 18) 100%);
  }

  .nav-drawer__tile:nth-child(2) {
    background: linear-gradient(145deg, rgb(36, 72, 150) 0%, rgb(15, 31, 69) 100%);
  }

  .nav-drawer__tile:nth-child(3) {
    background: linear-gradient(145deg, rgb(22, 120, 72) 0%, rgb(8, 58, 38) 100%);
  }

  .nav-drawer__tile:nth-child(3)::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-conic-gradient(
      from 0deg at 50% 130%,
      rgba(255, 255, 255, 0.05) 0deg 10deg,
      transparent 10deg 20deg
    );
    pointer-events: none;
  }

  .nav-drawer__tile:nth-child(4) {
    background: linear-gradient(145deg, rgb(98, 36, 170) 0%, rgb(49, 12, 92) 100%);
  }

  .nav-drawer__tile > * {
    position: relative;
    z-index: 1;
  }

  .nav-drawer__tile:hover {
    filter: brightness(1.08);
    color: var(--white);
  }

  .nav-drawer__tile-media {
    position: absolute;
    right: 2px;
    bottom: -2px;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
  }

  .nav-drawer__tile-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
  }

  .nav-drawer__tile-label {
    display: block;
    max-width: 58%;
    font-family: "Barlow Condensed", "Fira Sans", sans-serif;
    font-size: 0.9375rem;
    font-style: italic;
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
  }

  .nav-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1 1 auto;
    padding-top: 2px;
  }

  .nav-drawer__nav-group {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 2px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-drawer__nav-group:first-child {
    border-top: none;
    padding-top: 0;
  }

  .nav-drawer__nav-group--header {
    display: flex;
  }

  .nav-drawer__nav-group--header .nav-drawer__link {
    color: var(--yellow-500);
  }

  .nav-drawer__nav-group:not(.nav-drawer__nav-group--header) .nav-drawer__link {
    color: rgb(45, 212, 191);
  }

  .nav-drawer__link {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 10px;
    border-radius: 0;
    background: transparent;
    border: none;
    font-family: "Barlow Condensed", "Fira Sans", sans-serif;
    font-size: 1.0625rem;
    font-style: italic;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
    transition: background 0.2s ease, filter 0.2s ease;
  }

  .nav-drawer__link:hover {
    background: rgba(255, 255, 255, 0.04);
    filter: brightness(1.08);
  }

  .nav-drawer__link--active {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-drawer__app {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--white);
    overflow: hidden;
    background: rgb(24, 30, 40);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: filter 0.2s ease, border-color 0.2s ease;
  }

  .nav-drawer__app::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 58%;
    border-radius: 8px 0 0 8px;
    background: radial-gradient(
      ellipse 110% 150% at 0% 50%,
      rgba(168, 236, 88, 0.55) 0%,
      rgba(96, 180, 48, 0.28) 38%,
      transparent 72%
    );
    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: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.28);
    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-family: "Barlow Condensed", "Fira Sans", sans-serif;
    font-size: 0.9375rem;
    font-style: italic;
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
  }

  .nav-drawer__app-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.25;
    color: rgba(186, 230, 140, 0.92);
  }

  .nav-drawer__app-download {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--yellow-500);
    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: 0;
  }

  .logo-link:hover {
    opacity: 0.92;
  }

  .logo-img {
    display: block;
    width: auto;
    height: 38px;
    max-width: min(190px, 42vw);
    object-fit: contain;
  }

  /* 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(--orange);
  }

  .nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    list-style: none;
  }

  .nav-links li a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 8px 0;
    text-decoration: none;
    transition: color 0.2s, opacity 0.2s;
    display: inline-flex;
    align-items: center;
  }

  .nav-links li a:hover {
    color: var(--white);
  }

  .nav-links li a.active {
    color: var(--white);
    font-weight: 600;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex: 1 1 auto;
    min-width: 0;
  }

  .header-search {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 auto;
    max-width: 620px;
    min-width: 0;
    height: 44px;
    margin-right: auto;
    padding: 0 14px;
    border: 1px solid var(--header-search-border);
    border-radius: 2px;
    background: var(--header-search-bg);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.45);
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .header-search:focus-within {
    border-color: rgb(0, 0, 0);
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.55);
  }

  .header-search__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .header-search__icon {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    stroke: var(--header-search-icon);
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.92;
  }

  .header-search__input {
    width: 100%;
    min-width: 0;
    border: none;
    background: transparent;
    color: var(--white);
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.2;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
  }

  .header-search__input::placeholder {
    color: var(--header-search-placeholder);
    opacity: 1;
  }

  .header-search__input::-webkit-search-cancel-button,
  .header-search__input::-webkit-search-decoration {
    -webkit-appearance: none;
    appearance: none;
  }

  .hero-card__cta,
  .content-area .btn-cta,
  .reviews-section .btn-submit-review,
  .cookie-banner__btn {
    position: relative;
    z-index: 1;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--btn-min-height);
    padding: 0 24px;
    border: var(--btn-comic-border) solid rgb(0, 0, 0);
    border-radius: var(--btn-comic-radius);
    background: var(--btn-comic-outer-bg);
    box-shadow: var(--btn-comic-shadow) var(--btn-comic-shadow) 0 rgb(0, 0, 0);
    color: var(--btn-primary-text);
    font-family: var(--btn-font);
    font-size: 0.9rem;
    font-weight: 900;
    font-style: italic;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    text-shadow: 2px 2px 0 rgb(255, 255, 255);
    white-space: nowrap;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.2s, background-image 0.2s;
  }

  .hero-card__cta::before,
  .content-area .btn-cta::before,
  .reviews-section .btn-submit-review::before,
  .cookie-banner__btn::before {
    content: "";
    position: absolute;
    inset: var(--btn-comic-inset);
    border-radius: var(--btn-comic-inner-radius);
    background-image: var(--btn-comic-inner-bg);
    z-index: -1;
    transition: background-image 0.2s;
  }

  .hero-card__cta:hover,
  .content-area .btn-cta:hover,
  .reviews-section .btn-submit-review:hover,
  .cookie-banner__btn:hover {
    transform: translateY(-1px);
    box-shadow: calc(var(--btn-comic-shadow) + 1px) calc(var(--btn-comic-shadow) + 1px) 0 rgb(0, 0, 0);
    color: var(--btn-primary-text);
  }

  .hero-card__cta:hover::before,
  .content-area .btn-cta:hover::before,
  .reviews-section .btn-submit-review:hover::before,
  .cookie-banner__btn:hover::before {
    background-image: var(--btn-comic-inner-hover);
  }

  .hero-card__cta:active,
  .content-area .btn-cta:active,
  .reviews-section .btn-submit-review:active,
  .cookie-banner__btn:active {
    transform: translateY(1px);
    box-shadow: 0 0 0 rgb(0, 0, 0);
  }

  .hero-card__cta:focus,
  .content-area .btn-cta:focus,
  .reviews-section .btn-submit-review:focus,
  .cookie-banner__btn:focus {
    outline: none;
  }

  .btn-signup,
  .btn-signin {
    position: relative;
    z-index: 1;
    display: inline-grid;
    grid-auto-flow: column;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0 14px;
    border: var(--btn-auth-border) solid rgb(0, 0, 0);
    border-radius: var(--btn-auth-radius);
    background-image: var(--btn-auth-outer-bg);
    box-shadow: var(--btn-auth-shadow) var(--btn-auth-shadow) 0 rgb(0, 0, 0);
    color: var(--btn-secondary-text);
    font-family: var(--btn-font);
    font-size: 16px;
    font-weight: 900;
    font-style: italic;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
    isolation: isolate;
    transition: transform 0.15s, box-shadow 0.2s, background-image 0.2s;
  }

  .btn-signup::before,
  .btn-signin::before {
    content: "";
    position: absolute;
    inset: var(--btn-auth-inset);
    border-radius: var(--btn-auth-inner-radius);
    background-image: var(--btn-auth-inner-bg);
    z-index: -1;
  }

  .btn-auth__text {
    position: relative;
    z-index: 1;
    display: block;
    background: var(--btn-auth-text-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 2px 0 rgb(255, 255, 255));
  }

  .btn-signup {
    padding: 0 18px;
  }

  .btn-signup:hover,
  .btn-signin:hover {
    transform: translateY(-1px);
    box-shadow: calc(var(--btn-auth-shadow) + 1px) calc(var(--btn-auth-shadow) + 1px) 0 rgb(0, 0, 0);
  }

  .btn-signup:hover::before,
  .btn-signin:hover::before {
    background-image: linear-gradient(180deg, rgb(178, 174, 193) 0%, rgb(226, 229, 232) 100%);
  }

  .btn-signup:active,
  .btn-signin:active {
    transform: translateY(1px);
    box-shadow: 0 0 0 rgb(0, 0, 0);
  }

  .btn-signin:focus,
  .btn-signup:focus {
    outline: none;
  }

  /* ===== MAIN BANNER (AllySpin) ===== */
  .page-stack .hero-banner {
    padding: 0;
  }

  .hero-banner {
    padding: 0;
  }

  .hero-swiper-wrap {
    position: relative;
    width: 100%;
  }

  .hero-swiper.main-banner {
    --banner-offer-start: 20px;
    --banner-offer-end: 20px;
    --banner-actions-bottom: 28px;
    position: relative;
    display: grid;
    min-height: 350px;
    overflow: hidden;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 2px;
    box-shadow: 2px 2px 0 rgb(0, 0, 0);
    background: var(--brand-900);
  }

  .main-banner-card {
    position: relative;
    grid-column: 1 / -1;
    grid-row: 1;
    display: grid;
    align-items: stretch;
    min-height: inherit;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }

  .main-banner-card.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
  }

  .main-banner__image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 150%;
    object-fit: cover;
    object-position: left center;
  }

  .cover-button {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
  }

  .banner-offer {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: stretch;
    align-self: stretch;
    width: 100%;
    min-height: inherit;
    padding:
      var(--banner-offer-vertical, 8px)
      var(--banner-offer-end)
      var(--banner-actions-bottom)
      var(--banner-offer-start);
    pointer-events: none;
  }

  .banner-offer__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    width: min(100%, 420px);
    max-width: 52%;
    pointer-events: auto;
  }

  .hero-slide__headline {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    margin: 0;
  }

  .hero-card__eyebrow {
    margin: 0;
    font-family: "Barlow Condensed", "Fira Sans", sans-serif;
    font-size: clamp(0.75rem, 1.4vw, 0.9375rem);
    font-style: italic;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 2px 2px 0 rgb(0, 0, 0);
  }

  .hero-card__title,
  .hero-card__subtitle {
    margin: 0;
    font-family: "Barlow Condensed", "Fira Sans", sans-serif;
    font-weight: 900;
    font-style: italic;
    line-height: 0.95;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--white);
    -webkit-text-stroke: 2px rgb(0, 0, 0);
    paint-order: stroke fill;
    text-shadow:
      3px 3px 0 rgb(0, 0, 0),
      -1px -1px 0 rgb(0, 0, 0),
      1px -1px 0 rgb(0, 0, 0),
      -1px 1px 0 rgb(0, 0, 0);
  }

  .hero-card__title {
    max-width: none;
    font-size: clamp(1.75rem, 4.2vw, 3rem);
  }

  .hero-card__subtitle {
    font-size: clamp(1.35rem, 3.2vw, 2.35rem);
  }

  .hero-card__cta {
    flex-shrink: 0;
    z-index: 4;
    padding: 0 24px;
    font-size: 0.9375rem;
  }

  .hero-banner__pagination {
    position: absolute;
    left: var(--banner-offer-start, 20px);
    bottom: 12px;
    z-index: 5;
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    padding: 0;
    pointer-events: none;
  }

  .hero-banner__pagination .hero-dot {
    pointer-events: auto;
  }

  .hero-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
  }

  .hero-dot.active {
    background: rgb(255, 255, 255);
  }

  @media (min-width: 768px) {
    .hero-swiper.main-banner {
      --banner-offer-start: 64px;
      --banner-offer-end: 32px;
      --banner-actions-bottom: 28px;
      min-height: 360px;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .banner-offer__body {
      gap: 16px;
      max-width: 100%;
      width: min(100%, 520px);
    }

    .hero-banner__pagination {
      bottom: 32px;
    }
  }

  @media (min-width: 1280px) {
    .hero-swiper.main-banner {
      --banner-offer-start: 100px;
    }
  }

  /* ===== 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: #111;
    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(90deg, rgb(10, 24, 12) 0%, rgb(22, 52, 20) 38%, rgb(88, 178, 42) 100%);
  }

  .promo-grid .promo-card--live {
    background: linear-gradient(90deg, rgb(12, 16, 42) 0%, rgb(32, 26, 72) 40%, rgb(118, 52, 188) 100%);
  }

  .promo-grid .promo-card--bonus {
    background: linear-gradient(90deg, rgb(16, 14, 38) 0%, rgb(48, 22, 78) 42%, rgb(168, 42, 118) 100%);
  }

  .promo-grid .promo-card--tournaments {
    background: linear-gradient(90deg, rgb(24, 14, 6) 0%, rgb(72, 30, 10) 38%, rgb(232, 98, 26) 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(90deg, rgb(10, 24, 12) 0%, rgb(22, 52, 20) 38%, rgb(88, 178, 42) 100%);
  }

  .promo-grid--pre-faq .promo-card--live {
    background: linear-gradient(90deg, rgb(12, 16, 42) 0%, rgb(32, 26, 72) 40%, rgb(118, 52, 188) 100%);
  }

  .promo-grid--pre-faq .promo-card--bonus {
    background: linear-gradient(90deg, rgb(16, 14, 38) 0%, rgb(48, 22, 78) 42%, rgb(168, 42, 118) 100%);
  }

  .promo-grid--pre-faq .promo-card--tournaments {
    background: linear-gradient(90deg, rgb(24, 14, 6) 0%, rgb(72, 30, 10) 38%, rgb(232, 98, 26) 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 {
    --slot-card-w: 136px;
    --slot-card-h: 204px;
    --slot-outline: 3px;

    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
  }

  .home-section__head {
    align-items: flex-end;
    min-height: 34px;
  }

  .home-section .providers-section__title {
    margin: 0;
    font-size: 0;
    line-height: 0;
  }

  .home-section .providers-section__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    padding: 8px 18px 12px;
    background: rgb(44, 52, 64);
    color: var(--white);
    font-family: "Barlow Condensed", "Fira Sans", sans-serif;
    font-size: 1.125rem;
    font-style: italic;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), 50% 100%, 0 calc(100% - 8px));
  }

  .home-section .providers-section__controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
  }

  .home-section .providers-section__see-all {
    display: inline-flex;
    color: var(--yellow-500);
    font-family: "Barlow Condensed", "Fira Sans", sans-serif;
    font-size: 0.875rem;
    font-style: italic;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.03em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.2s ease;
  }

  .home-section .providers-section__see-all:hover {
    color: var(--yellow-100);
  }

  .home-section .providers-section__nav {
    display: flex;
    gap: 6px;
  }

  .home-section .providers-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: rgb(168, 164, 183);
    color: rgb(21, 30, 40);
  }

  .home-section .providers-nav-btn:hover:not(:disabled) {
    background: rgb(216, 219, 222);
  }

  .home-section .providers-nav-btn:disabled {
    opacity: 0.35;
  }

  .home-section .providers-track {
    gap: 10px;
    padding-top: 2px;
    padding-bottom: 6px;
  }

  .home-section .game-card {
    flex: 0 0 var(--slot-card-w);
    width: var(--slot-card-w);
    min-width: var(--slot-card-w);
    height: var(--slot-card-h);
    min-height: var(--slot-card-h);
    display: block;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    aspect-ratio: auto;
    overflow: visible;
    text-decoration: none;
    color: inherit;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.38));
    transition: transform 0.2s ease;
  }

  .home-section .game-card:hover {
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: none;
  }

  .home-section .game-card__shell {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: var(--slot-outline);
    background: var(--white);
    border-radius: 8px;
    box-sizing: border-box;
    overflow: hidden;
  }

  .home-section .game-card__cover {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 5px;
  }

  .home-section .game-card__badge {
    position: absolute;
    top: 8px;
    right: 8px;
    left: auto;
    z-index: 2;
    padding: 3px 7px;
    border-radius: 4px;
    background: rgb(34, 197, 94);
    color: var(--white);
    font-family: "Barlow Condensed", "Fira Sans", sans-serif;
    font-size: 0.625rem;
    font-style: italic;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .home-section .game-card__jackpot {
    position: absolute;
    left: var(--slot-outline);
    right: var(--slot-outline);
    bottom: var(--slot-outline);
    z-index: 2;
    padding: 5px 6px;
    background: var(--yellow-500);
    color: rgb(10, 15, 21);
    font-family: "Barlow Condensed", "Fira Sans", sans-serif;
    font-size: 0.6875rem;
    font-style: italic;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.01em;
    text-align: center;
    border-radius: 0 0 5px 5px;
  }

  @media (min-width: 1024px) {
    .home-section {
      --slot-card-w: 148px;
      --slot-card-h: 222px;
    }

    .home-section .providers-nav-btn {
      width: 36px;
      height: 36px;
    }

    .home-section .game-card__jackpot {
      font-size: 0.75rem;
    }
  }

  @media (min-width: 1280px) {
    .home-section {
      --slot-card-w: 156px;
      --slot-card-h: 234px;
    }
  }

  .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);
  }

  /* legacy game grid (unused) */
  .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: rgb(21, 34, 54);
    border: 1px solid rgba(255, 255, 255, 0.06);
    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(255, 229, 0, 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(--btn-primary-bg);
    color: var(--btn-primary-text);
    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: rgb(21, 34, 54);
    border-top: 1px solid rgb(39, 62, 99);
    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;
    }

    .home-section .providers-section__badge {
      font-size: 1rem;
    }

    .home-section .providers-section__see-all {
      font-size: 0.8125rem;
    }

    .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, #1a0d3e 0%, #4a1080 50%, #8b2fc9 100%); }
  .game-card-2 { background: linear-gradient(135deg, #0d2a4a 0%, #1565c0 50%, #42a5f5 100%); }
  .game-card-3 { background: linear-gradient(135deg, #1a0800 0%, #5d1f00 50%, #bf4500 100%); }
  .game-card-4 { background: linear-gradient(135deg, #1a1200 0%, #6b4f00 50%, #d4a017 100%); }
  .game-card-5 { background: linear-gradient(135deg, #0a1a0a 0%, #1b5e20 50%, #4caf50 100%); }
  .game-card-6 { background: linear-gradient(135deg, #1a0000 0%, #7f0000 50%, #f44336 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 {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: clamp(28px, 4vw, 48px) clamp(24px, 3.5vw, 56px);
    box-shadow: none;
  }

  .toc-wrap {
    margin-bottom: 28px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
  }

  .bonus-box {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 20px 0;
    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: rgba(148, 163, 184, 0.95);
    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: rgb(148, 163, 184);
    line-height: 1.75;
  }

  .content-area p {
    margin-bottom: 16px;
  }

  .content {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  @media (min-width: 768px) {
    .content {
      padding-top: 16px;
      padding-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 {
    --content-cta-offer-start: 20px;
    --content-cta-offer-end: 20px;
    --content-cta-actions-bottom: 24px;
    position: relative;
    display: grid;
    min-height: 280px;
    margin-top: 28px;
    overflow: hidden;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 2px;
    box-shadow: 2px 2px 0 rgb(0, 0, 0);
    background: var(--brand-900);
  }

  .content-cta__image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 150%;
    object-fit: cover;
    object-position: left center;
  }

  .content-cta__offer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
    align-self: stretch;
    width: 100%;
    min-height: inherit;
    padding:
      8px
      var(--content-cta-offer-end)
      var(--content-cta-actions-bottom)
      var(--content-cta-offer-start);
    pointer-events: none;
  }

  .content-cta__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    width: min(100%, 420px);
    max-width: 52%;
    pointer-events: auto;
  }

  .content-area .content-cta__title {
    margin: 0;
    font-family: "Barlow Condensed", "Fira Sans", sans-serif;
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-style: italic;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    text-align: left;
    color: var(--white);
    -webkit-text-stroke: 2px rgb(0, 0, 0);
    paint-order: stroke fill;
    text-shadow:
      3px 3px 0 rgb(0, 0, 0),
      -1px -1px 0 rgb(0, 0, 0),
      1px -1px 0 rgb(0, 0, 0),
      -1px 1px 0 rgb(0, 0, 0);
  }

  .content-area .content-cta__text {
    margin: 0;
    font-family: "Barlow Condensed", "Fira Sans", sans-serif;
    font-size: clamp(0.75rem, 1.4vw, 0.9375rem);
    font-style: italic;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: left;
    color: var(--white);
    text-shadow: 2px 2px 0 rgb(0, 0, 0);
  }

  .content-area .content-cta .btn-cta {
    font-size: 0.9rem;
  }

  @media (min-width: 768px) {
    .content-area .content-cta {
      --content-cta-offer-start: 48px;
      --content-cta-offer-end: 32px;
      --content-cta-actions-bottom: 28px;
      min-height: 300px;
    }

    .content-cta__body {
      gap: 16px;
      max-width: 100%;
      width: min(100%, 480px);
    }
  }

  @media (min-width: 1024px) {
    .content-area .content-cta {
      --content-cta-offer-start: 64px;
      min-height: 320px;
    }
  }

  /* Tables inside content */
  .content-area .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 24px;
    border-radius: 0;
    border: none;
    background: transparent;
  }

  .content-area table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
    background: transparent;
  }

  .content-area thead {
    background: rgba(255, 255, 255, 0.04);
  }

  .content-area thead th {
    padding: 12px 16px;
    text-align: left;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(148, 163, 184, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .content-area tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    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: rgb(148, 163, 184);
  }

  .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 rgba(255, 255, 255, 0.06);
  }

  table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
    background: transparent;
  }

  thead {
    background: rgba(255, 255, 255, 0.04);
  }

  thead th {
    padding: 12px 16px;
    text-align: left;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(148, 163, 184, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    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: rgb(148, 163, 184);
  }

  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 rgba(255, 255, 255, 0.06);
      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 rgba(255, 255, 255, 0.06);
    }

    .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 (AllySpin accordion) ===== */
  .faq-section {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: clamp(28px, 4vw, 40px) clamp(24px, 3.5vw, 48px);
    box-shadow: none;
  }

  .faq-title {
    margin: 0 0 16px;
    font-family: "Barlow Condensed", "Fira Sans", sans-serif;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-style: italic;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--yellow-500);
    text-shadow: 2px 2px 0 rgb(0, 0, 0);
  }

  .faq-list {
    display: grid;
    gap: 8px;
  }

  .faq-section > details + details {
    margin-top: 8px;
  }

  .faq-section details {
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: rgb(57, 70, 86);
    box-shadow: 2px 2px 0 rgb(0, 0, 0);
    overflow: hidden;
    transition: none;
  }

  .faq-section details:last-child {
    margin-bottom: 0;
  }

  .faq-section summary {
    cursor: pointer;
    min-height: 48px;
    padding: 14px 16px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: "Barlow Condensed", "Fira Sans", sans-serif;
    font-size: 1rem;
    font-style: italic;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 2px 2px 0 rgb(0, 0, 0);
    background: transparent;
    transition: color 0.2s ease, background-color 0.2s ease;
    user-select: none;
  }

  .faq-section summary::-webkit-details-marker {
    display: none;
  }

  .faq-section summary::after {
    content: "";
    width: 0;
    height: 0;
    flex-shrink: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 8px solid currentColor;
    filter: drop-shadow(2px 2px 0 rgb(0, 0, 0));
    transition: transform 0.2s ease, filter 0.2s ease;
  }

  .faq-section details[open] summary {
    background: rgb(28, 40, 54);
    color: var(--yellow-500);
    border-bottom: 1px solid rgb(0, 0, 0);
  }

  .faq-section details[open] summary::after {
    transform: rotate(180deg);
    filter: drop-shadow(-2px -2px 0 rgb(0, 0, 0));
  }

  .faq-section details p {
    padding: 20px 24px;
    margin: 0;
    background: rgb(48, 61, 77);
    color: var(--white);
    line-height: 1.65;
    font-size: 0.875rem;
    border-top: 1px solid rgb(0, 0, 0);
  }

  .faq-section details p a {
    color: var(--white);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: rgba(255, 255, 255, 0.45);
  }

  .faq-section details p a:hover {
    color: var(--yellow-500);
    text-decoration-color: rgba(255, 229, 0, 0.55);
  }

  @media (hover: hover) and (pointer: fine) {
    .faq-section summary:hover {
      color: var(--yellow-500);
    }
  }

  /* ===== REVIEWS SECTION ===== */
  .reviews-section {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: clamp(28px, 4vw, 40px) clamp(24px, 3.5vw, 48px);
    box-shadow: none;
  }

  .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: transparent;
    padding: 16px 0;
    border-radius: 0;
    margin-bottom: 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.2s;
  }

  .reviews-section .comment:hover {
    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: rgb(148, 163, 184);
    font-size: 0.92rem;
  }

  .reviews-section .review-form-wrap {
    margin-top: 24px;
    padding: 24px 0 0;
    border-radius: 0;
    background: transparent;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .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 rgba(255, 255, 255, 0.08);
    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(255, 229, 0, 0.55);
    box-shadow: 0 0 0 3px rgba(255, 229, 0, 0.12);
  }

  .reviews-section .review-form-wrap textarea {
    min-height: 100px;
    resize: vertical;
  }

  .reviews-section .btn-submit-review {
    font-size: 0.9rem;
    align-self: flex-start;
  }

  /* ===== AUTHOR SECTION ===== */
  .author-section {
    margin: 0;
    padding: 0;
  }

  .author-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: clamp(24px, 3.5vw, 32px) 0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: none;
  }

  .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: rgba(148, 163, 184, 0.9);
    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: rgba(148, 163, 184, 0.95);
    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: rgb(148, 163, 184);
    font-size: 0.92rem;
    line-height: 1.7;
  }

  /* ===== FOOTER (AllySpin style) ===== */
  .footer-wrapper {
    position: relative;
    margin-top: 50px;
    isolation: isolate;
  }

  .footer-wrapper__tear {
    position: relative;
    z-index: 1;
    height: 56px;
    margin-bottom: -2px;
    background: url("./assets/images/footer-tear.svg") no-repeat center bottom / 100% 100%;
  }

  footer {
    position: relative;
    background-color: rgb(64, 3, 18);
    background-image: linear-gradient(180deg, rgb(69, 3, 18) 0%, rgb(64, 3, 18) 100%);
    color: var(--white);
    padding: 0 0 32px;
    margin-top: 0;
    overflow: hidden;
  }

  footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 494px;
    max-height: 100%;
    pointer-events: none;
    background-image: url("./assets/images/footer-pattern.svg");
    background-repeat: repeat-x;
    background-position: 0 100%;
    background-size: 35px 494px;
  }

  footer .footer-inner {
    position: relative;
    z-index: 1;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding-top: 24px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px 24px;
    margin-bottom: 28px;
  }

  .footer-brand .casino-name-footer {
    font-family: "Barlow Condensed", "Fira Sans", sans-serif;
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
  }

  .footer-brand .casino-name-footer span {
    color: var(--yellow-500);
  }

  .footer-brand p,
  .footer-brand__desc {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.875rem;
    line-height: 1.65;
    margin-bottom: 16px;
  }

  .footer-col-title {
    margin-bottom: 12px;
    font-family: "Barlow Condensed", "Fira Sans", sans-serif;
    font-size: 0.875rem;
    font-style: italic;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
  }

  .footer-links {
    list-style: none;
    display: grid;
    gap: 10px;
  }

  .footer-links li a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.35;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.28);
    text-underline-offset: 2px;
    transition: color 0.2s ease;
  }

  .footer-links li a:hover {
    color: var(--yellow-500);
    text-decoration-color: rgba(255, 229, 0, 0.45);
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-copyright {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.5;
  }

  .footer-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .footer-badge {
    background: rgb(57, 70, 86);
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 2px 4px rgba(0, 0, 0, 0.25);
  }

  .footer-age-badge {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.92);
    background: transparent;
    font-family: "Barlow Condensed", "Fira Sans", sans-serif;
    font-size: 0.625rem;
    font-weight: 800;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .footer-disclaimer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.65;
    text-align: center;
  }

  .footer-disclaimer strong {
    color: var(--yellow-500);
    font-weight: 700;
  }

  .footer-logo {
    display: none;
    margin-bottom: 12px;
    text-decoration: none;
  }

  .footer-logo__img {
    display: block;
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    object-position: left center;
  }

  /* ===== 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: 12px;
    background: rgba(21, 30, 40, 0.94);
    border: 1px solid rgba(168, 164, 183, 0.22);
    box-shadow: 0 6px 16px rgba(37, 14, 61, 0.1);
    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;
    padding: 0 18px;
    min-height: 40px;
    font-size: 0.875rem;
  }

  /* ===== FLOATING CTA ===== */
  .floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
  }

  .floating-cta__link {
    position: relative;
    z-index: 1;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 10px;
    border: 2px solid rgb(0, 0, 0);
    border-radius: 12px;
    background: var(--btn-comic-outer-bg);
    box-shadow: 2px 2px 0 rgb(0, 0, 0);
    text-decoration: none;
    color: var(--btn-primary-text);
    transition: transform 0.15s, box-shadow 0.2s;
  }

  .floating-cta__link::before {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 7px;
    background-image: var(--btn-comic-inner-bg);
    z-index: -1;
    transition: background-image 0.2s;
  }

  .floating-cta__link:hover {
    transform: translateY(-1px);
    box-shadow: 3px 3px 0 rgb(0, 0, 0);
    color: var(--btn-primary-text);
  }

  .floating-cta__link:hover::before {
    background-image: var(--btn-comic-inner-hover);
  }

  .floating-cta__link:active {
    transform: translateY(1px);
    box-shadow: 0 0 0 rgb(0, 0, 0);
  }

  .floating-cta__icon {
    display: block;
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, 0.35));
  }

  .floating-cta__text {
    font-family: var(--btn-font);
    font-size: 0.875rem;
    font-style: italic;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-shadow: 1px 1px 0 rgb(255, 255, 255);
    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: rgb(27, 44, 70);
    color: rgba(255, 255, 255, 0.92);
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
  }

  .providers-nav-btn:hover:not(:disabled) {
    background: rgb(35, 56, 90);
  }

  .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: rgb(21, 34, 54);
    border: none;
    text-decoration: none;
    transition: background 0.2s ease;
  }

  .providers-card:hover {
    background: rgb(27, 44, 70);
    transform: none;
  }

  .providers-card--static {
    cursor: default;
    pointer-events: none;
  }

  .providers-card--static:hover {
    background: rgb(21, 34, 54);
    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;
  }

  .providers-section--sports .providers-card__player {
    display: block;
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    opacity: 1;
    object-fit: contain;
    transition: transform 0.2s ease;
  }

  /* ===== SPORTS CAROUSEL ===== */
  .providers-section--sports {
    --sport-shape: polygon(50% 0%, 100% 11%, 100% 89%, 50% 100%, 0% 89%, 0% 11%);
    --sport-card-w: 148px;
    --sport-card-h: 222px;
    --sport-outline: 4px;

    gap: 8px;
    margin-top: 10px;
  }

  .providers-section--sports .providers-section__head {
    align-items: flex-end;
    min-height: 34px;
  }

  .providers-section--sports .providers-section__title {
    margin: 0;
    font-size: 0;
    line-height: 0;
  }

  .providers-section--sports .providers-section__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    padding: 8px 18px 12px;
    background: rgb(44, 52, 64);
    color: var(--white);
    font-family: "Barlow Condensed", "Fira Sans", sans-serif;
    font-size: 1.125rem;
    font-style: italic;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), 50% 100%, 0 calc(100% - 8px));
  }

  .providers-section--sports .providers-section__controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
  }

  .providers-section--sports .providers-section__see-all {
    color: var(--yellow-500);
    font-family: "Barlow Condensed", "Fira Sans", sans-serif;
    font-size: 0.875rem;
    font-style: italic;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.03em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.2s ease;
  }

  .providers-section--sports .providers-section__see-all:hover {
    color: var(--yellow-100);
  }

  .providers-section--sports .providers-section__nav {
    display: flex;
    gap: 6px;
  }

  .providers-section--sports .providers-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: rgb(168, 164, 183);
    color: rgb(21, 30, 40);
  }

  .providers-section--sports .providers-nav-btn:hover:not(:disabled) {
    background: rgb(216, 219, 222);
  }

  .providers-section--sports .providers-nav-btn:disabled {
    opacity: 0.35;
  }

  .providers-section--sports .providers-track {
    gap: 14px;
    padding-top: 6px;
    padding-bottom: 8px;
  }

  .providers-section--sports .providers-card {
    flex: 0 0 var(--sport-card-w);
    width: var(--sport-card-w);
    min-width: var(--sport-card-w);
    height: var(--sport-card-h);
    min-height: var(--sport-card-h);
    padding: 0;
    border-radius: 0;
    background: transparent;
    overflow: visible;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
  }

  .providers-section--sports .providers-card:hover {
    background: transparent;
    transform: translateY(-3px);
  }

  .providers-section--sports .providers-card:hover .providers-card__player {
    transform: translateX(-50%) scale(1.03);
  }

  .providers-section--sports .providers-card__frame {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: var(--white);
    clip-path: var(--sport-shape);
    box-sizing: border-box;
  }

  .providers-section--sports .providers-card__face {
    position: relative;
    width: calc(100% - (var(--sport-outline) * 2));
    height: calc(100% - (var(--sport-outline) * 2));
    clip-path: var(--sport-shape);
    overflow: hidden;
    flex-shrink: 0;
  }

  .providers-section--sports .providers-card__burst {
    position: absolute;
    inset: 0;
    background:
      repeating-conic-gradient(
        from 0deg at 50% 44%,
        rgba(255, 255, 255, 0.12) 0deg 6deg,
        transparent 6deg 12deg
      ),
      radial-gradient(ellipse 95% 88% at 50% 40%, rgb(236, 52, 72) 0%, rgb(190, 18, 44) 38%, rgb(140, 8, 30) 72%, rgb(98, 4, 26) 100%);
    pointer-events: none;
  }

  .providers-section--sports .providers-card__player {
    position: absolute;
    left: 50%;
    bottom: 32px;
    z-index: 1;
    width: 128%;
    max-height: calc(100% - 54px);
    transform: translateX(-50%);
    object-fit: contain;
    object-position: bottom center;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 58%, rgba(0, 0, 0, 0.35) 78%, transparent 96%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 58%, rgba(0, 0, 0, 0.35) 78%, transparent 96%);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .providers-section--sports .providers-card__label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 42px;
    padding: 8px 6px 14px;
    background: linear-gradient(180deg, rgb(98, 4, 26) 0%, rgb(69, 3, 18) 100%);
    color: var(--white);
    font-family: "Barlow Condensed", "Fira Sans", sans-serif;
    font-size: 0.75rem;
    font-style: italic;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.02em;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  }

  @media (max-width: 1023px) {
    .providers-section--sports.is-scrollable .providers-section__head {
      padding-right: 0;
    }
  }

  @media (min-width: 1024px) {
    .providers-section--sports {
      --sport-card-w: 162px;
      --sport-card-h: 242px;
    }

    .providers-section--sports .providers-card__player {
      bottom: 36px;
      width: 132%;
    }

    .providers-section--sports .providers-card__label {
      min-height: 44px;
      padding-bottom: 16px;
      font-size: 0.8125rem;
    }

    .providers-section--sports .providers-nav-btn {
      width: 36px;
      height: 36px;
    }
  }

  @media (min-width: 1280px) {
    .providers-section--sports {
      --sport-card-w: 172px;
      --sport-card-h: 258px;
    }
  }

  .providers-section--game-shows {
    --game-show-gap: 14px;
    --game-show-visible: 3;
    --game-show-outline: 2px;

    gap: 10px;
    margin-top: 4px;
    margin-bottom: 20px;
  }

  .providers-section--game-shows .providers-carousel__viewport {
    container-type: inline-size;
    container-name: game-shows-carousel;
  }

  .providers-section--game-shows .providers-section__head {
    align-items: flex-end;
    min-height: 34px;
  }

  .providers-section--game-shows .providers-section__title {
    margin: 0;
    font-size: 0;
    line-height: 0;
  }

  .providers-section--game-shows .providers-section__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 168px;
    padding: 8px 18px 12px;
    background: rgb(44, 52, 64);
    color: var(--white);
    font-family: "Barlow Condensed", "Fira Sans", sans-serif;
    font-size: 1.125rem;
    font-style: italic;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), 50% 100%, 0 calc(100% - 8px));
  }

  .providers-section--game-shows .providers-section__controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
  }

  .providers-section--game-shows .providers-section__see-all {
    color: var(--yellow-500);
    font-family: "Barlow Condensed", "Fira Sans", sans-serif;
    font-size: 0.875rem;
    font-style: italic;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.03em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.2s ease;
  }

  .providers-section--game-shows .providers-section__see-all:hover {
    color: var(--yellow-100);
  }

  .providers-section--game-shows .providers-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: rgb(168, 164, 183);
    color: rgb(21, 30, 40);
  }

  .providers-section--game-shows .providers-nav-btn:hover:not(:disabled) {
    background: rgb(216, 219, 222);
  }

  .providers-section--game-shows .providers-nav-btn:disabled {
    opacity: 0.35;
  }

  .providers-section--game-shows .providers-track {
    gap: var(--game-show-gap);
    padding-top: 4px;
    padding-bottom: 8px;
  }

  .providers-section--game-shows .game-show-card {
    flex: 0 0 calc((100cqi - (var(--game-show-gap) * (var(--game-show-visible) - 1))) / var(--game-show-visible));
    width: calc((100cqi - (var(--game-show-gap) * (var(--game-show-visible) - 1))) / var(--game-show-visible));
    min-width: calc((100cqi - (var(--game-show-gap) * (var(--game-show-visible) - 1))) / var(--game-show-visible));
    aspect-ratio: 386 / 257.33;
    height: auto;
    min-height: 0;
    scroll-snap-align: start;
    display: block;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    overflow: visible;
    text-decoration: none;
    color: inherit;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.42));
    transition: transform 0.2s ease;
  }

  .providers-section--game-shows .game-show-card:hover {
    transform: translateY(-3px);
  }

  .providers-section--game-shows .game-show-card__shell {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: var(--game-show-outline);
    background: var(--white);
    border-radius: 8px;
    box-sizing: border-box;
    overflow: hidden;
  }

  .providers-section--game-shows .game-show-card__cover {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
  }

  .providers-section--game-shows .game-show-card__badge {
    position: absolute;
    top: 8px;
    right: 8px;
    left: auto;
    z-index: 2;
    padding: 3px 7px;
    border-radius: 4px;
    background: rgb(34, 197, 94);
    color: var(--white);
    font-family: "Barlow Condensed", "Fira Sans", sans-serif;
    font-size: 0.625rem;
    font-style: italic;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .providers-section--game-shows .game-show-card__bet {
    position: absolute;
    left: 50%;
    bottom: clamp(8px, 4cqi, 12px);
    z-index: 2;
    transform: translateX(-50%);
    padding: clamp(3px, 1.2cqi, 6px) clamp(8px, 3.5cqi, 14px);
    background: var(--yellow-500);
    color: rgb(10, 15, 21);
    font-family: "Barlow Condensed", "Fira Sans", sans-serif;
    font-size: clamp(0.625rem, 2.4cqi, 0.8125rem);
    font-style: italic;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.01em;
    white-space: nowrap;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
  }

  @media (min-width: 1024px) {
    .providers-section--game-shows .providers-nav-btn {
      width: 36px;
      height: 36px;
    }

    .providers-section--game-shows .game-show-card__badge {
      top: 10px;
      right: 10px;
      font-size: 0.6875rem;
      padding: 4px 8px;
    }
  }

  @media (max-width: 1023px) {
    .providers-section--game-shows .providers-carousel {
      margin-left: 0;
      margin-right: 0;
      padding-left: 0;
      padding-right: 0;
    }

    .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:not(.providers-card--sport) {
      flex: 0 0 145.5px;
      width: 145.5px;
      min-width: 145.5px;
    }
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    :root {
      --header-h: 60px;
    }

    .top-nav-inner {
      gap: 12px;
      padding: 0 12px;
      height: var(--header-h);
    }

    .header-search {
      display: none;
    }

    .nav-burger {
      width: 36px;
      height: 36px;
      margin-right: 6px;
    }

    .nav-burger__icon {
      width: 20px;
      height: 20px;
    }

    .btn-signup,
    .btn-signin {
      min-height: 38px;
      min-width: 38px;
      padding: 0 12px;
      font-size: 13px;
    }

    .btn-signup {
      padding: 0 14px;
    }

    .btn-signup::before,
    .btn-signin::before {
      inset: 3px;
      border-radius: 3px;
    }

    .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;
    }

    .footer-wrapper {
      margin-top: 36px;
    }

    footer {
      padding-bottom: 24px;
    }

    footer .footer-inner {
      padding-top: 16px;
    }

    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 24px 16px;
    }

    .footer-grid > div {
      border-bottom: none;
    }

    .footer-brand {
      grid-column: 1 / -1;
    }

    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  @media (max-width: 640px) {
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 0;
    }

    .footer-grid > div {
      padding: 14px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-grid > div:last-child {
      border-bottom: none;
    }

    .footer-brand {
      padding-bottom: 18px;
    }

    .footer-col-title {
      margin-bottom: 10px;
      font-size: 0.9375rem;
    }

    .footer-links {
      gap: 8px;
    }

    .footer-links li a {
      font-size: 0.8125rem;
    }
  }

  @media (max-width: 480px) {
    .logo-img {
      height: 30px;
      max-width: 130px;
    }

    .btn-signup,
    .btn-signin {
      min-height: 34px;
      min-width: 34px;
      padding: 0 8px;
      font-size: 11px;
    }

    .btn-signup {
      padding: 0 10px;
    }

    .btn-auth__text {
      filter: drop-shadow(1px 1px 0 rgb(255, 255, 255));
    }

    .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: 767px) {
    .content-area .content-cta {
      min-height: 200px;
    }

    .content-cta__body {
      max-width: 58%;
      gap: 8px;
    }

    .content-area .content-cta__title {
      font-size: 1.35rem;
    }

    .content-area .content-cta__text {
      font-size: 0.625rem;
    }

    .content-area .content-cta .btn-cta {
      min-height: 32px;
      padding: 0 12px;
      font-size: 0.8125rem;
      --btn-comic-inset: 4px;
      --btn-comic-border: 2px;
      --btn-comic-shadow: 1px;
      --btn-comic-radius: 10px;
      --btn-comic-inner-radius: 5px;
    }

    .hero-swiper.main-banner {
      min-height: 200px;
    }

    .banner-offer__body {
      max-width: 58%;
      gap: 8px;
    }

    .hero-card__eyebrow {
      font-size: 0.625rem;
    }

    .hero-card__title {
      font-size: 1.5rem;
    }

    .hero-card__subtitle {
      font-size: 1.125rem;
    }

    .hero-card__cta {
      min-height: 32px;
      padding: 0 12px;
      font-size: 0.8125rem;
      --btn-comic-inset: 4px;
      --btn-comic-border: 2px;
      --btn-comic-shadow: 1px;
      --btn-comic-radius: 10px;
      --btn-comic-inner-radius: 5px;
    }
  }

  /* ===== SECTION SEPARATOR ===== */
  .section-sep {
    height: 4px;
    background: linear-gradient(90deg, var(--yellow-500) 0%, var(--yellow-700) 50%, transparent 100%);
    border-radius: 2px;
    margin-bottom: 20px;
    max-width: 80px;
  }

  /* Links styled as UI controls */
  a.btn-signup,
  a.btn-signin,
  a.logo-link,
  a.hero-card__cta {
    text-decoration: none;
  }