/* =========================================================
   0) FONT
   ========================================================= */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("assets/fonts/roboto-v50-latin-latin-ext-500.woff2") format("woff2");
}

/* =========================================================
   1) DESIGN TOKENS
   ========================================================= */
:root {
  --b: 3, 5, 25;
  --b-sc: 255, 255, 255;

  --hero: 0, 190, 255;
  --hero-hover: 100, 210, 255;
  --hero-sc: 255, 255, 255;

  --brand: 0, 220, 100;
  --brand-hover: 50, 230, 130;
  --brand-sc: 0, 0, 0;

  --secondary: 20, 25, 45;
  --secondary-hover: 30, 35, 60;
  --secondary-sc: 255, 255, 255;

  --accent: 0, 140, 255;
  --accent-hover: 50, 160, 255;
  --accent-sc: 255, 255, 255;

  --oc-1: 0, 190, 255;
  --oc-1-hover: 100, 210, 255;
  --oc-1-sc: 255, 255, 255;

  --oc-2: 240, 240, 250;
  --oc-2-hover: 255, 255, 255;
  --oc-2-sc: 0, 0, 0;

  --oc-3: 255, 60, 90;
  --oc-3-hover: 255, 100, 120;
  --oc-3-sc: 255, 255, 255;

  --odd-up: 0, 220, 100;
  --odd-up-hover: 50, 230, 130;
  --odd-up-sc: 0, 0, 0;

  --odd-down: 255, 60, 90;
  --odd-down-hover: 255, 100, 120;
  --odd-down-sc: 255, 255, 255;

  --header: 5, 8, 30;
  --header-hover: 10, 15, 40;
  --header-sc: 255, 255, 255;

  --menu: 10, 14, 40;
  --menu-hover: 20, 24, 60;
  --menu-sc: 255, 255, 255;

  --tab-navigation: 5, 8, 30;
  --tab-navigation-hover: 20, 24, 60;
  --tab-navigation-sc: 255, 255, 255;

  --static-black: 0, 0, 0;
  --static-black-hover: 20, 20, 20;
  --static-black-sc: 255, 255, 255;

  --static-white: 255, 255, 255;
  --static-white-hover: 240, 240, 240;
  --static-white-sc: 0, 0, 0;

  --font-family-raw: "Poppins", "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;

  /* Aliases */
  --color-primary: rgb(var(--hero));
  --color-primary-hover: rgb(var(--hero-hover));
  --color-on-primary: rgb(var(--hero-sc));

  --color-accent: rgb(var(--accent));
  --color-accent-hover: rgb(var(--accent-hover));
  --color-on-accent: rgb(var(--accent-sc));

  --color-success: rgb(var(--brand));
  --color-success-hover: rgb(var(--brand-hover));
  --color-on-success: rgb(var(--b-sc));

  --color-danger: rgb(var(--oc-3));
  --color-danger-hover: rgb(var(--oc-3-hover));
  --color-on-danger: rgb(var(--oc-3-sc));

  --color-warning: #ffd700;
  --color-warning-hover: #ffe44d;
  --color-on-warning: #000;

  /* Surfaces */
  --color-surface-base: rgba(20, 25, 45, 0.6);
  --color-surface-alt: rgba(5, 8, 30, 0.9);
  --color-surface-raised: rgba(255, 255, 255, 0.05);
  --color-surface-soft: rgba(3, 5, 25, 0.95);

  --color-page-bg: rgb(var(--b));
  --color-border-subtle: rgba(255, 255, 255, 0.08);
  --color-border-strong: rgba(0, 190, 255, 0.4);

  --color-text: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.65);
  --color-text-soft: rgba(255, 255, 255, 0.45);

  --color-link: rgba(255, 255, 255, 0.9);
  --color-link-hover: rgb(var(--hero));
  --color-focus: rgb(var(--hero));

  /* Layout */
  --layout-max-width: 1320px;
  --layout-gutter-x: 16px;
  --layout-section-spacing-y: 48px;

  /* Typography */
  --font-family-base: var(--font-family-raw);
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;

  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  --line-height-tight: 1.2;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.8;

  /* Spacing */
  --space-3xs: 2px;
  --space-2xs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* Radius */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-hard: 0 15px 40px rgba(0, 0, 0, 0.6);
  --shadow-header: 0 4px 30px rgba(0, 0, 0, 0.5);

  --transition-base: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: 0.15s ease-out;

  --button-padding-y: 10px;
  --button-padding-x: 24px;

  /* Z-index scale — единый источник правды */
  --z-sticky-cta: 900;
  --z-overlay: 1000;
  --z-nav: 1100;
  --z-header: 1200;

  /* NC tokens */
  --nc-shell-bg: rgba(255, 255, 255, 0.04);
  --nc-shell-border: rgba(255, 255, 255, 0.08);
  --nc-shell-shadow: var(--shadow-soft);
  --nc-muted: rgba(255, 255, 255, 0.65);
  --nc-soft: rgba(255, 255, 255, 0.82);

  /* Header sizing — единый источник правды */
  --header-h-desktop: 70px;
  --header-h-mobile: 60px;
  --nav-panel-max: 360px;
}

/* =========================================================
   2) RESET + BASE
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  min-width: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;

  background-color: var(--color-page-bg);
  background-image: radial-gradient(circle at 50% 0%, rgba(0, 190, 255, 0.08) 0%, transparent 60%);
  background-attachment: fixed;

  color: var(--color-text);
  font-family: var(--font-family-base);
  font-size: var(--font-size-md);
  line-height: var(--line-height-normal);

  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* псевдоэлементы body/header никогда не перехватывают события */
body::before,
body::after,
.main-header::before,
.main-header::after {
  pointer-events: none;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
  border-style: none;
  display: block;
}

