﻿  :root {
    --header-h: 64px;
    --header-bg: rgb(20, 28, 46);
    --hero-gradient-start: rgb(14, 11, 60);
    --hero-gradient-end: rgb(60, 110, 214);
    --brand-orange: rgb(232, 90, 41);
    --brand-orange-hover: rgb(245, 105, 55);
    --brand-blue: rgb(27, 44, 70);
    --brand-blue-hover: rgb(35, 56, 90);
    --orange: rgb(232, 90, 41);
    --orange-dark: rgb(210, 78, 32);
    --orange-light: rgb(245, 105, 55);
    --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: 'Montserrat', 'Segoe UI', system-ui, sans-serif;
    background-color: rgb(17, 24, 39);
    color: var(--white);
    line-height: 1.6;
    font-size: 16px;
    --scrollbar-track: rgb(27, 24, 38);
    --scrollbar-thumb: rgb(222, 44, 44);
  }

  .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-main {
    padding-bottom: 48px;
  }

  .page-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 28px;
  }

  .container--seo {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 8px;
    padding-bottom: 40px;
  }

  a {
    color: var(--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);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: sticky;
    top: 0;
    z-index: 1200;
  }

  .top-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 64px;
  }

  .header-start {
    display: flex;
    align-items: center;
    gap: 0;
    min-width: 0;
    flex: 1 1 auto;
  }

  .nav-burger {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    padding: 0;
    border: none;
    border-radius: 6px;
    background: rgb(27, 44, 70);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s;
  }

  .nav-burger:hover {
    background: var(--brand-blue-hover);
  }

  .nav-burger__bar {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, #c8d6e8 0%, #9eb2c9 55%, #7f96b0 100%);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: transform 0.2s, opacity 0.2s;
  }

  .nav-burger.is-active .nav-burger__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-burger.is-active .nav-burger__bar:nth-child(2) {
    opacity: 0;
  }

  .nav-burger.is-active .nav-burger__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  body.nav-drawer-open {
    overflow: hidden;
  }

  .nav-drawer-overlay {
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1180;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  .nav-drawer-overlay.is-visible {
    opacity: 1;
    visibility: visible;
  }

  .nav-drawer-overlay[hidden] {
    display: none;
  }

  .nav-drawer {
    position: fixed;
    top: var(--header-h);
    left: 0;
    z-index: 1190;
    width: min(320px, 88vw);
    height: calc(100dvh - var(--header-h));
    max-height: none;
    background: rgb(14, 20, 33);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 8px 0 32px rgba(0, 0, 0, 0.35);
    transform: translateX(-100%);
    transition: transform 0.28s ease;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .nav-drawer.is-open {
    transform: translateX(0);
  }

  .nav-drawer__inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: calc(100dvh - var(--header-h));
    padding: 16px 14px 24px;
  }

  .nav-drawer__tiles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .nav-drawer__tile {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 72px;
    padding: 8px 10px;
    border-radius: 10px;
    overflow: hidden;
    background: rgb(22, 32, 49);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    color: var(--white);
    transition: background 0.2s, border-color 0.2s;
  }

  .nav-drawer__tile::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px 0 0 0;
    pointer-events: none;
    background: radial-gradient(
      ellipse 145% 145% at 0% 0%,
      var(--tile-glow, rgba(120, 170, 255, 0.72)) 0%,
      var(--tile-glow-mid, rgba(70, 120, 230, 0.38)) 38%,
      transparent 72%
    );
  }

  .nav-drawer__tile:nth-child(1) {
    --tile-glow: rgba(200, 130, 255, 0.78);
    --tile-glow-mid: rgba(150, 80, 240, 0.42);
  }

  .nav-drawer__tile:nth-child(2) {
    --tile-glow: rgba(110, 195, 255, 0.76);
    --tile-glow-mid: rgba(60, 140, 255, 0.4);
  }

  .nav-drawer__tile:nth-child(3) {
    --tile-glow: rgba(255, 150, 100, 0.74);
    --tile-glow-mid: rgba(240, 90, 55, 0.38);
  }

  .nav-drawer__tile:nth-child(4) {
    --tile-glow: rgba(255, 220, 110, 0.78);
    --tile-glow-mid: rgba(240, 170, 45, 0.4);
  }

  .nav-drawer__tile > * {
    position: relative;
    z-index: 1;
  }

  .nav-drawer__tile:hover {
    background: rgb(28, 40, 60);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--white);
  }

  .nav-drawer__tile-media {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-drawer__tile-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .nav-drawer__tile-label {
    font-size: 0.65rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

  .nav-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .nav-drawer__nav-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .nav-drawer__nav-group--header {
    display: none;
  }

  .nav-drawer__link {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    border-radius: 10px;
    background: rgb(27, 44, 70);
    border: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
  }

  .nav-drawer__link:hover {
    background: rgb(35, 56, 90);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
  }

  .nav-drawer__link--active {
    border-color: rgba(241, 90, 34, 0.35);
    background: rgba(241, 90, 34, 0.12);
    color: var(--white);
    font-weight: 700;
  }

  .nav-drawer__app {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--white);
    overflow: hidden;
    background-color: rgb(21, 34, 54);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: filter 0.2s, border-color 0.2s;
  }

  .nav-drawer__app::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 72%;
    border-radius: 10px 0 0 10px;
    background: radial-gradient(
      ellipse 105% 145% at 0% 50%,
      rgba(168, 236, 88, 0.85) 0%,
      rgba(96, 180, 48, 0.58) 34%,
      transparent 68%
    );
    pointer-events: none;
  }

  .nav-drawer__app > * {
    position: relative;
    z-index: 1;
  }

  .nav-drawer__app:hover {
    border-color: rgba(255, 255, 255, 0.12);
    filter: brightness(1.06);
    color: var(--white);
  }

  .nav-drawer__app-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.35);
    overflow: hidden;
  }

  .nav-drawer__app-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .nav-drawer__app-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1 1 auto;
    min-width: 0;
  }

  .nav-drawer__app-title {
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--white);
  }

  .nav-drawer__app-subtitle {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.3;
    color: rgba(186, 230, 140, 0.95);
  }

  .nav-drawer__app-download {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--white);
    opacity: 0.95;
  }

  .nav-drawer__app-download svg {
    width: 22px;
    height: 22px;
  }

  .logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    line-height: 0;
    margin-right: 28px;
  }

  .logo-link:hover {
    opacity: 0.92;
  }

  .logo-img {
    display: block;
    width: auto;
    height: 36px;
    max-width: min(180px, 42vw);
    object-fit: contain;
  }

  .header-nav {
    display: flex;
    align-items: center;
    min-width: 0;
  }

  /* Image placeholders (assets added later) */
  .media-placeholder {
    background: transparent;
    border: 1px dashed rgba(255, 255, 255, 0.12);
  }

  .media-placeholder--banner {
    width: 100%;
    height: 100%;
    display: block;
  }

  .media-placeholder--slot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .casino-name-nav {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
  }

  .casino-name-nav span {
    color: var(--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: 10px;
    flex-shrink: 0;
  }

  .nav-search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
  }

  .nav-search:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
  }

  .nav-search svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .btn-signup,
  .btn-signin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }

  .btn-signup {
    background: var(--brand-orange);
    border: 1px solid var(--brand-orange);
    color: var(--white);
  }

  .btn-signup:hover {
    background: var(--brand-orange-hover);
    border-color: var(--brand-orange-hover);
    color: var(--white);
  }

  .btn-signin {
    background: var(--brand-blue);
    border: none;
    color: var(--white);
  }

  .btn-signin:hover {
    background: var(--brand-blue-hover);
    color: var(--white);
  }

  .btn-signin:focus {
    outline: none;
  }

  /* ===== HERO BANNER (Grattiano: bg cover + art contain right) ===== */
  .page-stack .hero-banner {
    padding: 0;
  }

  .hero-banner {
    padding: 0;
  }

  .hero-swiper-wrap {
    position: relative;
    width: 100%;
  }

  .hero-swiper {
    position: relative;
    width: 100%;
    aspect-ratio: 1276 / 372;
    border-radius: 16px;
    overflow: hidden;
    background: rgb(14, 20, 48);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  }

  .hero-slide-panel {
    position: absolute;
    inset: 0;
    isolation: isolate;
    overflow: hidden;
    background-color: rgb(14, 20, 48);
    background-image: var(--hero-bg),
      linear-gradient(90deg, var(--hero-gradient-start) 0%, rgb(22, 38, 95) 50%, var(--hero-gradient-end) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px 28px 36px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }

  .hero-slide-panel.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
  }

  .hero-slide__art {
    position: absolute;
    top: 0;
    right: -27%;
    height: 100%;
    width: 86%;
    max-width: 640px;
    overflow: hidden;
    isolation: isolate;
    pointer-events: none;
  }

  .hero-slide__art img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .hero-slide__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    max-width: min(46%, 444px);
    color: var(--white);
  }

  .hero-slide__headline {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: center;
    min-height: 4.5rem;
    margin: 12px 0;
  }

  .hero-card__eyebrow {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
  }

  .hero-card__title {
    margin: 0;
    max-width: 22ch;
    font-size: clamp(1.5rem, 2.6vw, 2.35rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--white);
  }

  .hero-slide__content .hero-card__cta {
    margin-top: auto;
  }

  .hero-card__cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 8px;
    background: rgb(232, 90, 41);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
  }

  .hero-card__cta:hover {
    background: var(--brand-orange-hover);
    color: var(--white);
  }

  .hero-card__cta:focus {
    outline: none;
  }

  .hero-banner__pagination {
    position: absolute;
    left: 50%;
    bottom: 12px;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 320px;
    padding: 0 20px;
    transform: translateX(-50%);
    pointer-events: none;
  }

  .hero-banner__pagination .hero-dot {
    pointer-events: auto;
  }

  .hero-dot {
    width: 28px;
    height: 4px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
  }

  .hero-dot.active {
    background: rgb(232, 90, 41);
  }

  /* ===== 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 {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .section-head__title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--white);
  }

  .section-head__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
  }

  .section-head__link:hover {
    color: var(--white);
  }

  .games-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
  }

  .games-grid .game-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: 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(232, 90, 41, 0.45);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  }

  .game-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    padding: 3px 8px;
    border-radius: 4px;
    background: var(--brand-orange);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .game-card__media {
    position: relative;
    aspect-ratio: 3 / 4;
    background: rgba(0, 0, 0, 0.2);
  }

  .game-card__placeholder {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border: none;
    background: rgba(0, 0, 0, 0.2);
  }

  .game-card__placeholder img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .game-card__meta {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    padding: 8px 10px 10px;
    background: 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;
    }

    .section-head__title {
      font-size: 1rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.02em;
    }

    .section-head__link {
      font-size: 0.875rem;
    }

    .games-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .games-grid .game-card {
      border-radius: 4px;
      border-color: rgb(39, 62, 99);
    }

    .game-card__media {
      aspect-ratio: 2 / 3;
    }

    .game-card__meta {
      padding: 4px;
      text-align: center;
      min-height: 40px;
    }

    .game-card__title {
      font-size: 0.75rem;
      font-weight: 700;
      line-height: 1.33;
    }

    .game-card__provider {
      margin-top: 0;
      font-size: 0.625rem;
      line-height: 1.2;
      color: rgba(255, 255, 255, 0.92);
    }

    .game-card__badge {
      top: 6px;
      left: 6px;
      padding: 2px 6px;
      font-size: 0.5625rem;
    }

    .page-stack > .promo-grid .promo-card:hover {
      transform: none;
    }

    .games-grid .game-card:hover {
      transform: none;
    }

  }

  .game-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid var(--border);
  }

  .game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(241,90,34,0.3);
    border-color: var(--orange);
  }

  .game-card-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    text-align: center;
    padding: 12px;
    position: relative;
  }

  .game-card-1 { background: linear-gradient(135deg, #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: rgb(22, 32, 49);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: clamp(28px, 4vw, 48px) clamp(24px, 3.5vw, 56px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  }

  .toc-wrap {
    margin-bottom: 28px;
    padding: 16px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .bonus-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .bonus-icon {
    font-size: 2rem;
    flex-shrink: 0;
  }

  .bonus-text-content {
    flex: 1;
  }

  .bonus-label-text {
    font-size: 0.75rem;
    color: 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-area h1,
  .content-area h2,
  .content-area h3,
  .content-area h4 {
    color: var(--white);
    font-weight: 800;
    line-height: 1.25;
    margin: 28px 0 12px;
  }

  .content-area h2 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
  }

  .content-area h3 {
    font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  }

  .content-area a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
  }

  .content-area a:hover {
    color: var(--orange-light);
  }

  .content-title {
    margin: 0 0 20px;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    color: var(--white);
    letter-spacing: -0.02em;
  }

  .content-subtitle {
    margin: 28px 0 12px;
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.01em;
  }

  .content-area .section-sep {
    display: none;
  }

  .content-area .content-cta {
    margin-top: 28px;
    padding: 28px 24px;
    border-radius: 12px;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .content-area .content-cta__title {
    margin: 0 0 8px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
  }

  .content-area .content-cta__text {
    margin: 0 0 16px;
    font-size: 0.92rem;
    color: rgb(148, 163, 184);
  }

  .content-area .btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 10px;
    background: var(--orange);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }

  .content-area .btn-cta:hover {
    background: var(--orange-light);
    color: var(--white);
    transform: translateY(-1px);
  }

  /* Tables inside content */
  .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);
    background: rgba(255, 255, 255, 0.02);
  }

  .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: rgb(22, 32, 49);
  }

  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 ===== */
  .faq-section {
    background: rgb(22, 32, 49);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: clamp(28px, 4vw, 40px) clamp(24px, 3.5vw, 48px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  }

  .faq-title {
    margin: 0 0 20px;
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .faq-title::before {
    content: '?';
    background: rgba(241, 90, 34, 0.14);
    color: var(--orange);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid rgba(241, 90, 34, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 800;
    flex-shrink: 0;
  }

  .faq-section details {
    margin-bottom: 10px;
    padding: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: background 0.2s, border-color 0.2s;
  }

  .faq-section details:last-child {
    margin-bottom: 0;
  }

  .faq-section details:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
  }

  .faq-section details[open] {
    border-color: rgba(241, 90, 34, 0.28);
    background: rgba(255, 255, 255, 0.04);
  }

  .faq-section summary {
    cursor: pointer;
    font-weight: 700;
    padding: 16px 18px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.35;
    transition: color 0.2s;
    user-select: none;
  }

  .faq-section summary::-webkit-details-marker {
    display: none;
  }

  .faq-section summary::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--orange);
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1;
  }

  .faq-section details[open] summary {
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .faq-section details[open] summary::after {
    content: '−';
  }

  .faq-section details p {
    padding: 16px 18px 18px;
    color: rgb(148, 163, 184);
    line-height: 1.75;
    font-size: 0.92rem;
    margin: 0;
  }

  .faq-section details p a {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .faq-section details p a:hover {
    color: var(--orange-light);
  }

  /* ===== REVIEWS SECTION ===== */
  .reviews-section {
    background: rgb(22, 32, 49);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: clamp(28px, 4vw, 40px) clamp(24px, 3.5vw, 48px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  }

  .reviews-title {
    margin: 0 0 20px;
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.01em;
  }

  .reviews-section .comment {
    background: rgba(255, 255, 255, 0.03);
    padding: 16px 18px;
    border-radius: 12px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.2s, border-color 0.2s;
  }

  .reviews-section .comment:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
  }

  .reviews-section .comment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
  }

  .reviews-section .comment-author {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
  }

  .reviews-section .comment-date {
    font-size: 0.8rem;
    color: rgba(148, 163, 184, 0.85);
  }

  .reviews-section .comment-stars {
    color: var(--orange);
    font-size: 0.88rem;
    letter-spacing: 2px;
  }

  .reviews-section .comment-text {
    margin-top: 0;
    line-height: 1.65;
    color: rgb(148, 163, 184);
    font-size: 0.92rem;
  }

  .reviews-section .review-form-wrap {
    margin-top: 24px;
    padding: 20px 22px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid 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(232, 90, 41, 0.55);
    box-shadow: 0 0 0 3px rgba(232, 90, 41, 0.12);
  }

  .reviews-section .review-form-wrap textarea {
    min-height: 100px;
    resize: vertical;
  }

  .reviews-section .btn-submit-review {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.2s;
    align-self: flex-start;
  }

  .reviews-section .btn-submit-review:hover {
    background: var(--orange-light);
    transform: translateY(-1px);
  }

  /* ===== AUTHOR SECTION ===== */
  .author-section {
    margin: 0;
    padding: 0;
  }

  .author-card {
    background: rgb(22, 32, 49);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: clamp(24px, 3.5vw, 32px);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  }

  .author-card .author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: 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 ===== */
  footer {
    background: transparent;
    padding: 20px 0 32px;
    margin-top: 4px;
  }

  footer .footer-inner {
    background: rgb(22, 32, 49);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: clamp(28px, 4vw, 40px) clamp(24px, 3.5vw, 40px) clamp(22px, 3vw, 32px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 28px;
  }

  .footer-brand .casino-name-footer {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }

  .footer-brand .casino-name-footer span {
    color: var(--orange);
  }

  .footer-brand p {
    color: rgb(148, 163, 184);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 16px;
  }

  .footer-col-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer-links li a {
    color: rgb(148, 163, 184);
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links li a:hover {
    color: var(--orange);
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-copyright {
    font-size: 0.82rem;
    color: rgb(148, 163, 184);
    line-height: 1.5;
  }

  .footer-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .footer-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 0.72rem;
    color: rgb(148, 163, 184);
    font-weight: 600;
  }

  .footer-age {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .footer-age-badge {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.62rem;
    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.06);
    font-size: 0.78rem;
    color: rgb(148, 163, 184);
    line-height: 1.65;
    text-align: center;
  }

  .footer-disclaimer strong {
    color: var(--orange);
    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: 10px;
    background: rgba(22, 32, 49, 0.94);
    border: 1px solid rgba(120, 160, 220, 0.22);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
  }

  .cookie-banner.is-hidden {
    display: none;
  }

  .cookie-banner__icon {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
  }

  .cookie-banner__text {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
    white-space: nowrap;
  }

  .cookie-banner__text strong {
    color: var(--orange);
    font-weight: 700;
  }

  .cookie-banner__btn {
    flex-shrink: 0;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    background: var(--orange);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }

  .cookie-banner__btn:hover {
    background: var(--orange-light);
    transform: translateY(-1px);
  }

  /* ===== FLOATING CTA ===== */
  .floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
  }

  .floating-cta__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px 10px 12px;
    border-radius: 10px;
    background: rgba(22, 32, 49, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    text-decoration: none;
    color: var(--white);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
  }

  .floating-cta__link:hover {
    background: rgba(28, 40, 60, 0.98);
    border-color: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
    color: var(--white);
  }

  .floating-cta__icon {
    display: block;
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
  }

  .floating-cta__text {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
  }

  /* ===== DIVIDER ===== */
  .divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border) 30%, var(--border) 70%, transparent 100%);
    margin: 0;
  }

  /* ===== STATS BAR ===== */
  .stats-bar {
    background: var(--dark2);
    padding: 20px 16px;
    border-bottom: 1px solid var(--border);
  }

  .stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-item {
    text-align: center;
  }

  .stat-number {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 4px;
  }

  .stat-label {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }


  /* ===== TRUST BADGES ===== */
  .trust-section {
    background: var(--dark2);
    padding: 24px 16px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .trust-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--gray);
  }

  .trust-icon {
    font-size: 1.3rem;
    color: var(--orange);
  }

  /* ===== GAME PROVIDERS ===== */
  .providers-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
  }

  .providers-section--payments {
    gap: 16px;
    margin-top: 0;
    margin-bottom: 20px;
    padding: 8px 0 4px;
  }

  .providers-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .providers-section__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--white);
  }

  .providers-section__nav {
    display: none;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }

  .providers-section.is-scrollable .providers-section__nav {
    display: flex;
  }

  .providers-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    border-radius: 4px;
    background: 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;
  }

  @media (max-width: 1023px) {
    .providers-carousel {
      margin-left: -16px;
      margin-right: -16px;
      padding-left: 16px;
      padding-right: 16px;
    }

    .providers-section.is-scrollable .providers-section__head {
      padding-right: 16px;
    }
  }

  @media (min-width: 1024px) {

    .providers-section__title {
      font-size: 1.125rem;
    }

    .providers-nav-btn {
      width: 40px;
      height: 40px;
      border-radius: 8px;
    }
  }

  @media (min-width: 1280px) {
    .providers-card {
      flex: 0 0 145.5px;
      width: 145.5px;
      min-width: 145.5px;
    }
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 768px) {
    :root {
      --header-h: 60px;
    }

    .top-nav-inner {
      gap: 12px;
      padding: 0 12px;
      height: var(--header-h);
    }

    .header-nav {
      display: none;
    }

    .nav-drawer__nav-group--header {
      display: flex;
    }

    .logo-link {
      margin-right: 0;
    }

    .nav-burger {
      width: 36px;
      height: 36px;
      margin-right: 8px;
      gap: 4px;
    }

    .nav-burger__bar {
      width: 16px;
      height: 1.75px;
    }

    .nav-search {
      display: none;
    }

    .btn-signup,
    .btn-signin {
      min-height: 36px;
      padding: 0 12px;
      font-size: 0.8125rem;
    }

    .hero-bonus-box {
      padding: 20px 28px;
    }

    .game-grid {
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    .content-area,
    .reviews-section,
    .faq-section {
      padding: 22px 18px;
    }

    .content-title {
      font-size: 1.35rem;
    }

    .author-card {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 22px 18px;
    }

    .author-card .author-avatar {
      width: 64px;
      height: 64px;
    }

    .cookie-banner {
      bottom: 12px;
      left: 12px;
      right: 12px;
      transform: none;
      width: auto;
      max-width: none;
    }

    .cookie-banner__text {
      white-space: normal;
    }

    body:not(.cookies-accepted) .floating-cta {
      bottom: calc(12px + 52px + 10px);
    }

    .floating-cta {
      bottom: 12px;
      right: 12px;
    }

    body.cookies-accepted .floating-cta {
      bottom: 12px;
    }

    footer {
      padding: 12px 0 24px;
    }

    footer .footer-inner {
      padding: 24px 18px 20px;
    }

    .footer-grid > div {
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .footer-grid > div:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .footer-col-title {
      margin-bottom: 10px;
      font-size: 0.82rem;
      letter-spacing: 0.7px;
    }

    .footer-links {
      gap: 6px;
    }

    .footer-links li a {
      font-size: 0.9rem;
      line-height: 1.35;
    }
  }

  @media (max-width: 480px) {
    .logo-img {
      height: 30px;
      max-width: 130px;
    }

    .btn-signin {
      display: none;
    }

    .game-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }

    .promo-strip-inner {
      grid-template-columns: 1fr;
    }

    .stats-inner {
      gap: 16px;
    }

    .stat-number {
      font-size: 1.3rem;
    }

    .hero-bonus-box {
      padding: 18px 20px;
    }

    .btn-cta {
      font-size: 0.95rem;
      padding: 14px 28px;
    }

    .floating-cta__link {
      padding: 8px 14px 8px 10px;
    }

    .floating-cta__icon {
      width: 36px;
      height: 36px;
    }

    .floating-cta__text {
      font-size: 0.8125rem;
    }
  }

  /* ===== UTILITY ===== */
  .text-orange { color: var(--orange); }
  .text-gold { color: var(--gold); }
  .text-gray { color: var(--gray); }
  .mt-0 { margin-top: 0; }
  .mb-0 { margin-bottom: 0; }

  @media (max-width: 768px) {
    .hero-swiper {
      aspect-ratio: auto;
      height: 200px;
      min-height: 200px;
      border-radius: 12px;
    }

    .hero-slide-panel {
      padding: 12px 12px 28px;
    }

    .hero-slide__art {
      top: 0;
      right: -27%;
      bottom: 0;
      left: auto;
      width: 92%;
      max-width: 344px;
      height: 100%;
      z-index: 0;
      overflow: visible;
      display: block;
    }

    .hero-slide__art img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
    }

    .hero-slide__content {
      position: relative;
      z-index: 2;
      max-width: 172px;
      height: 100%;
      justify-content: flex-start;
    }

    .hero-slide__headline {
      flex: 0 1 auto;
      min-height: 72px;
      margin: 0;
      justify-content: center;
    }

    .hero-card__eyebrow {
      margin: 0 0 12px;
      font-size: 0.625rem;
      font-weight: 800;
      line-height: 1.2;
      letter-spacing: 0.04em;
    }

    .hero-card__title {
      max-width: none;
      font-size: 1rem;
      font-weight: 800;
      line-height: 1.5;
      letter-spacing: 0;
    }

    .hero-slide__content .hero-card__cta {
      margin-top: auto;
    }

    .hero-card__cta {
      min-height: 32px;
      padding: 0 12px;
      font-size: 0.875rem;
      font-weight: 700;
      border-radius: 4px;
    }

    .hero-banner__pagination {
      bottom: 12px;
    }

    .hero-dot {
      width: 22px;
      height: 3px;
    }
  }

  @media (min-width: 768px) {
    .hero-swiper {
      aspect-ratio: 1276 / 372;
    }

    .hero-slide-panel {
      padding: 20px 32px 40px;
    }

    .hero-slide__art {
      right: -12%;
      width: 62%;
    }

    .hero-slide__content {
      max-width: min(44%, 480px);
    }
  }

  @media (min-width: 1280px) {
    .hero-slide__art {
      right: 0;
      width: 55%;
      max-width: 640px;
    }
  }

  /* ===== SECTION SEPARATOR ===== */
  .section-sep {
    height: 4px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--orange-dark) 50%, transparent 100%);
    border-radius: 2px;
    margin-bottom: 20px;
    max-width: 80px;
  }

  /* Links styled as UI controls */
  a.btn-signup,
  a.btn-signin,
  a.nav-search,
  a.logo-link,
  a.hero-card__cta {
    text-decoration: none;
  }

  /* ===== INNER PAGE HERO ===== */
  .page-hero {
    position: relative;
    padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 40px);
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(14, 11, 60) 0%, rgb(32, 48, 95) 45%, rgb(60, 110, 214) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  }

  .page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(232, 90, 41, 0.22) 0%, transparent 55%);
    pointer-events: none;
  }

  .page-hero > * {
    position: relative;
    z-index: 1;
  }

  .page-hero__eyebrow {
    margin: 0 0 10px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
  }

  .page-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    letter-spacing: -0.02em;
  }

  .page-hero__lead {
    margin: 0 0 20px;
    max-width: 62ch;
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
  }

  .page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .page-hero__actions .btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 8px;
    background: var(--brand-orange);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
  }

  .page-hero__actions .btn-cta:hover {
    background: var(--brand-orange-hover);
    color: var(--white);
  }

  .page-hero__actions .btn-cta--ghost {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
  }

  .page-hero__actions .btn-cta--ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
  }

  /* ===== CONTENT BLOCKS (LANDING SECTIONS) ===== */
  .landing-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border-radius: 16px;
    background: rgb(22, 32, 49);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .landing-section__title {
    margin: 0;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.01em;
  }

  .landing-section__text {
    margin: 0;
    color: rgb(148, 163, 184);
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .landing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .landing-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-card {
    padding: 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.2s, transform 0.2s;
  }

  .landing-card:hover {
    border-color: rgba(232, 90, 41, 0.35);
    transform: translateY(-2px);
  }

  .landing-card__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: rgba(232, 90, 41, 0.14);
    border: 1px solid rgba(232, 90, 41, 0.25);
  }

  .landing-card h3 {
    margin: 0 0 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
  }

  .landing-card p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.55;
    color: rgb(148, 163, 184);
  }

  .steps-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    list-style: none;
    counter-reset: step;
  }

  .steps-list__item {
    position: relative;
    padding: 18px 16px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .steps-list__item::before {
    counter-increment: step;
    content: counter(step);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-bottom: 10px;
    border-radius: 8px;
    background: var(--brand-orange);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 800;
  }

  .steps-list__title {
    margin: 0 0 6px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
  }

  .steps-list__text {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgb(148, 163, 184);
  }

  .promo-code-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(232, 90, 41, 0.12) 0%, rgba(60, 110, 214, 0.12) 100%);
    border: 1px dashed rgba(232, 90, 41, 0.45);
  }

  .promo-code-box__label {
    margin: 0 0 4px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(148, 163, 184, 0.95);
  }

  .promo-code-box__code {
    margin: 0;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.06em;
  }

  .promo-code-box__hint {
    margin: 6px 0 0;
    font-size: 0.82rem;
    color: rgb(148, 163, 184);
  }

  .rg-notice {
    padding: 18px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--brand-orange);
  }

  .rg-notice__title {
    margin: 0 0 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
  }

  .rg-notice p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.65;
    color: rgb(148, 163, 184);
  }

  .rg-notice a {
    color: var(--orange);
    font-weight: 600;
  }

  .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .trust-grid__item {
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
  }

  .trust-grid__item span {
    display: block;
    margin-top: 4px;
    font-size: 0.72rem;
    font-weight: 500;
    color: rgb(148, 163, 184);
  }

  /* ===== LOGIN DEMO CARD ===== */
  .login-wrap {
    max-width: 420px;
    margin: 0 auto;
  }

  .login-card {
    padding: 28px 24px;
    border-radius: 16px;
    background: rgb(22, 32, 49);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  }

  .login-card__badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(232, 90, 41, 0.15);
    border: 1px solid rgba(232, 90, 41, 0.3);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--orange);
  }

  .login-card h2 {
    margin: 0 0 8px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
  }

  .login-card__sub {
    margin: 0 0 20px;
    font-size: 0.85rem;
    color: rgb(148, 163, 184);
    line-height: 1.5;
  }

  .login-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .login-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
  }

  .login-form input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(12, 20, 39, 0.55);
    color: var(--white);
    font-size: 0.93rem;
    font-family: inherit;
    outline: none;
  }

  .login-form input:disabled {
    opacity: 0.65;
    cursor: not-allowed;
  }

  .login-form__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
  }

  .login-form__remember {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgb(148, 163, 184);
  }

  .login-form__remember input {
    width: auto;
  }

  .login-form__submit {
    width: 100%;
    min-height: 44px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 700;
    font-family: inherit;
    cursor: not-allowed;
  }

  .login-card__note {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.78rem;
    line-height: 1.55;
    color: rgb(148, 163, 184);
  }

  .info-callout {
    margin-top: 20px;
    padding: 16px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .info-callout h3 {
    margin: 0 0 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
  }

  .info-callout p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgb(148, 163, 184);
  }

  .page-stack--inner {
    padding-top: 16px;
    padding-bottom: 32px;
  }

  .page-stack--inner .container--seo {
    padding-top: 0;
  }

  @media (max-width: 900px) {
    .landing-grid,
    .landing-grid--2,
    .trust-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .steps-list {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 560px) {
    .landing-grid,
    .landing-grid--2,
    .trust-grid,
    .steps-list {
      grid-template-columns: 1fr;
    }

    .promo-code-box {
      flex-direction: column;
      align-items: flex-start;
    }
  }