a {
  color: var(--color-link);
  text-decoration: none;
  transition: color var(--transition-base), text-shadow var(--transition-base);
}

a:hover {
  color: var(--color-primary);
  text-shadow: 0 0 8px rgba(0, 190, 255, 0.35);
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
}

button {
  border: 0;
  padding: 0;
  cursor: pointer;
}

ul,
ol {
  padding-left: var(--space-lg);
  margin: 0 0 var(--space-md);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 var(--space-sm);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: #fff;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 var(--space-sm);
  color: var(--color-text-muted);
}

p a {
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 190, 255, 0.6);
  font-weight: 650;
  transition: color var(--transition-fast), border-color var(--transition-fast), text-shadow var(--transition-fast);
}

p a:hover {
  color: var(--color-primary);
  border-bottom-color: transparent;
  text-shadow: 0 0 10px rgba(0, 190, 255, 0.35);
}

table {
  border-collapse: collapse;
  width: 100%;
}

:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 4px;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6,
li,
a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.2); }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.2); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.35); }

/* =========================================================
   3) LAYOUT UTILITIES
   ========================================================= */
.container {
  max-width: var(--layout-max-width);
  margin-inline: auto;
  padding-inline: var(--layout-gutter-x);
}

.section {
  padding-block: var(--layout-section-spacing-y);
}

.card {
  background: var(--color-surface-base);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-soft);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  font-size: var(--font-size-xs);
  font-weight: 650;
  color: var(--color-text);
  border: 1px solid var(--color-border-subtle);
  backdrop-filter: blur(4px);
}

/* =========================================================
   4) BUTTON SYSTEM
   ========================================================= */
.button,
.hero-offer__cta,
.main-offer__cta-button,
.bonus-calculator__button,
.sticky-cta__button,
.game-grid__more-button,
.game-card__button,
.bonus-card-v2__cta,
.onboarding-simulator__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xs);

  padding-block: var(--button-padding-y);
  padding-inline: var(--button-padding-x);

  border-radius: var(--radius-sm);
  border: 1px solid transparent;

  background: rgba(255, 255, 255, 0.08);
  color: #fff;

  font-size: var(--font-size-sm);
  font-weight: 800;
  line-height: 1.2;

  text-decoration: none;
  white-space: nowrap;

  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base),
    border-color var(--transition-base);
  cursor: pointer;

  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.button--primary,
.hero-offer__cta,
.main-offer__cta-button,
.bonus-calculator__button,
.sticky-cta__button,
.game-grid__more-button,
.bonus-card-v2__cta,
.onboarding-simulator__button,
.game-card__button.button--primary {
  background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
  background-size: 200% auto;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(0, 114, 255, 0.28);
}

.button--primary:hover,
.hero-offer__cta:hover,
.main-offer__cta-button:hover,
.bonus-calculator__button:hover,
.sticky-cta__button:hover,
.game-grid__more-button:hover,
.bonus-card-v2__cta:hover,
.onboarding-simulator__button:hover,
.game-card__button.button--primary:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 114, 255, 0.45);
}

.button--secondary,
.game-card__button.button--secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
}

.button--secondary:hover,
.game-card__button.button--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.button--success {
  background: linear-gradient(135deg, #00ff87 0%, #60efff 100%);
  color: #000;
  font-weight: 900;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(0, 255, 135, 0.25);
}

.button--success:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 255, 135, 0.45);
}

.button:disabled,
.button[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.05);
  transform: none;
}

.main-offer__cta-button {
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
  white-space: normal;
  text-align: center;
  padding-block: 16px;
  font-size: 16px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #11998e 0%, #38ef7d 100%);
  box-shadow: 0 0 20px rgba(56, 239, 125, 0.35);
}

.main-offer__cta-button:hover {
  box-shadow: 0 0 30px rgba(56, 239, 125, 0.55);
}

/* =========================================================
   5) HEADER + NAV
   ========================================================= */
.main-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);

  background: rgba(5, 8, 30, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow: var(--shadow-header);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.main-header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);

  width: 100%;
  max-width: 1608px;
  margin-inline: auto;
  padding-inline: 12px;

  height: var(--header-h-desktop);
}

.main-header__logo img {
  height: 44px;
  display: block;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.5));
}

.main-header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Burger */
.main-header__burger {
  width: 44px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.main-header__burger span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.main-header__burger:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 190, 255, 0.35);
}

/* Desktop nav */
.main-nav {
  display: block;
}

.main-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav__item {
  position: relative;
}

.main-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  white-space: nowrap;
}

.main-nav__link::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: var(--color-primary);
  box-shadow: 0 0 10px rgba(0, 190, 255, 0.25);
  transition: width 0.25s ease;
}

.main-nav__link:hover {
  color: var(--color-primary);
  text-shadow: 0 0 8px rgba(0, 190, 255, 0.35);
}

.main-nav__link:hover::after {
  width: 100%;
}

/* Dropdown desktop */
.main-nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 20;
  min-width: 220px;
  padding: 8px;
  margin: 0;
  list-style: none;
  background: rgba(14, 18, 43, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.main-nav__dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--color-text-muted);
  font-size: 13px;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.main-nav__dropdown a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: translateX(4px);
}

/* Desktop: бургер скрыт, dropdown по ховеру */
@media (min-width: 960px) {
  .main-header__burger {
    display: none;
  }

  .main-nav__item.has-dropdown:hover > .main-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* =========================================================
   6) FOOTER
   ========================================================= */
.main-footer {
  background: #020311;
  position: relative;
  overflow: hidden;
  margin-top: var(--space-3xl);
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.main-footer::after {
  content: "";
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 190, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.main-footer > .container {
  padding-block: var(--space-xl);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.footer-column__logo img { height: 40px; opacity: 0.9; }

.footer-column__warning {
  font-size: var(--font-size-xs);
  color: var(--color-text-soft);
}

.footer-column__trust-seals {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.footer-column__trust-seals img {
  filter: grayscale(100%);
  opacity: 0.55;
  transition: filter var(--transition-fast), opacity var(--transition-fast);
}

.footer-column__trust-seals img:hover {
  filter: grayscale(0);
  opacity: 1;
}

.footer-column__title {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  font-weight: 900;
  margin-bottom: 5px;
  display: inline-block;
}

.footer-column__title::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-primary);
  margin-top: 6px;
}

.footer-column__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-column__list a {
  color: var(--color-text-muted);
  font-size: 13px;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-column__list a:hover {
  color: var(--color-primary);
  transform: translateX(3px);
}

.footer-column__payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.footer-column__payment-logos img {
  height: 28px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.main-footer__copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.3);
  padding-block: var(--space-lg);
  background: #000;
  text-align: center;
  letter-spacing: 0.5px;
}

/* =========================================================
   7) HERO OFFER
   ========================================================= */
.hero-offer {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 18px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 190, 255, 0.18);
  background: radial-gradient(circle at top right, #112852 0%, #030519 70%);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45), inset 0 0 40px rgba(0, 190, 255, 0.05);
  margin-bottom: var(--space-2xl);
}

.hero-offer__content {
  max-width: 100%;
  min-width: 0;
}

.hero-offer__title {
  margin: 0 0 12px 0;
  font-size: clamp(1.35rem, 4.2vw, 2.35rem);
  line-height: 1.15;
  color: #fff;
}

.hero-offer__subtitle {
  margin: 0 0 14px 0;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 62ch;
}

.hero-offer__main-offer {
  margin: 0 0 16px 0;
  font-size: var(--font-size-sm);
  font-weight: 650;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 14px;
}

.hero-offer__main-offer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-offer__main-offer li {
  position: relative;
  padding-left: 18px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.8);
}

.hero-offer__main-offer li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  transform: rotate(45deg);
  background: rgb(var(--brand));
  box-shadow: 0 0 10px rgba(0, 220, 100, 0.25);
}

.hero-offer__cta {
  width: 100%;
  max-width: 420px;
  white-space: normal;
  text-align: center;
  padding: 14px 18px;
  font-size: 15px;
  line-height: 1.2;
  border-radius: var(--radius-pill);
}

.hero-offer__visual {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-offer__visual img {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(0, 190, 255, 0.28));
}

@media (min-width: 960px) {
  .hero-offer {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 26px;
    padding: 44px 38px;
  }

  .hero-offer__visual {
    justify-content: flex-end;
  }

  .hero-offer__visual img {
    max-width: 460px;
  }

  .hero-offer__cta {
    width: auto;
    min-width: 260px;
  }

  .hero-offer__title {
    font-size: clamp(2rem, 2.6vw, 2.9rem);
  }
}

/* =========================================================
   8) COMPONENTS
   ========================================================= */

/* 8.1 ExpertRatingCard */
.expert-rating-card {
  background: var(--color-surface-base);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: var(--space-md);
  position: relative;
  overflow: hidden;
}

.expert-rating-card__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  border-bottom: 1px solid var(--color-border-subtle);
  padding-bottom: 15px;
}

.expert-rating-card__summary { font-size: var(--font-size-sm); color: var(--color-text-muted); }
.expert-rating-card__score { font-size: 2.5rem; font-weight: 900; color: var(--color-success); text-shadow: 0 0 15px rgba(0, 220, 100, 0.35); }
.expert-rating-card__stars { font-size: var(--font-size-lg); color: var(--color-warning); }
.expert-rating-card__breakdown { display: grid; gap: var(--space-sm); }

.rating-item {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 4fr) auto;
  align-items: center;
  column-gap: var(--space-md);
  row-gap: 4px;
  font-size: var(--font-size-xs);
}

.rating-item__label { color: #fff; font-weight: 700; }

.rating-item__progress-bar {
  position: relative;
  height: 6px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.rating-item__progress {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #00ff87, #00c6ff);
  box-shadow: 0 0 10px rgba(0, 255, 135, 0.25);
}

.rating-item__value { font-variant-numeric: tabular-nums; color: #fff; font-weight: 800; }

/* 8.2 AuthorBox */
.author-box {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border-subtle);
}

.author-box__avatar {
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid var(--color-primary);
  display: block;
  background-color: #000;
  box-shadow: 0 0 10px rgba(0, 190, 255, 0.2);
}

.author-box__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.author-box__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}

/* 8.3 LicenseInfo */
.license-info {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  background: rgba(0, 220, 100, 0.1);
  color: #fff;
  font-size: var(--font-size-xs);
  border: 1px solid rgba(0, 220, 100, 0.2);
}

.license-info__icon { font-size: var(--font-size-sm); color: var(--color-success); }

/* 8.4 ProsCons */
.pros-cons {
  display: grid;
  gap: var(--space-md);
  background: var(--color-surface-base);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  border: 1px solid var(--color-border-subtle);
}

.pros-cons__column {
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.2);
}

.pros-cons__column--pros {
  border-left: 3px solid var(--color-success);
  background: linear-gradient(90deg, rgba(0, 220, 100, 0.06), transparent);
}

.pros-cons__column--cons {
  border-left: 3px solid var(--color-danger);
  background: linear-gradient(90deg, rgba(255, 60, 90, 0.06), transparent);
}

.pros-cons__title {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--space-sm);
  font-weight: 900;
  letter-spacing: 0.05em;
}

.pros-cons__item {
  margin-bottom: 8px;
  color: var(--color-text-muted);
  display: flex;
  align-items: baseline;
}

.pros-cons__item::before { content: "•"; margin-right: 8px; color: rgba(255, 255, 255, 0.35); }

/* 8.5 ResponsibleGamingBlock */
.responsible-gaming-block {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--color-border-subtle);
  font-size: var(--font-size-sm);
}

.responsible-gaming-block__title {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--space-xs);
  font-weight: 900;
}

.responsible-gaming-block__text { color: var(--color-text-muted); }

/* 8.6 SecurityAndFairness */
.security-fairness {
  display: grid;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--color-surface-base);
  border: 1px solid var(--color-border-subtle);
}

.security-fairness__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--font-size-sm);
}

.security-fairness__icon {
  font-size: var(--font-size-lg);
  color: var(--color-primary);
  background: rgba(0, 190, 255, 0.1);
  padding: 8px;
  border-radius: 8px;
}

.security-fairness__text { color: var(--color-text-muted); }

/* 8.7 AwardsAndRecognition */
.awards-recognition {
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--color-surface-base);
  border: 1px solid var(--color-border-subtle);
}

.awards-recognition__title { margin-bottom: var(--space-sm); font-size: var(--font-size-md); color: #fff; font-weight: 900; }

.awards-recognition__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-sm);
}

.award-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.award-item:hover { border-color: rgba(255, 255, 255, 0.12); background: rgba(255, 255, 255, 0.05); }

.award-item__logo {
  max-height: 40px;
  margin-inline: auto;
  filter: grayscale(100%) brightness(1.5);
  opacity: 0.75;
  transition: filter var(--transition-fast), opacity var(--transition-fast);
}

.award-item:hover .award-item__logo { filter: grayscale(0) brightness(1); opacity: 1; }

/* 8.8 MainBrandOffer */
.main-offer {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(30, 40, 70, 0.6) 0%, rgba(10, 15, 30, 0.85) 100%);
  border: 1px solid rgba(0, 190, 255, 0.35);
  box-shadow: 0 0 20px rgba(0, 190, 255, 0.15);
  display: grid;
  gap: var(--space-sm);
}

.main-offer__logo { width: 120px; margin-inline: auto; }
.main-offer__title { font-size: var(--font-size-xl); color: #fff; text-transform: uppercase; font-weight: 900; }
.main-offer__condition { font-size: var(--font-size-sm); color: var(--color-text-muted); }

.main-offer__promo-code {
  font-size: var(--font-size-md);
  color: #fff;
  background: rgba(0, 190, 255, 0.12);
  padding: 10px;
  border-radius: 8px;
  border: 1px dashed rgba(0, 190, 255, 0.45);
  font-weight: 900;
  letter-spacing: 0.08em;
}

/* 8.9 RegistrationSteps */
.reg-steps { display: grid; gap: var(--space-md); }

.reg-steps__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--color-surface-base);
  border: 1px solid var(--color-border-subtle);
  align-items: center;
}

.reg-steps__number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-md);
  font-weight: 900;
  background: var(--color-surface-raised);
  color: var(--color-primary);
  border: 2px solid rgba(0, 190, 255, 0.55);
  box-shadow: 0 0 10px rgba(0, 190, 255, 0.18);
}

.reg-steps__title { font-size: var(--font-size-md); font-weight: 900; color: #fff; }
.reg-steps__description { font-size: var(--font-size-sm); color: var(--color-text-muted); margin-top: 4px; }

/* 8.10 QuickDeposit */
.quick-deposit {
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--color-surface-base);
  border: 1px solid var(--color-border-subtle);
}

.quick-deposit__title { font-size: var(--font-size-md); margin-bottom: var(--space-sm); color: #fff; font-weight: 900; }

.quick-deposit__grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.quick-deposit__logo {
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.quick-deposit__logo:hover { background: rgba(255, 255, 255, 0.1); transform: scale(1.04); }

/* 8.11 AppDownloadBlock */
.app-download {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--color-border-subtle);
}

.app-download__image { width: 72px; height: 72px; border-radius: var(--radius-lg); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); }
.app-download__content { display: flex; flex-direction: column; gap: var(--space-sm); flex: 1; min-width: 0; }
.app-download__title { font-size: var(--font-size-lg); color: #fff; font-weight: 900; }
.app-download__buttons { display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.app-download__button img { height: 40px; }

/* 8.12 StickyCTA */
.sticky-cta {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: var(--z-sticky-cta);
  padding: var(--space-sm) var(--layout-gutter-x);
  background: rgba(5, 8, 30, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 190, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.7);
}

.sticky-cta__info { display: flex; flex-direction: column; gap: 2px; font-size: var(--font-size-xs); color: #fff; }
.sticky-cta__brand { font-weight: 900; text-transform: uppercase; color: var(--color-primary); text-shadow: 0 0 5px rgba(0, 190, 255, 0.5); }
.sticky-cta__offer { font-size: var(--font-size-sm); color: var(--color-text-muted); }
.sticky-cta__button { padding-inline: 16px; height: 36px; }

/* 8.13 Data Tables */
.data-table-container {
  margin-block: var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--color-surface-base);
  border: 1px solid var(--color-border-subtle);
  overflow: hidden;
}

.data-table-container__title {
  padding: var(--space-md);
  font-size: var(--font-size-md);
  border-bottom: 1px solid var(--color-border-subtle);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-weight: 900;
}

.data-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.data-table { width: 100%; font-size: var(--font-size-sm); }
.data-table thead { background: rgba(0, 0, 0, 0.28); }

.data-table th,
.data-table td {
  padding: 14px 20px;
  text-align: left;
  white-space: nowrap;
}

.data-table th {
  font-weight: 900;
  color: var(--color-primary);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.data-table tbody tr:nth-child(odd) { background: rgba(255, 255, 255, 0.02); }

.data-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  color: var(--color-text-muted);
}

.promo-code {
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(0, 190, 255, 0.1);
  color: var(--color-primary);
  font-weight: 900;
  border: 1px dashed rgba(0, 190, 255, 0.45);
}

.comparison-table .is-highlighted { background: rgba(0, 190, 255, 0.08); color: #fff; }

/* 8.14 SlotDataSheet */
.data-sheet {
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--color-surface-base);
  border: 1px solid var(--color-border-subtle);
}

.data-sheet__title { margin-bottom: var(--space-sm); font-size: var(--font-size-md); color: #fff; font-weight: 900; }

.data-sheet__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }

.data-sheet__item {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  font-size: var(--font-size-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 10px;
}

.data-sheet__key { color: var(--color-text-soft); }
.data-sheet__value { font-weight: 900; color: #fff; }

/* 8.15 GameProviderGrid */
.provider-grid {
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--color-surface-base);
  border: 1px solid var(--color-border-subtle);
}

.provider-grid__title { margin-bottom: var(--space-sm); color: #fff; font-weight: 900; }

.provider-grid__logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-sm);
}

.provider-grid__logo-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: var(--space-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.provider-grid__logo-item:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(0, 190, 255, 0.35); }

.provider-grid__logo-item img {
  max-height: 32px;
  max-width: 100%;
  filter: brightness(0) invert(1) opacity(0.72);
}

.provider-grid__logo-item:hover img { opacity: 1; }

/* 8.16 FAQAccordion */
.faq-accordion {
  margin-block: var(--space-lg);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--color-surface-base);
  border: 1px solid var(--color-border-subtle);
}

.faq-accordion__title { margin-bottom: var(--space-md); color: #fff; font-weight: 900; }

.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.faq-item:hover { background: rgba(255, 255, 255, 0.04); }
.faq-item + .faq-item { margin-top: var(--space-sm); }

.faq-item__question {
  width: 100%;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  font-size: var(--font-size-md);
  font-weight: 800;
  text-align: left;
  color: #fff;
}

.faq-item__icon { font-size: var(--font-size-md); color: var(--color-primary); transition: transform 0.25s ease; }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  padding-inline: 16px;
  transition: max-height 0.28s ease, padding-bottom 0.28s ease;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.faq-item.is-open { border-color: rgba(0, 190, 255, 0.35); background: rgba(0, 190, 255, 0.05); }
.faq-item.is-open .faq-item__answer { padding-bottom: 16px; max-height: 800px; }
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }

/* 8.17 BonusCalculator */
.bonus-calculator {
  margin-block: var(--space-lg);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(20, 25, 45, 0.82), rgba(10, 12, 30, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: var(--space-md);
  box-shadow: var(--shadow-medium);
}

.form-group label { color: #fff; font-size: 13px; margin-bottom: 6px; display: block; font-weight: 650; }

.form-group input[type="number"] {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px;
  background: #030519;
  color: #fff;
  width: 100%;
  font-weight: 700;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input[type="number"]:focus {
  border-color: rgba(0, 190, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 190, 255, 0.2);
}

.bonus-calculator__result {
  font-size: var(--font-size-md);
  color: #fff;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

#wagerAmount {
  font-weight: 900;
  color: var(--color-success);
  font-size: 1.4em;
  text-shadow: 0 0 10px rgba(0, 220, 100, 0.35);
}

/* 8.18 TableOfContents */
.toc {
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border-subtle);
  font-size: var(--font-size-sm);
}

.toc__title { margin-bottom: var(--space-xs); font-size: var(--font-size-md); text-transform: uppercase; color: #fff; font-weight: 900; }

.toc__item a {
  color: var(--color-text-muted);
  display: block;
  padding: 4px 0;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.toc__item a:hover { color: var(--color-primary); transform: translateX(4px); }

/* 8.19 VideoEmbed */
.video-embed__wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-embed__caption { margin-top: var(--space-xs); font-size: var(--font-size-xs); color: var(--color-text-soft); text-align: center; }

/* 8.20 EvidenceBox */
.evidence-box {
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: rgba(0, 220, 100, 0.05);
  border: 1px solid rgba(0, 220, 100, 0.2);
  display: grid;
  gap: var(--space-sm);
}

.evidence-box__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-success);
  color: #fff;
  box-shadow: 0 0 10px rgba(0, 220, 100, 0.35);
}

/* 8.21 UpdateBanner */
.update-banner {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border-subtle);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.update-banner__date { color: var(--color-primary); font-weight: 900; }

/* 8.22 Checklist */
.checklist {
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--color-surface-base);
  border: 1px solid var(--color-border-subtle);
  font-size: var(--font-size-sm);
}

.checklist__item--valid { color: var(--color-success); text-shadow: 0 0 5px rgba(0, 220, 100, 0.25); }
.checklist__item--invalid { color: var(--color-danger); }

/* 8.23 PaymentSpeedMeter */
.speed-meter {
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--color-surface-base);
  border: 1px solid var(--color-border-subtle);
}

.speed-meter__bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-bottom: var(--space-xs);
}

.speed-meter__progress {
  height: 100%;
  background: linear-gradient(90deg, var(--color-success), var(--color-primary), var(--color-danger));
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.12);
}

/* 8.24 GameGrid */
.game-grid__container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.game-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0e122b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 190, 255, 0.45);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 190, 255, 0.35), 0 0 20px rgba(0, 190, 255, 0.18);
  z-index: 10;
}

.game-card__image { width: 100%; aspect-ratio: 3/4; object-fit: cover; }

.game-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 25, 0.85);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  transition: opacity var(--transition-base);
  backdrop-filter: blur(4px);
}

.game-card:hover .game-card__overlay { opacity: 1; }

.game-card__title {
  color: #fff;
  font-weight: 900;
  text-align: center;
  padding: 0 15px;
  font-size: 1.05rem;
  text-transform: uppercase;
}

/* 8.28 BonusGrid */
.bonus-grid__container { display: grid; gap: 24px; }

.bonus-card-v2 {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #10142c;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-medium);
  overflow: hidden;
  padding: 24px;
  transition: transform var(--transition-base), border-color var(--transition-base), background var(--transition-base);
}

.bonus-card-v2:hover {
  transform: translateY(-4px);
  background: linear-gradient(160deg, #151a35 0%, #0e122b 100%);
  border-color: rgba(0, 190, 255, 0.45);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.bonus-card-v2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00c6ff, transparent);
  box-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
}

.bonus-card-v2__title {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bonus-card-v2__offer {
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 24px;
  font-weight: 950;
  text-shadow: 0 0 15px rgba(0, 190, 255, 0.35);
  line-height: 1.1;
}

.bonus-card-v2__cta { width: 100%; margin-top: auto; }
.bonus-card-v2__visual { display: none; }

.bonus-card-v2__tag {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  color: #bde6ff;
  background: rgba(0, 190, 255, 0.1);
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid rgba(0, 190, 255, 0.2);
}

.bonus-card-v2__offer strong { color: var(--color-success); text-shadow: 0 0 10px rgba(0, 220, 100, 0.28); }

/* 8.29 GridContainer */
.grid-container { display: grid; gap: var(--space-md); }
.grid-container--cols-3 { grid-template-columns: 1fr; }

/* 8.30 FeaturedSection */
.featured-section { padding-block: var(--layout-section-spacing-y); }

.featured-section--highlight {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* 8.31 Testimonial */
.testimonial {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid rgba(0, 190, 255, 0.6);
  box-shadow: var(--shadow-soft);
  font-style: italic;
}

/* 8.32 Callout */
.callout {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent);
  font-size: var(--font-size-sm);
  box-shadow: var(--shadow-soft);
}

.callout--warning {
  border-left: 4px solid var(--color-warning);
  background: linear-gradient(90deg, rgba(255, 184, 0, 0.1), transparent);
}

/* Language Switcher */
.lang-switcher {
  position: relative;
  z-index: calc(var(--z-header) + 1);
  display: inline-block;
}

.lang-switcher__current {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  cursor: pointer;
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  transition: background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.lang-switcher__current:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 190, 255, 0.35);
  box-shadow: 0 0 10px rgba(0, 190, 255, 0.18);
}

.lang-switcher__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: calc(var(--z-header) + 2);
  min-width: 150px;
  background: #0e122b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.98);
  transform-origin: top right;
  transition: opacity var(--transition-fast), visibility var(--transition-fast), transform var(--transition-fast);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.lang-switcher:hover .lang-switcher__dropdown,
.lang-switcher.is-active .lang-switcher__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lang-switcher__dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: #fff;
  font-size: 14px;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.lang-switcher__dropdown a:hover { background: rgba(0, 190, 255, 0.1); color: var(--color-primary); }

/* =========================================================
   9) NC BLOCKS
   ========================================================= */
.nc-steps { display: grid; gap: var(--space-sm); }

.nc-steps__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--space-sm);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--nc-shell-bg);
  border: 1px solid var(--nc-shell-border);
  box-shadow: var(--shadow-soft);
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.nc-steps__item:hover { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.15); transform: translateY(-1px); }

.nc-steps__number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-md);
  font-weight: 900;
  background: rgba(0, 190, 255, 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(0, 190, 255, 0.55);
  box-shadow: 0 0 10px rgba(0, 190, 255, 0.22);
}

.nc-steps__title { font-size: var(--font-size-md); font-weight: 900; color: #fff; margin: 0 0 4px 0; }
.nc-steps__description { font-size: var(--font-size-sm); color: var(--nc-muted); margin: 0; }

/* NC Rating Card */
.nc-rating-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--nc-shell-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-medium);
  padding: var(--space-lg);
  display: grid;
  gap: var(--space-md);
  position: relative;
  overflow: hidden;
}

.nc-rating-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-success));
  box-shadow: 0 0 10px rgba(0, 190, 255, 0.25);
}

.nc-rating-card__score {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: 2.3rem;
  font-weight: 950;
  line-height: 1;
  color: var(--color-primary);
  padding: 12px 16px;
  border-radius: var(--radius-lg);
  background: rgba(0, 190, 255, 0.08);
  border: 1px solid rgba(0, 190, 255, 0.2);
  width: fit-content;
  text-shadow: 0 0 20px rgba(0, 190, 255, 0.35);
}

.nc-rating-card__content { display: grid; gap: var(--space-xs); }
.nc-rating-card__label { margin: 0; font-size: var(--font-size-xs); letter-spacing: 1px; text-transform: uppercase; font-weight: 900; color: var(--nc-soft); }
.nc-rating-card__text { margin: 0; font-size: var(--font-size-sm); line-height: var(--line-height-relaxed); color: var(--nc-muted); }
.nc-rating-card__text strong { color: #fff; font-weight: 900; }

/* NC Pros/Cons */
.nc-pros-cons { display: grid; gap: var(--space-md); }

.nc-pros-cons__column {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--nc-shell-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--nc-shell-shadow);
  padding: var(--space-md);
  position: relative;
  overflow: hidden;
}

.nc-pros-cons__column--pros { border-left: 3px solid var(--color-success); box-shadow: inset 10px 0 20px -10px rgba(0, 220, 100, 0.1); }
.nc-pros-cons__column--cons { border-left: 3px solid var(--color-danger); box-shadow: inset 10px 0 20px -10px rgba(255, 60, 90, 0.1); }

.nc-pros-cons__title { margin: 0 0 var(--space-sm); font-size: var(--font-size-md); font-weight: 950; text-transform: uppercase; letter-spacing: 0.5px; color: #fff; }

.nc-pros-cons__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }

.nc-pros-cons__item {
  margin: 0;
  color: var(--nc-muted);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  position: relative;
  padding-left: 24px;
}

.nc-pros-cons__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  transform: rotate(45deg);
}

.nc-pros-cons__column--pros .nc-pros-cons__item::before { background: var(--color-success); box-shadow: 0 0 5px rgba(0, 220, 100, 0.35); }
.nc-pros-cons__column--cons .nc-pros-cons__item::before { background: var(--color-danger); box-shadow: 0 0 5px rgba(255, 60, 90, 0.35); }
.nc-pros-cons__item strong { color: #fff; font-weight: 900; }

/* NC Security */
.nc-security {
  background: var(--nc-shell-bg);
  border: 1px solid var(--nc-shell-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--nc-shell-shadow);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
}

.nc-security::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: var(--color-primary);
  box-shadow: 0 0 10px rgba(0, 190, 255, 0.25);
}

.nc-security__title { margin: 0 0 var(--space-md); font-size: var(--font-size-md); font-weight: 950; text-transform: uppercase; letter-spacing: 0.5px; color: #fff; }
.nc-security__items { display: grid; gap: var(--space-md); }

.nc-security__item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.nc-security__item:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.1); transform: translateY(-1px); }
.nc-security__item-title { margin: 0 0 var(--space-xs); font-size: var(--font-size-sm); font-weight: 950; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-primary); }
.nc-security__item-text { margin: 0; font-size: var(--font-size-sm); line-height: var(--line-height-relaxed); color: var(--nc-muted); }
.nc-security__item-text strong { color: #fff; font-weight: 900; }

/* Plain table styling */
table:not(.data-table) {
  width: 100%;
  border-collapse: collapse;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--color-surface-base);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

table:not(.data-table) thead { background: rgba(255, 255, 255, 0.05); }

table:not(.data-table) th,
table:not(.data-table) td {
  padding: 14px 20px;
  text-align: left;
  white-space: nowrap;
}

table:not(.data-table) th {
  color: var(--color-primary);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
  font-weight: 950;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

table:not(.data-table) td { color: var(--color-text-muted); border-bottom: 1px solid rgba(255, 255, 255, 0.03); }
table:not(.data-table) tbody tr:nth-child(odd) { background: rgba(255, 255, 255, 0.02); }

/* =========================================================
   10) RESPONSIVE — ЕДИНЫЙ БЛОК, БЕЗ ДУБЛЕЙ
   ========================================================= */

/* ---------- TABLET (640px+) ---------- */
@media (min-width: 640px) {
  .expert-rating-card {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.8fr);
    align-items: center;
  }

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

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

  .provider-grid__logos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

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

/* ---------- DESKTOP (960px+) ---------- */
@media (min-width: 960px) {
  .game-grid__container {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .bonus-card-v2 {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }

  .bonus-card-v2__cta {
    width: auto;
    margin-top: 0;
  }

  .main-footer > .container {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  /* Sticky CTA скрыта на десктопе */
  .sticky-cta {
    display: none;
  }

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

  .nc-rating-card {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    column-gap: var(--space-md);
  }

  .nc-security__items {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* =========================================================
   11) MOBILE NAV + HEADER — ЧИСТЫЙ ЕДИНЫЙ БЛОК
   ========================================================= */

/* Overlay — создаётся JS-ом, добавляется в body */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: var(--z-overlay);
  /* без backdrop-filter — не мешает кликам по меню */
}

@media (max-width: 959px) {
  /* --- Шапка --- */
  .main-header {
    position: sticky;
    top: 0;
    z-index: var(--z-header);
    margin-bottom: 0;
  }

  .main-header > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h-mobile);
    padding-inline: 12px;
    gap: 8px;
    max-width: 100%;
  }

  .main-header__logo {
    flex: 0 0 auto;
  }

  .main-header__logo img {
    height: 32px;
    width: auto;
  }

  .main-header__actions {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-end;
    gap: 8px;
  }

  /* Кнопки в шапке — компактные */
  .main-header__actions .button {
    height: 36px;
    padding: 0 12px;
    font-size: 12px;
    line-height: 1;
    border-radius: var(--radius-md);
    letter-spacing: 0.2px;
    text-transform: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 44vw;
  }

  /* Свитчер языка */
  .lang-switcher__current {
    padding: 8px 10px;
    font-size: 12px;
    gap: 6px;
    border-radius: var(--radius-pill);
  }

  /* Бургер */
  .main-header__burger {
    flex: 0 0 auto;
    width: 40px;
    height: 34px;
    gap: 5px;
  }

  .main-header__burger span {
    width: 20px;
  }

  /* Бургер-анимация в открытом состоянии */
  body.mobile-menu-open .main-header__burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.mobile-menu-open .main-header__burger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  body.mobile-menu-open .main-header__burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Скрываем вторичную кнопку на совсем узких */
  @media (max-width: 380px) {
    .main-header__actions .button--secondary {
      display: none;
    }
  }

  /* --- Оверлей активен --- */
  body.mobile-menu-open .mobile-nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  /* --- Меню (offcanvas панель) --- */
  .main-nav {
    position: fixed;
    top: var(--header-h-mobile);
    left: 0;
    height: calc(100dvh - var(--header-h-mobile));
    width: min(88vw, var(--nav-panel-max));

    padding: 16px 14px 24px;
    margin: 0;

    background: #030519;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 8px 0 40px rgba(0, 0, 0, 0.6);

    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

    /* Закрыто */
    transform: translateX(-110%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.28s ease, visibility 0s linear 0.28s;

    z-index: var(--z-nav);
    isolation: isolate;
    touch-action: manipulation;
  }

  /* Открыто */
  body.mobile-menu-open .main-nav {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.28s ease, visibility 0s linear 0s;
  }

  /* Блокируем фон от скролла */
  body.mobile-menu-open {
    overflow: hidden;
    touch-action: none;
  }

  /* --- Список ссылок --- */
  .main-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-nav__link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px 6px;
    font-size: 16px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #fff;
    text-shadow: none;
  }

  /* Убираем underline-анимацию на мобиле */
  .main-nav__link::after {
    display: none;
  }

  /* --- Dropdown → аккордеон --- */
  .main-nav__item.has-dropdown > .main-nav__link {
    position: relative;
    padding-right: 46px;
  }

  /* Иконка +/– */
  .main-nav__item.has-dropdown > .main-nav__link::before {
    content: "+";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);

    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;

    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);

    font-size: 18px;
    line-height: 1;
    opacity: 0.9;
    pointer-events: none;
    transition: background 0.2s ease, border-color 0.2s ease;
  }

  .main-nav__item.has-dropdown.is-active > .main-nav__link::before {
    content: "–";
    background: rgba(0, 190, 255, 0.14);
    border-color: rgba(0, 190, 255, 0.25);
  }

  /* Аккордеон: max-height анимация */
  .main-nav__dropdown {
    position: static;
    margin: 0;
    padding: 6px 0 12px 14px;
    list-style: none;

    background: rgba(255, 255, 255, 0.03);
    border-left: 2px solid rgba(0, 190, 255, 0.35);
    border-radius: 10px;

    opacity: 1;
    visibility: visible;
    transform: none;
    backdrop-filter: none;
    box-shadow: none;

    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .main-nav__item.has-dropdown.is-active > .main-nav__dropdown {
    max-height: 600px;
  }

  .main-nav__dropdown a {
    display: block;
    padding: 10px 10px;
    border-radius: 10px;
    color: var(--color-text-muted);
    font-size: 14px;
    transform: none;
  }

  .main-nav__dropdown a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    transform: none;
  }
}

/* Очень маленький экран */
@media (max-width: 360px) {
  :root {
    --header-h-mobile: 52px;
  }

  .main-header > .container {
    padding-inline: 10px;
  }

  .main-header__logo img {
    height: 28px;
  }

  .main-header__actions .button {
    height: 34px;
    padding: 0 10px;
    font-size: 11px;
  }

  .main-header__burger {
    width: 38px;
    height: 30px;
  }
}

/* =========================================================
   12) MOBILE CONTENT — адаптив компонентов
   ========================================================= */
@media (max-width: 639px) {

  /* Отступы секций меньше */
  :root {
    --layout-section-spacing-y: 32px;
    --layout-gutter-x: 14px;
  }

  /* Hero offer — более компактный */
  .hero-offer {
    padding: 18px 14px;
    gap: 14px;
    margin-bottom: var(--space-xl);
    border-radius: var(--radius-lg);
  }

  .hero-offer__cta {
    width: 100%;
    max-width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    border-radius: var(--radius-pill);
  }

  /* Бонусные карточки — 1 колонка */
  .bonus-grid__container {
    grid-template-columns: 1fr;
  }

  .bonus-card-v2 {
    padding: 18px;
  }

  .bonus-card-v2__offer {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }

  /* Игры — 2 колонки на телефоне */
  .game-grid__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  /* Таблицы — горизонтальный скролл с подсказкой */
  .data-table-wrapper {
    position: relative;
  }

  .data-table th,
  .data-table td,
  table:not(.data-table) th,
  table:not(.data-table) td {
    padding: 10px 12px;
    font-size: 12px;
  }

  /* Рейтинговые элементы — меньший шрифт */
  .rating-item {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr) auto;
    column-gap: 8px;
  }

  /* Шаги регистрации — 1 колонка */
  .reg-steps {
    grid-template-columns: 1fr;
  }

  /* Footer — 1 колонка */
  .main-footer > .container {
    grid-template-columns: 1fr;
  }

  /* FAQ — чуть меньше отступы */
  .faq-item__question {
    padding: 14px;
    font-size: 0.9rem;
  }

  /* Карточки данных */
  .data-sheet__item {
    flex-direction: column;
    gap: 4px;
  }

  /* Security items — 2 колонки */
  .nc-security__items {
    grid-template-columns: 1fr;
  }

  /* Pros/cons — 1 колонка */
  .pros-cons,
  .nc-pros-cons {
    grid-template-columns: 1fr;
  }

  /* Провайдеры — 3 колонки (было 3 по умолчанию — ок) */
  .provider-grid__logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  /* Sticky CTA — компактнее */
  .sticky-cta {
    padding: 10px 14px;
  }

  .sticky-cta__offer {
    display: none; /* скрываем подзаголовок, оставляем бренд + кнопку */
  }

  .sticky-cta__button {
    height: 40px;
    padding-inline: 20px;
    font-size: 13px;
  }

  /* App download — стек */
  .app-download {
    flex-direction: column;
    text-align: center;
  }

  .app-download__buttons {
    justify-content: center;
  }
}

/* Планшет landscape + маленький планшет (640–959) */
@media (min-width: 640px) and (max-width: 959px) {
  .hero-offer {
    padding: 28px 24px;
  }

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

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

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

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