/* -------------------------------------------------------
   * 1. FONT IMPORT
   * ----------------------------------------------------- */
 /* roboto-regular - latin-ext_latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('/assets/fonts/roboto-v30-latin-ext_latin-regular.woff2') format('woff2');
}
/* roboto-500 - latin-ext_latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('/assets/fonts/roboto-v30-latin-ext_latin-500.woff2') format('woff2');
}
/* roboto-700 - latin-ext_latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('/assets/fonts/roboto-v30-latin-ext_latin-700.woff2') format('woff2');
}
/* roboto-900 - latin-ext_latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  src: url('/assets/fonts/roboto-v30-latin-ext_latin-900.woff2') format('woff2');
}

  /* -------------------------------------------------------
   * 2. DESIGN TOKENS (:root) - REWORKED FOR VEGABET (Blue/Green/Orange)
   * ----------------------------------------------------- */

  :root {
    /* --- VEGABET PALETTE MAPPING --- */
    /* Brand Green: #16c72e (RGB: 22, 199, 46) */
    /* Accent Orange: #f79918 (RGB: 247, 153, 24) */
    /* Deep Navy BG: #000c24 (RGB: 0, 12, 36) */
    /* Secondary Teal: #06a9aa */
    
    /* Layout dimensions (Unchanged) */
    --mobile-header-main-section-height: 49px;
    --mobile-header-navigation-height: 40px;
    --mobile-horizontal-tab-navigation-height: 40px;
    --mobile-sub-header-full-height: 40px;
    --mobile-header-full-height: 89px;
    --dynamic-header: 104px;
    --window-height: 932px;

    /* --- REPLACING COLORS WITH VEGABET THEME --- */
    
    /* Hero/Primary -> Vegabet Green (Primary Action) */
    --hero-hover: 16, 153, 35;
    --hero-sc: 255, 255, 255;
    --hero: 22, 199, 46; 

    /* Brand -> Vegabet Green */
    --brand-hover: 16, 153, 35;
    --brand-sc: 255, 255, 255;
    --brand: 22, 199, 46;

    /* Secondary -> Vegabet Teal/Cyan */
    --secondary-hover: 4, 120, 120;
    --secondary-sc: 255, 255, 255;
    --secondary: 6, 169, 170; 

    /* Accent -> Vegabet Orange (Secondary Action) */
    --accent-hover: 220, 130, 10;
    --accent-sc: 255, 255, 255;
    --accent: 247, 153, 24;

    /* Other Colors */
    --oc-1-hover: 21, 190, 43;
    --oc-1-sc: 255, 255, 255;
    --oc-1: 16, 145, 33; /* Darker Green */

    --oc-2-hover: 229, 229, 229;
    --oc-2-sc: 0, 0, 0;
    --oc-2: 255, 215, 0; /* Gold */

    --oc-3-hover: 255, 80, 80;
    --oc-3-sc: 255, 255, 255;
    --oc-3: 255, 52, 73; /* Red for Live/Hot */

    /* Up/Down Colors */
    --odd-up-hover: 16, 153, 35;
    --odd-up-sc: 0, 0, 0;
    --odd-up: 22, 199, 46; 

    --odd-down-hover: 255, 102, 118;
    --odd-down-sc: 255, 255, 255;
    --odd-down: 255, 52, 73;

    /* Surfaces (Backgrounds) - Vegabet Deep Navy Mode */
    --b-hover: 0, 28, 87;
    --b-sc: 255, 255, 255;
    --b: 0, 12, 36; /* #000c24 Main BG */

    --header-hover: 0, 20, 60;
    --header-sc: 255, 255, 255;
    --header: 0, 12, 36; /* Header BG matches Body */

    --menu-hover: 0, 28, 87;
    --menu-sc: 255, 255, 255;
    --menu: 5, 22, 50; /* Slightly lighter for menus */

    --tab-navigation-hover: 22, 199, 46;
    --tab-navigation-sc: 255, 255, 255;
    --tab-navigation: 0, 12, 36;

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

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

    --border-radius: 4px; /* Vegabet uses squarer corners */
    --font-family-raw: 'Roboto', Arial, Helvetica, sans-serif;

    /* --------- Color aliases (rgb(var(--token))) ---------- */

    --color-primary: rgb(var(--hero)); /* GREEN */
    --color-primary-hover: rgb(var(--hero-hover));

    --color-on-primary: rgb(var(--hero-sc));

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

    --color-success: rgb(var(--odd-up));
    --color-success-hover: rgb(var(--odd-up-hover));
    --color-on-success: rgb(var(--odd-up-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: rgb(var(--oc-2)); /* Gold */
    --color-warning-hover: rgb(255, 200, 0);
    --color-on-warning: rgb(0,0,0);

    /* Background Surfaces */
    --color-surface-base: rgb(10, 25, 55); /* Card BG - Lighter than body */
    --color-surface-alt: rgb(0, 12, 36);   /* Header BG */
    --color-surface-raised: rgb(18, 38, 75); /* Lighter Card/Hover */
    --color-surface-soft: rgba(0, 12, 36, 0.95);

    --color-black: rgb(var(--static-black));
    --color-white: rgb(var(--static-white));

    /* Page BG: Deep Navy */
    --color-page-bg: rgb(0, 12, 36); 
    
    --color-border-subtle: rgba(255, 255, 255, 0.15);
    --color-border-strong: rgba(22, 199, 46, 0.5); /* Green Border */

    --color-text: #ffffff;
    --color-text-muted: #b0b8c8; /* Blue-grey text */
    --color-text-soft: #7a869a;
    
    --color-link: rgb(var(--accent)); /* Orange links */
    --color-link-hover: rgb(var(--brand)); /* Green hover */
    --color-focus: rgb(var(--brand));

    /* --------- Typography tokens --------------------------- */
    --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: 700; 
    --font-weight-bold: 900;

    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.7;

    /* --------- Spacing tokens ------------------------------ */
    --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;

    --layout-gutter-x: var(--space-md);
    --layout-section-spacing-y: var(--space-2xl);
    --layout-max-width: 1320px;

    /* --------- Radius tokens (VEGABET SQUARISH) ---------- */
    --radius-xs: 2px;
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-pill: 4px; /* Vegabet buttons are slightly rounded squares */

    /* --------- Shadow tokens ------------------------------- */
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 8px 20px rgba(0, 0, 0, 0.5);
    --shadow-hard: 0 18px 40px rgba(0, 0, 0, 0.8);
    --shadow-header: 0 2px 10px rgba(0, 0, 0, 0.5);

    /* --------- Motion tokens ------------------------------- */
    --transition-base: 200ms ease-in-out;
    --transition-fast: 100ms ease-out;

    /* --------- Component-specific tokens ------------------- */
    --button-padding-y: 10px;
    --button-padding-x: 20px;

    --z-header: 1000;
    --z-sticky-cta: 990;
    --z-overlay: 800;
  }

  /* -------------------------------------------------------
   * 3. RESET & BASE STYLES (Mobile First)
   * ----------------------------------------------------- */

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    min-height: 100vh;
    background: var(--color-page-bg);
    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;
  }

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

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

  a:hover {
    color: var(--color-link-hover);
  }

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

  button {
    border: none;
    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; /* Force white headers */
  }

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

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

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

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

/* --- FIX: LINKS INSIDE TEXT (РџР•Р Р•Р›РРќРљРћР’РљРђ) --- */
  p a {
    color: #ffffff;             
    text-decoration: underline; 
    text-underline-offset: 3px; 
    font-weight: 700;           
  }

  p a:hover {
    color: var(--color-primary); /* Green hover */
    text-decoration: none;       
  }

  h1 {
    margin-top: var(--space-2xl);
  }


  /* -------------------------------------------------------
   * 4. 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);
  }

  .chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.1);
    font-size: var(--font-size-xs);
    color: var(--color-text);
    border: 1px solid var(--color-border-subtle);
  }

  /* -------------------------------------------------------
   * 5. BUTTON SYSTEM (Vegabet Green/Orange)
   * ----------------------------------------------------- */

  .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-md); 
    border: 1px solid transparent;
    background: transparent;
    color: var(--color-text);
    font-size: var(--font-size-sm);
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--transition-base);
    text-transform: uppercase; 
  }

  .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: var(--color-primary); /* Vegabet Green */
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(22, 199, 46, 0.3);
    border: none;
  }

  .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: #12b025; /* Darker Green */
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(22, 199, 46, 0.5);
  }

  /* Secondary button is often orange or transparent in Vegabet */
  .button--secondary,
  .game-card__button.button--secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .button--secondary:hover,
  .game-card__button.button--secondary:hover {
    background-color: rgba(247, 153, 24, 0.1);
    border-color: var(--color-accent);
    color: var(--color-accent); /* Orange */
  }

  .button:disabled,
  .button[aria-disabled="true"] {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
    background: #555;
  }

  .main-offer__cta-button {
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
    white-space: normal;
    text-align: center;
    padding-block: 14px;
  }

/* -------------------------------------------------------
   * 6. SITE HEADER (Sticky + Burger Menu)
   * ----------------------------------------------------- */

  .main-header {
    position: sticky;
    top: 0;
    z-index: var(--z-header);
    background: var(--color-surface-alt); /* #000c24 */
    box-shadow: var(--shadow-header);
    margin-bottom: var(--space-xl);
    border-bottom: 1px solid var(--color-border-subtle);
  }

  .main-header > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: var(--space-sm);
    gap: var(--space-sm);
    
    /* --- FIX: COMPACT WIDTH --- */
    width: 100%;
    max-width: 1500px;    
    margin-inline: auto;  
    padding-inline: 24px;
  }

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

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

  .main-nav {
    /* mobile: off-canvas menu */
    position: fixed;
    inset: var(--mobile-header-full-height) 0 0;
    background: var(--color-surface-base);
    padding: var(--space-lg) var(--layout-gutter-x);
    border-top: 1px solid var(--color-border-subtle);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
  }

  .main-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
  }

  .main-nav__link {
    display: block;
    padding-block: var(--space-2xs);
    font-size: var(--font-size-sm);
    color: var(--color-text);
    text-transform: uppercase;
    font-weight: 700;
    
    /* --- FIX: NO WRAP --- */
    white-space: nowrap; 
  }

  .main-nav__link:hover {
    color: var(--color-primary); /* Green hover */
  }

  .main-header__burger {
    position: relative;
    width: 40px;
    height: 32px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 1px solid var(--color-border-subtle);
  }

  .main-header__burger span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background-color: #fff;
  }

  .main-header__burger:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  body.mobile-menu-open .main-nav {
    opacity: 1;
    visibility: visible;
  }

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

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

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

  /* -------------------------------------------------------
   * 7. SITE FOOTER
   * ----------------------------------------------------- */

  .main-footer {
    background: #00081a; /* Even Darker Navy */
    border-top: 1px solid var(--color-border-subtle);
    margin-top: var(--space-2xl);
  }

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

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

  .footer-column__logo img {
    height: 36px;
  }

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

  .footer-column__trust-seals {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    align-items: center;
  }
  
  .footer-column__trust-seals img {
      filter: grayscale(100%);
      opacity: 0.6;
  }

  .footer-column__title {
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    font-weight: 700;
  }

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

  .footer-column__list a {
    color: var(--color-text-muted);
    font-size: var(--font-size-xs);
  }

  .footer-column__list a:hover {
    color: var(--color-primary);
  }

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

  .footer-column__payment-logos img {
    height: 24px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: 0.3s;
  }
  .footer-column__payment-logos img:hover {
      filter: grayscale(0);
      opacity: 1;
  }

  .main-footer__copyright {
    border-top: 1px solid var(--color-border-subtle);
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    padding-block: var(--space-md);
    background: #000510;
    text-align: center;
  }

  /* -------------------------------------------------------
   * 8. GENERIC CARD SHELL
   * ----------------------------------------------------- */

  .card {
    background: var(--color-surface-base); /* Dark Navy Card */
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    border: none;
    box-shadow: var(--shadow-soft);
  }

  /* -------------------------------------------------------
   * 9. COMPONENTS
   * ----------------------------------------------------- */

  /* 9.1 ExpertRatingCard */
  .expert-rating-card {
    background: var(--color-surface-base);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    border: none;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: var(--space-md);
  }

  .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: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary); /* Green */
  }

  .expert-rating-card__stars {
    font-size: var(--font-size-lg);
    color: var(--color-warning); /* Gold */
  }

  .expert-rating-card__breakdown {
    display: grid;
    gap: var(--space-xs);
  }

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

  .rating-item__label {
    color: #fff;
  }

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

  .rating-item__progress {
    height: 100%;
    border-radius: inherit;
    background: var(--color-primary); /* Green */
  }

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

  /* 9.2 AuthorBox */
  .author-box {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    background: var(--color-surface-base);
    border: none;
    box-shadow: var(--shadow-soft);
  }

  .author-box__avatar {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 2px solid var(--color-primary);
    display: block;
    background-color: rgba(255, 255, 255, 0.05);
  }

  .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;
  }

  /* 9.3 LicenseInfo */
  .license-info {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text);
    font-size: var(--font-size-xs);
    border: 1px solid var(--color-border-subtle);
  }

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

  /* 9.4 ProsCons */
  .pros-cons {
    display: grid;
    gap: var(--space-md);
    background: var(--color-surface-base);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    border: none;
  }

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

  .pros-cons__column--pros {
    border-left: 3px solid var(--color-success);
  }

  .pros-cons__column--cons {
    border-left: 3px solid var(--color-danger);
  }

  .pros-cons__title {
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    color: #fff;
    margin-bottom: var(--space-xs);
    font-weight: 700;
  }

  .pros-cons__item {
    margin-bottom: 6px;
    color: var(--color-text-muted);
  }

  /* 9.5 ResponsibleGamingBlock */
  .responsible-gaming-block {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background: var(--color-surface-base);
    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);
  }

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

  /* 9.6 SecurityAndFairness */
  .security-fairness {
    display: grid;
    gap: var(--space-sm);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background: var(--color-surface-base);
    border: none;
  }

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

  .security-fairness__icon {
    font-size: var(--font-size-lg);
    color: var(--color-primary);
  }

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

  /* 9.7 AwardsAndRecognition */
  .awards-recognition {
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    background: var(--color-surface-base);
    border: none;
  }

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

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

  .award-item {
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-xs);
  }

  .award-item__logo {
    max-height: 40px;
    margin-inline: auto;
    filter: grayscale(100%);
  }
  .award-item:hover .award-item__logo {
      filter: grayscale(0);
  }

  /* 9.8 MainBrandOffer */
  .main-offer {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--radius-xl);
    background: var(--color-surface-base);
    border: 1px solid var(--color-primary);
    box-shadow: var(--shadow-medium);
    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;
  }

  .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: var(--color-primary);
    background: #000;
    padding: 8px;
    border-radius: 4px;
    border: 1px dashed var(--color-primary);
  }

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

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

  .reg-steps__number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    background: var(--color-primary);
    color: #fff;
  }

  .reg-steps__title {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: #fff;
  }

  .reg-steps__description {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
  }

  /* 9.10 QuickDeposit */
  .quick-deposit {
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    background: var(--color-surface-base);
    border: none;
  }

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

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

  .quick-deposit__logo {
    height: 30px;
    background: #fff;
    padding: 4px;
    border-radius: 4px;
  }

  /* 9.11 AppDownloadBlock */
  .app-download {
    display: flex;
    align-items: center;
    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);
  }

  .app-download__image {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
  }

  .app-download__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    flex: 1;
  }

  .app-download__title {
    font-size: var(--font-size-lg);
    color: #fff;
  }

  .app-download__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
  }

  .app-download__button img {
    height: 36px;
  }

  /* 9.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: var(--color-surface-base);
    border-top: 1px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  }

  .sticky-cta__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: var(--font-size-xs);
    color: #fff;
  }

  .sticky-cta__brand {
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    color: var(--color-primary);
  }

  .sticky-cta__offer {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
  }

  .sticky-cta__button {
    padding-inline: 16px;
  }

  /* 9.13 Data Tables */
  .data-table-container {
    margin-block: var(--space-lg);
    border-radius: var(--radius-lg);
    background: var(--color-surface-base);
    border: none;
    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: var(--color-surface-raised);
    color: #fff;
  }

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

  .data-table {
    width: 100%;
    font-size: var(--font-size-sm);
  }

  .data-table thead {
    background: rgba(0,0,0,0.3);
  }

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

  .data-table th {
    font-weight: var(--font-weight-bold);
    color: #fff;
    border-bottom: 1px solid var(--color-border-subtle);
  }

  .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.04);
    color: var(--color-text-muted);
  }

  .data-table td[data-label]::before {
    content: attr(data-label) ": ";
    display: inline-block;
    font-weight: var(--font-weight-bold);
    color: #fff;
    margin-right: 4px;
  }

  .promo-code {
    padding: 4px 8px;
    border-radius: 4px;
    background: #000;
    color: var(--color-primary);
    font-weight: bold;
    border: 1px dashed var(--color-primary);
  }

  .comparison-table .is-highlighted {
    background: rgba(22, 199, 46, 0.1);
    color: #fff;
  }

  /* 9.14 SlotDataSheet */
  .data-sheet {
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    background: var(--color-surface-base);
    border: none;
  }

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

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

  .data-sheet__item {
    display: flex;
    justify-content: space-between;
    gap: var(--space-sm);
    font-size: var(--font-size-sm);
    border-bottom: 1px solid var(--color-border-subtle);
    padding-bottom: 8px;
  }

  .data-sheet__key {
    color: var(--color-text-muted);
  }

  .data-sheet__value {
    font-weight: var(--font-weight-bold);
    color: #fff;
  }

  /* 9.15 GameProviderGrid */
  .provider-grid {
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    background: var(--color-surface-base);
    border: none;
  }

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

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

  .provider-grid__logo-item {
    background: #fff;
    border-radius: var(--radius-md);
    padding: var(--space-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
  }

  .provider-grid__logo-item img {
    max-height: 30px;
    max-width: 100%;
  }

  /* 9.16 FAQAccordion */
  .faq-accordion {
    margin-block: var(--space-lg);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    background: var(--color-surface-base);
    border: none;
  }

  .faq-accordion__title {
    margin-bottom: var(--space-sm);
    color: #fff;
  }

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

  .faq-item + .faq-item {
    margin-top: var(--space-xs);
  }

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

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

  .faq-item__answer {
    max-height: 0;
    overflow: hidden;
    padding-inline: var(--space-sm);
    transition: max-height 200ms ease-out, padding-block 200ms ease-out;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
  }

  .faq-item.is-open {
    border-color: var(--color-primary);
    background: rgba(0, 0, 0, 0.5);
  }

  .faq-item.is-open .faq-item__answer { 
    padding-block: var(--space-xs) var(--space-sm);
    max-height: 500px;
  }

  .faq-item.is-open .faq-item__icon { 
    transform: rotate(45deg);
  }

  /* 9.17 InteractiveBonusCalculator */
  .bonus-calculator {
    margin-block: var(--space-lg);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    background: var(--color-surface-base);
    border: none;
    display: grid;
    gap: var(--space-md);
  }

  .form-group input[type="number"] {
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border-subtle);
    padding: 12px;
    background: #000c24;
    color: #fff;
    width: 100%;
  }

  .bonus-calculator__result {
    font-size: var(--font-size-md);
    color: #fff;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background: #000;
    text-align: center;
  }

  #wagerAmount {
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    font-size: 1.2em;
  }

  /* 9.18 TableOfContents */
  .toc {
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    background: var(--color-surface-base);
    border: none;
    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: 700;
  }

  .toc__item a {
    color: var(--color-text-muted);
    text-decoration: underline;
  }

  .toc__item a:hover {
    color: var(--color-primary);
  }

  /* 9.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;
  }

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

  /* 9.20 EvidenceBox */
  .evidence-box {
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    background: var(--color-surface-base);
    border: 1px solid var(--color-border-subtle);
    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;
  }

  /* 9.21 UpdateBanner */
  .update-banner {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 6px 12px;
    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: var(--font-weight-bold);
  }

  /* 9.22 Checklist */
  .checklist {
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    background: var(--color-surface-base);
    border: none;
    font-size: var(--font-size-sm);
  }

  .checklist__item--valid {
    color: var(--color-success);
  }

  .checklist__item--invalid {
    color: var(--color-danger);
  }

  /* 9.23 PaymentSpeedMeter */
  .speed-meter {
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    background: var(--color-surface-base);
    border: none;
  }

  .speed-meter__bar {
    height: 10px;
    background: #000;
    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));
  }

  /* 9.24 HeroOffer (Reskinned) */
  .hero-offer {
    position: relative;
    overflow: hidden;
    padding: var(--space-xl) var(--space-md);
    border-radius: var(--radius-lg);
    background: var(--color-surface-base);
    border: none;
    color: #fff;
    text-align: left;
    margin-bottom: var(--space-2xl);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  /* Add an overlay */
  .hero-offer::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 100%);
      z-index: 1;
  }

  .hero-offer__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
  }

  .hero-offer__title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: var(--space-sm);
    color: #fff;
    text-transform: uppercase;
    font-style: italic;
  }

  .hero-offer__subtitle {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-sm);
    color: var(--color-text-muted);
  }

  .hero-offer__main-offer {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: var(--space-md);
    color: var(--color-primary); /* Green */
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  }

  .hero-offer__cta {
    width: auto;
    min-width: 200px;
    font-size: 18px;
    padding: 16px 32px;
  }

  .hero-offer__features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
  }

  .hero-offer__feature {
    padding: 6px 12px;
    border-radius: 4px;
    background: rgba(0,0,0,0.5);
    font-size: 13px;
    color: #ccc;
    border: 1px solid rgba(255,255,255,0.1);
  }

  /* 9.25 OnboardingSimulator */
  .onboarding-simulator {
    margin-block: var(--space-lg);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    background: var(--color-surface-base);
    border: none;
    display: grid;
    gap: var(--space-sm);
  }

  .onboarding-simulator__input {
    padding: 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border-subtle);
    background: #000c24;
    color: #fff;
  }

  /* 9.26 PaymentLimitsAccordion */
  .limits-accordion {
    background: var(--color-surface-base);
    border: none;
    border-radius: var(--radius-lg);
    padding: var(--space-md);
  }

  .limits-item {
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    overflow: hidden;
  }

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

  .limits-item__icon {
    color: var(--color-primary);
  }

  .limits-item--open {
    border-color: var(--color-primary);
    background: rgba(0, 0, 0, 0.5);
  }

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

  .game-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #000;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s;
  }
  .game-card:hover {
      transform: translateY(-5px);
  }

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

  .game-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: opacity var(--transition-base);
  }

  .game-card:hover .game-card__overlay {
    opacity: 1;
  }
  
  .game-card__title {
      color: #fff;
      font-weight: bold;
      text-align: center;
      padding: 0 10px;
  }

  /* 9.28 BonusGrid (Vegabet Style) */
  .bonus-grid__container {
    display: grid;
    gap: 20px;
  }

  .bonus-card-v2 {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--color-surface-base); /* Dark Navy */
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-subtle);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    padding: 20px;
  }
  
  /* Green Top Border for Vegabet */
  .bonus-card-v2::after {
      content: '';
      position: absolute;
      top: 0; left: 0; width: 100%; height: 4px;
      background: linear-gradient(90deg, #16c72e, #0e8c20);
  }

  .bonus-card-v2__title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
  }

  .bonus-card-v2__offer {
    font-size: 28px;
    color: var(--color-primary); /* Green */
    margin-bottom: 20px;
    font-weight: 900;
  }

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

  .bonus-card-v2__visual {
    display: none; 
  }

  /* 9.29 GridContainer */
  .grid-container {
    display: grid;
    gap: var(--space-md);
  }
  
  /* 9.30 FeaturedSection */
  .featured-section {
    padding-block: var(--layout-section-spacing-y);
  }
  .featured-section--highlight {
      background: var(--color-surface-base);
  }

  /* 9.31 Testimonial */
  .testimonial {
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    background: var(--color-surface-base);
    border-left: 4px solid var(--color-primary);
    box-shadow: var(--shadow-soft);
  }

  /* 9.32 Callout */
  .callout {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-subtle);
    background: rgba(0, 0, 0, 0.3);
    font-size: var(--font-size-sm);
  }
  
  .callout--warning {
      border-left: 4px solid var(--color-accent); /* Orange for warning */
  }

  /* -------------------------------------------------------
   * 10. RESPONSIVE BREAKPOINTS
   * ----------------------------------------------------- */

  @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));
    }
    .quick-deposit__grid {
      gap: var(--space-md);
    }
    .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));
    }
    .app-download {
      padding-inline: var(--space-lg);
    }
    .main-footer > .container {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (min-width: 960px) {
    /* Header desktop layout */
    .main-header > .container {
      padding-block: 10px;
    }

    .main-header__burger {
      display: none;
    }

    .main-nav {
      position: static;
      inset: auto;
      background: transparent;
      padding: 0;
      opacity: 1 !important;
      visibility: visible !important;
      border-top: none;
      transform: none;
    }

    .main-nav__list {
      flex-direction: row;
      gap: 24px;
    }

    .main-nav__link {
      font-size: 14px;
      padding: 10px 0;
    }
    
    /* Hover underline effect for desktop nav */
    .main-nav__link::after {
        content: '';
        display: block;
        width: 0;
        height: 2px;
        background: var(--color-primary);
        transition: width 0.3s;
    }
    .main-nav__link:hover::after {
        width: 100%;
    }

    /* Layout / sections */
    .hero-offer {
      min-height: 450px;
    }

    .app-download {
      max-width: 640px;
    }

    .bonus-card-v2 {
      flex-direction: row; /* Horizontal on desktop */
      align-items: center;
      gap: 20px;
    }
    .bonus-card-v2__cta {
        width: auto;
        margin-top: 0;
    }

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

    .main-footer > .container {
      grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    
    .sticky-cta {
      display: none; /* Hide on desktop */
    }
  }

/* -------------------------------------------------------
 * 11. DROPDOWNS & EXTRAS (Preserved)
 * ----------------------------------------------------- */

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

.main-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  min-width: 220px;
  padding: var(--space-xs);
  margin: 0;
  list-style: none;
  background: var(--color-surface-raised);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-medium);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition-base), visibility var(--transition-base), transform var(--transition-base);
}

@media (min-width: 960px) {
  .main-nav__item.has-dropdown:hover > .main-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.main-nav__dropdown a {
  display: block;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  white-space: nowrap;
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

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

/* Language Switcher */
.lang-switcher {
  position: relative;
}

.lang-switcher__current {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.04);
  transition: background-color var(--transition-fast);
  color: #fff;
}

.lang-switcher__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 10;
  min-width: 150px;
  background: var(--color-surface-raised);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
}

.lang-switcher:hover .lang-switcher__dropdown {
  opacity: 1;
  visibility: visible;
}

/* Grid Fixes */
.grid-container--cols-3 {
  grid-template-columns: 1fr;
}

@media (min-width: 960px) {
  .grid-container--cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* --- HERO IMAGE FIXES --- */

/* 1. Р‘Р°Р·РѕРІС‹Р№ СЃС‚РёР»СЊ (Mobile First) */
.hero-offer {
  /* РњРµРЅСЏРµРј flex РЅР° grid РґР»СЏ Р»СѓС‡С€РµРіРѕ РєРѕРЅС‚СЂРѕР»СЏ РєРѕР»РѕРЅРѕРє */
  display: grid;
  grid-template-columns: 100%; /* РћРґРЅР° РєРѕР»РѕРЅРєР° РЅР° РјРѕР±РёР»СЊРЅРѕРј */
  gap: var(--space-xl); /* РћС‚СЃС‚СѓРї РјРµР¶РґСѓ С‚РµРєСЃС‚РѕРј Рё РєР°СЂС‚РёРЅРєРѕР№ */
  
  /* РЈР±РёСЂР°РµРј Р¶РµСЃС‚РєРѕРµ РІС‹СЂР°РІРЅРёРІР°РЅРёРµ, С‡С‚РѕР±С‹ РєРѕРЅС‚РµРЅС‚ РЅРµ РїР»СЋС‰РёР»Рѕ */
  justify-content: start;
  align-items: center;
  
  /* РЈР±РµРґРёСЃСЊ, С‡С‚Рѕ z-index РїРѕР·РІРѕР»СЏРµС‚ РєР»РёРєР°С‚СЊ РїРѕ РєРЅРѕРїРєР°Рј РїРѕРІРµСЂС… РѕРІРµСЂР»РµСЏ */
  position: relative;
  z-index: 1;
}

/* РљРѕРЅС‚РµР№РЅРµСЂ РґР»СЏ РєР°СЂС‚РёРЅРєРё */
.hero-offer__visual {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  
  /* РђРЅРёРјР°С†РёСЏ РїРѕСЏРІР»РµРЅРёСЏ (РѕРїС†РёРѕРЅР°Р»СЊРЅРѕ, РґР»СЏ РєСЂР°СЃРѕС‚С‹) */
  animation: fadeInUp 0.8s ease-out;
}

/* РЎР°РјР° РєР°СЂС‚РёРЅРєР° */
.hero-offer__visual img {
  width: 100%;
  max-width: 500px; /* РћРіСЂР°РЅРёС‡РёРІР°РµРј СЂР°Р·РјРµСЂ РЅР° РјРѕР±РёР»РєРµ, С‡С‚РѕР±С‹ РЅРµ Р±С‹Р»Р° РіРёРіР°РЅС‚СЃРєРѕР№ */
  height: auto;
  object-fit: contain; /* Р’Р°Р¶РЅРѕ: С‡С‚РѕР±С‹ 3D РѕР±СЉРµРєС‚ РЅРµ РѕР±СЂРµР·Р°Р»СЃСЏ */
  filter: drop-shadow(0 10px 30px rgba(22, 199, 46, 0.2)); /* Green Shadow */
}

/* 2. Desktop РЎС‚РёР»СЊ (Р’СЃС‚Р°РµС‚ СЃР±РѕРєСѓ) */
@media (min-width: 960px) {
  .hero-offer {
    /* Р Р°Р·Р±РёРІР°РµРј РЅР° 2 РєРѕР»РѕРЅРєРё: РўРµРєСЃС‚ (1fr) Рё РљР°СЂС‚РёРЅРєР° (1fr) */
    grid-template-columns: 1fr 1fr;
    text-align: left; /* Р’РѕР·РІСЂР°С‰Р°РµРј С‚РµРєСЃС‚ РІР»РµРІРѕ, РµСЃР»Рё РѕРЅ Р±С‹Р» РїРѕ С†РµРЅС‚СЂСѓ */
    padding-inline: var(--space-2xl); /* Р§СѓС‚СЊ Р±РѕР»СЊС€Рµ РІРѕР·РґСѓС…Р° РїРѕ Р±РѕРєР°Рј */
    min-height: 550px; /* Р’С‹СЃРѕС‚Р° РґР»СЏ РґРµСЃРєС‚РѕРїР° */
  }

  .hero-offer__content {
    /* РЈР±РёСЂР°РµРј max-width РѕРіСЂР°РЅРёС‡РµРЅРёСЏ, С‡С‚РѕР±С‹ С‚РµРєСЃС‚ Р·Р°РЅСЏР» СЃРІРѕСЋ РєРѕР»РѕРЅРєСѓ */
    max-width: 100%; 
    padding-right: var(--space-lg); /* РћС‚СЃС‚СѓРї РѕС‚ РєР°СЂС‚РёРЅРєРё */
    order: 1; /* РўРµРєСЃС‚ СЃР»РµРІР° */
  }

  .hero-offer__visual {
    order: 2; /* РљР°СЂС‚РёРЅРєР° СЃРїСЂР°РІР° */
    justify-content: flex-end; /* РџСЂРёР¶РёРјР°РµРј РєР°СЂС‚РёРЅРєСѓ РІРїСЂР°РІРѕ */
  }
  
  .hero-offer__visual img {
    max-width: 100%; /* РќР° РґРµСЃРєС‚РѕРїРµ РїСѓСЃС‚СЊ Р·Р°РЅРёРјР°РµС‚ РІСЃРµ РґРѕСЃС‚СѓРїРЅРѕРµ РјРµСЃС‚Рѕ РІ РєРѕР»РѕРЅРєРµ */
    transform: scale(1.1); /* РќРµР±РѕР»СЊС€РѕР№ Р·СѓРј РґР»СЏ СЌРїРёС‡РЅРѕСЃС‚Рё */
  }
}

/* РђРЅРёРјР°С†РёСЏ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


  /* --- CUSTOM OVERRIDES FOR "VEGABET" LOOK --- */
  
  /* Р”РµР»Р°РµРј СЃРµС‚РєСѓ Р±РѕР»РµРµ РїР»РѕС‚РЅРѕР№ РґР»СЏ РєР°СЂС‚РѕС‡РµРє */
  .bonus-grid__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  @media (min-width: 768px) {
    .bonus-grid__container {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* РЎС‚РёР»РёР·Р°С†РёСЏ СЃР°РјРѕР№ РєР°СЂС‚РѕС‡РєРё РїРѕРґ "Title Green / Text Calm" */
  .bonus-card-v2 {
    background: var(--color-surface-base); /* Dark Navy */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 4px solid var(--color-primary); /* Green Header */
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px; /* Р§С‚РѕР±С‹ РєР°СЂС‚РѕС‡РєРё Р±С‹Р»Рё РѕРґРЅРѕР№ РІС‹СЃРѕС‚С‹ */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .bonus-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--color-primary);
  }

  /* Р—РђР“РћР›РћР’РћРљ: РљСЂСѓРїРЅС‹Р№ Рё Р—РµР»РµРЅС‹Р№ */
  .bonus-card-v2__title {
    color: var(--color-primary) !important; /* Green */
    font-size: 1.5rem; /* РљСЂСѓРїРЅС‹Р№ СЂР°Р·РјРµСЂ */
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 12px;
    line-height: 1.1;
    letter-spacing: -0.5px;
  }

  /* РўР•Р“Р: РђРєРєСѓСЂР°С‚РЅС‹Рµ С‡РёРїСЃС‹ СЃРІРµСЂС…Сѓ */
  .bonus-card-v2__tags {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
  }

  .bonus-card-v2__tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* РћРџРРЎРђРќРР•: РЎРїРѕРєРѕР№РЅС‹Р№ С‚РµРєСЃС‚ */
  .bonus-card-v2__offer {
    color: var(--color-text-muted) !important; /* Greyish Blue */
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 400;
  }
  
  /* Р’С‹РґРµР»РµРЅРёРµ РІР°Р¶РЅС‹С… С†РёС„СЂ РІРЅСѓС‚СЂРё РѕРїРёСЃР°РЅРёСЏ Р±РµР»С‹Рј */
  .bonus-card-v2__offer strong {
    color: #fff;
    font-weight: 700;
  }

  /* РљРќРћРџРљРђ: РќР° РІСЃСЋ С€РёСЂРёРЅСѓ СЃРЅРёР·Сѓ */
  .bonus-card-v2__cta {
    width: 100%;
    margin-top: auto;
    font-weight: 800;
    letter-spacing: 0.5px;
  }
/* =========================================
   FIX 1: LANGUAGE SWITCHER (РџРћР” РўР’РћР™ PHP)
   ========================================= */

/* РљРѕРЅС‚РµР№РЅРµСЂ */
.lang-switcher {
    position: relative;
    z-index: 1001;
    display: inline-block;
}

/* РљРЅРѕРїРєР° С‚РµРєСѓС‰РµРіРѕ СЏР·С‹РєР° */
.lang-switcher__current {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    transition: 0.2s;
}

.lang-switcher__current:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-primary);
}

/* Р¤Р»Р°РіРё (Сѓ С‚РµР±СЏ СЌС‚Рѕ СЌРјРѕРґР·Рё РІ PHP, РїРѕСЌС‚РѕРјСѓ СЃС‚Р°РІРёРј СЂР°Р·РјРµСЂ С€СЂРёС„С‚Р°) */
.lang-switcher__flag {
    font-size: 18px;
    line-height: 1;
}

/* Р’С‹РїР°РґР°СЋС‰РµРµ РјРµРЅСЋ */
.lang-switcher__dropdown {
    position: absolute;
    top: 100%; /* Р РѕРІРЅРѕ РїРѕРґ РєРЅРѕРїРєРѕР№ */
    right: 0;
    min-width: 140px;
    background: var(--color-surface-base); /* РўРІРѕР№ С‚РµРјРЅС‹Р№ С„РѕРЅ */
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-md);
    padding: 8px 0;
    margin-top: 10px; /* РћС‚СЃС‚СѓРї РѕС‚ РєРЅРѕРїРєРё */
    list-style: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    
    /* РЎРєСЂС‹С‚РёРµ */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 1002;
}

/* === Р“Р›РђР’РќР«Р™ Р¤РРљРЎ: РќР•Р’РР”РРњР«Р™ РњРћРЎРў === 
   Р—Р°РїРѕР»РЅСЏРµС‚ РїСѓСЃС‚РѕС‚Сѓ (margin-top: 10px) РјРµР¶РґСѓ РєРЅРѕРїРєРѕР№ Рё РјРµРЅСЋ.
   РўРµРїРµСЂСЊ РјС‹С€РєР° РЅРµ С‚РµСЂСЏРµС‚ С„РѕРєСѓСЃ. */
.lang-switcher__dropdown::before {
    content: '';
    position: absolute;
    top: -20px; /* РўСЏРЅРµС‚СЃСЏ РІРІРµСЂС… РґРѕ РєРЅРѕРїРєРё */
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent; 
}

/* РџРѕРєР°Р· РїСЂРё РЅР°РІРµРґРµРЅРёРё РЅР° Р’Р•РЎР¬ Р±Р»РѕРє .lang-switcher */
.lang-switcher:hover .lang-switcher__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* РЎСЃС‹Р»РєРё РІРЅСѓС‚СЂРё */
.lang-switcher__dropdown li {
    padding: 0;
    margin: 0;
    display: block;
}

.lang-switcher__dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #fff; /* Р‘РµР»С‹Р№ С‚РµРєСЃС‚ */
    font-size: 14px;
    text-decoration: none;
    transition: 0.2s;
}

.lang-switcher__dropdown a:hover {
    background: rgba(22, 199, 46, 0.1); /* Light Green BG */
    color: var(--color-primary); /* Green Text */
}


/* =========================================
   FIX 2: РњРћР‘РР›Р¬РќРћР• РњР•РќР® (РђРљРљРћР Р”Р•РћРќ)
   ========================================= */

@media (max-width: 960px) {

    /* Р”РµР»Р°РµРј РјРµРЅСЋ СЃРєСЂРѕР»Р»СЏС‰РёРјСЃСЏ, РµСЃР»Рё РѕРЅРѕ РґР»РёРЅРЅРѕРµ */
    .main-nav {
        overflow-y: auto; 
        max-height: calc(100vh - 90px);
        padding-bottom: 80px;
    }

    /* РЎР±СЂР°СЃС‹РІР°РµРј "Р»РµС‚Р°СЋС‰РµРµ" СЃРѕСЃС‚РѕСЏРЅРёРµ РІС‹РїР°РґР°СЋС‰РёС… СЃРїРёСЃРєРѕРІ */
    .main-nav__dropdown {
        position: static !important; /* Р’СЃС‚СЂР°РёРІР°РµС‚СЃСЏ РІ РїРѕС‚РѕРє */
        box-shadow: none !important;
        border: none !important;
        background: rgba(0, 0, 0, 0.2) !important; /* Р§СѓС‚СЊ С‚РµРјРЅРµРµ */
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        
        /* РЎРєСЂС‹С‚Рѕ РїРѕ СѓРјРѕР»С‡Р°РЅРёСЋ, РѕС‚РєСЂС‹РІР°РµС‚СЃСЏ JS-РѕРј */
        display: none; 
        padding-left: 20px; /* РћС‚СЃС‚СѓРї СЃР»РµРІР° (Р»РµСЃРµРЅРєР°) */
        margin-top: 5px;
        min-width: 100%;
    }

    /* РљР»Р°СЃСЃ РѕС‚РєСЂС‹С‚РёСЏ (Р±СѓРґРµС‚ РґРѕР±Р°РІР»СЏС‚СЊСЃСЏ JS) */
    .main-nav__item.is-active .main-nav__dropdown {
        display: block;
        animation: slideDown 0.3s ease;
    }

    /* РџР»СЋСЃРёРє/РњРёРЅСѓСЃРёРє СЃРїСЂР°РІР° РѕС‚ СЃСЃС‹Р»РєРё */
    .main-nav__item.has-dropdown > .main-nav__link {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .main-nav__item.has-dropdown > .main-nav__link::after {
        content: '+'; 
        font-size: 20px;
        color: var(--color-primary);
        font-weight: bold;
        transition: transform 0.2s;
    }

    /* РљРѕРіРґР° РѕС‚РєСЂС‹С‚Рѕ - РјРµРЅСЏРµРј РЅР° РјРёРЅСѓСЃ (РёР»Рё РїРѕРІРѕСЂР°С‡РёРІР°РµРј) */
    .main-nav__item.is-active > .main-nav__link::after {
        content: 'в€’'; /* Р—РЅР°Рє РјРёРЅСѓСЃ */
        color: #fff;
    }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   MOBILE HEADER FIX (ANTI-SQUASH)
   ========================================= */

@media (max-width: 960px) {
    
    /* 1. Р›РћР“РћРўРРџ: Р—Р°РїСЂРµС‰Р°РµРј СЃРїР»СЋС‰РёРІР°РЅРёРµ */
    .main-header__logo {
        flex-shrink: 0; /* РЎР°РјРѕРµ РІР°Р¶РЅРѕРµ: Р·Р°РїСЂРµС‚ РЅР° СЃР¶Р°С‚РёРµ */
        max-width: 100px; /* РћРіСЂР°РЅРёС‡РёРІР°РµРј С€РёСЂРёРЅСѓ, С‡С‚РѕР±С‹ РЅРµ Р±С‹Р» РіРёРіР°РЅС‚СЃРєРёРј */
        margin-right: auto; /* РџСЂРёР¶РёРјР°РµРј Р»РѕРіРѕ РІР»РµРІРѕ, РѕСЃС‚Р°Р»СЊРЅРѕРµ РІРїСЂР°РІРѕ */
    }

    .main-header__logo img {
        height: 32px; /* Р§СѓС‚СЊ РјРµРЅСЊС€Рµ РІС‹СЃРѕС‚Р° РґР»СЏ РјРѕР±РёР»РєРё */
        width: auto;  /* РђРІС‚Рѕ-С€РёСЂРёРЅР° СЃРѕС…СЂР°РЅСЏРµС‚ РїСЂРѕРїРѕСЂС†РёРё */
        object-fit: contain;
    }

    /* 2. РљРћРќРўР•Р™РќР•Р  РљРќРћРџРћРљ: РЈРјРµРЅСЊС€Р°РµРј Р·Р°Р·РѕСЂС‹ */
    .main-header__actions {
        gap: 6px; /* Р‘С‹Р»Рѕ var(--space-sm), РґРµР»Р°РµРј С‚РµСЃРЅРµРµ */
        flex-shrink: 1; /* Р Р°Р·СЂРµС€Р°РµРј СЌС‚РѕРјСѓ Р±Р»РѕРєСѓ СЃР¶РёРјР°С‚СЊСЃСЏ, РµСЃР»Рё С‡С‚Рѕ */
        flex-wrap: nowrap; /* Р—Р°РїСЂРµС‰Р°РµРј РїРµСЂРµРЅРѕСЃ СЃС‚СЂРѕРє */
    }

    /* 3. РљРќРћРџРљР (GiriЕџ / KayД±t): Р”РµР»Р°РµРј РєРѕРјРїР°РєС‚РЅРµРµ */
    .main-header__actions .button {
        padding: 0 10px; /* РЈР±РёСЂР°РµРј Р¶РёСЂРЅС‹Рµ РѕС‚СЃС‚СѓРїС‹ */
        height: 32px;    /* Р¤РёРєСЃРёСЂСѓРµРј РІС‹СЃРѕС‚Сѓ РїРѕРґ Р»РѕРіРѕС‚РёРї */
        font-size: 11px; /* РЈРјРµРЅСЊС€Р°РµРј С€СЂРёС„С‚ (Р±С‹Р»Рѕ 14px) */
        line-height: 32px; /* Р¦РµРЅС‚СЂРѕРІРєР° С‚РµРєСЃС‚Р° */
        white-space: nowrap; /* РўРµРєСЃС‚ РІ РѕРґРЅСѓ СЃС‚СЂРѕРєСѓ */
    }

    /* 4. РЇР—Р«РљРћР’РћР™ РЎР’РРўР§Р•Р : РўРѕР¶Рµ СѓРјРµРЅСЊС€Р°РµРј */
    .lang-switcher__current {
        padding: 0 8px;
        height: 32px;
        font-size: 11px;
        gap: 4px;
    }
    
    /* РЈРјРµРЅСЊС€Р°РµРј С„Р»Р°Рі РІРЅСѓС‚СЂРё СЃРІРёС‚С‡РµСЂР° */
    .lang-flag {
        width: 16px; 
    }

    /* 5. Р‘РЈР Р“Р•Р : РџРѕРґРіРѕРЅСЏРµРј РїРѕРґ РІС‹СЃРѕС‚Сѓ РєРЅРѕРїРѕРє */
    .main-header__burger {
        width: 32px;
        height: 32px;
        padding: 4px;
    }
    
    /* РўРѕРЅРєР°СЏ РЅР°СЃС‚СЂРѕР№РєР° Р»РёРЅРёР№ Р±СѓСЂРіРµСЂР° */
    .main-header__burger span {
        width: 16px;
        height: 2px;
        margin-bottom: 3px; /* Р§СѓС‚СЊ РїР»РѕС‚РЅРµРµ Р»РёРЅРёРё */
    }
}

/* Р”Р»СЏ СЃРѕРІСЃРµРј РјРµР»РєРёС… СЌРєСЂР°РЅРѕРІ (iPhone SE Рё С‚.Рґ.) СѓР±РёСЂР°РµРј С‚РµРєСЃС‚ РєРЅРѕРїРѕРє, РµСЃР»Рё РЅРµ Р»РµР·РµС‚ */
@media (max-width: 360px) {
    .main-header__actions .button {
        padding: 0 8px;
        font-size: 10px;
    }
    .lang-switcher__current span {
        display: none; /* РЎРєСЂС‹РІР°РµРј С‚РµРєСЃС‚ "TR", РѕСЃС‚Р°РІР»СЏРµРј С‚РѕР»СЊРєРѕ С„Р»Р°Рі */
    }
}

/* =========================================
   FIX: BURGER ICON CENTER & CROSS
   ========================================= */

@media (max-width: 960px) {

    .main-header__burger {
        /* Р¤РёРєСЃРёСЂСѓРµРј СЂР°Р·РјРµСЂ */
        width: 32px;
        height: 32px;
        
        /* РЈР±РёСЂР°РµРј СЃС‚Р°СЂС‹Рµ РѕС‚СЃС‚СѓРїС‹, РёСЃРїРѕР»СЊР·СѓРµРј Flex РґР»СЏ РёРґРµР°Р»СЊРЅРѕРіРѕ С†РµРЅС‚СЂР° */
        padding: 0 !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        
        /* Р Р°СЃСЃС‚РѕСЏРЅРёРµ РјРµР¶РґСѓ Р»РёРЅРёСЏРјРё */
        gap: 4px; 
        
        /* Р’Р°Р¶РЅРѕ: СЂР°Р·СЂРµС€Р°РµРј РІС‹С…РѕРґРёС‚СЊ Р·Р° РіСЂР°РЅРёС†С‹, РµСЃР»Рё РІРґСЂСѓРі С‡С‚Рѕ */
        overflow: visible;
    }
    
    .main-header__burger span {
        /* Р›РёРЅРёРё РґРµР»Р°РµРј С‡СѓС‚СЊ РєРѕСЂРѕС‡Рµ, С‡С‚РѕР±С‹ РєСЂРµСЃС‚РёРє РЅРµ РІС‹Р»РµР·Р°Р» Р·Р° СЂР°РјРєРё */
        width: 16px; 
        height: 2px;
        background-color: #fff;
        border-radius: 2px;
        
        /* РЎР±СЂР°СЃС‹РІР°РµРј СЃС‚Р°СЂС‹Рµ РјР°СЂРґР¶РёРЅС‹, С‚Р°Рє РєР°Рє Сѓ РЅР°СЃ С‚РµРїРµСЂСЊ gap */
        margin: 0 !important;
        
        /* Р”Р»СЏ РїР»Р°РІРЅРѕР№ Р°РЅРёРјР°С†РёРё */
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform-origin: center;
        position: relative;
    }

    /* --- РЎРћРЎРўРћРЇРќРР• РљР Р•РЎРўРРљРђ (X) --- */
    
    /* Р’РµСЂС…РЅСЏСЏ РїР°Р»РѕС‡РєР°: РѕРїСѓСЃРєР°РµС‚СЃСЏ РІ С†РµРЅС‚СЂ Рё РїРѕРІРѕСЂР°С‡РёРІР°РµС‚СЃСЏ */
    body.mobile-menu-open .main-header__burger span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    /* РЎСЂРµРґРЅСЏСЏ РїР°Р»РѕС‡РєР°: РёСЃС‡РµР·Р°РµС‚ */
    body.mobile-menu-open .main-header__burger span:nth-child(2) {
        opacity: 0;
        transform: scale(0); /* Р”РѕРї. СЃС‚СЂР°С…РѕРІРєР°, С‡С‚РѕР±С‹ РЅРµ РјРµС€Р°Р»Р° */
    }

    /* РќРёР¶РЅСЏСЏ РїР°Р»РѕС‡РєР°: РїРѕРґРЅРёРјР°РµС‚СЃСЏ РІ С†РµРЅС‚СЂ Рё РїРѕРІРѕСЂР°С‡РёРІР°РµС‚СЃСЏ */
    body.mobile-menu-open .main-header__burger span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

/* ==========================================================================
   FIX PACK 2: RATING BARS & PROVIDER CHIPS
   ========================================================================== */

/* 1. РРЎРџР РђР’Р›Р•РќРР• Р Р•Р™РўРРќР“Рђ (Р§С‚РѕР±С‹ РїРѕР»РѕСЃРєРё СЃС‚Р°Р»Рё РІРёРґРЅС‹) */
.rating-item__progress-bar {
    /* РњРµРЅСЏРµРј С‡РµСЂРЅС‹Р№ С„РѕРЅ РЅР° РїРѕР»СѓРїСЂРѕР·СЂР°С‡РЅС‹Р№ Р±РµР»С‹Р№, С‡С‚РѕР±С‹ Р±С‹Р»Рѕ РІРёРґРЅРѕ С‚СЂРµРє */
    background: rgba(255, 255, 255, 0.15) !important;
    height: 8px;
    border-radius: 10px;
    overflow: hidden;
    width: 100%; /* РќР° РІСЃСЏРєРёР№ СЃР»СѓС‡Р°Р№ */
}

.rating-item__progress {
    /* РЈР±РµР¶РґР°РµРјСЃСЏ, С‡С‚Рѕ СЃР°РјР° РїРѕР»РѕСЃРєР° Р·Р°РїРѕР»РЅРµРЅРёСЏ Р·РµР»РµРЅР°СЏ */
    background: var(--color-primary) !important;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(22, 199, 46, 0.5); /* Green glow */
}

/* 2. РџР РћР’РђР™Р”Р•Р Р« РљРђРљ РџР›РђРЁРљР (Р’РјРµСЃС‚Рѕ РїСЂРѕСЃС‚РѕРіРѕ С‚РµРєСЃС‚Р°) */

/* Р”РѕР±Р°РІСЊ РєР»Р°СЃСЃ .provider-chip-grid Рє РєРѕРЅС‚РµР№РЅРµСЂСѓ СЃ РїСЂРѕРІР°Р№РґРµСЂР°РјРё РІ HTML, 
   РёР»Рё РёСЃРїРѕР»СЊР·СѓР№ СЌС‚Рё СЃС‚РёР»Рё РґР»СЏ С‚РµРєСѓС‰РµРіРѕ РєРѕРЅС‚РµР№РЅРµСЂР° */

.provider-list-container {
    display: grid;
    /* РќР° РґРµСЃРєС‚РѕРїРµ 4 РєРѕР»РѕРЅРєРё, РЅР° РјРѕР±РёР»РєРµ 2 */
    grid-template-columns: repeat(2, 1fr); 
    gap: 12px;
    margin-top: 16px;
}

@media (min-width: 768px) {
    .provider-list-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* РЎС‚РёР»СЊ РґР»СЏ РєР°Р¶РґРѕРіРѕ СЌР»РµРјРµРЅС‚Р° (РџСЂРѕРІР°Р№РґРµСЂР°) */
.provider-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    /* Р’РёРґ РєРЅРѕРїРєРё */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-md);
    padding: 12px 8px;
    
    /* РўРµРєСЃС‚ */
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    
    /* РљСЂР°СЃРѕС‚Р° */
    transition: all 0.2s ease;
}

/* Р­С„С„РµРєС‚ РїСЂРё РЅР°РІРµРґРµРЅРёРё (РґР°Р¶Рµ РµСЃР»Рё РЅРµ СЃСЃС‹Р»РєР°, РїСЂРёСЏС‚РЅРѕ РіР»Р°Р·Сѓ) */
.provider-chip:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

/* 9.9 NcSteps вЂ” ORANGE ACCENT */
.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-sm);
  border-radius: var(--radius-md);
  background: var(--color-surface-base);
  border: 1px solid var(--color-border-subtle);
}

.nc-steps__number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  background: var(--color-accent); /* ORANGE */
  color: #fff;
}

.nc-steps__title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: #fff;
}

.nc-steps__description {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}


/* ==========================================================================
   NC BLOCKS вЂ” ORANGE ACCENT (use --color-accent instead of --color-primary)
   ========================================================================== */

/* ---------------------------
   1) NC Rating Card
   --------------------------- */

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

.nc-rating-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-accent); /* ORANGE */
}

.nc-rating-card__score {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 8px;

  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--color-accent); /* ORANGE */

  padding: 10px 12px;
  border-radius: var(--radius-md);
  background: rgba(var(--accent), 0.10); /* ORANGE tint */
  border: 1px solid rgba(var(--accent), 0.35); /* ORANGE border */
  width: fit-content;
}

.nc-rating-card__content {
  display: grid;
  gap: var(--space-xs);
}

.nc-rating-card__label {
  margin: 0;
  font-size: var(--font-size-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
}

.nc-rating-card__text {
  margin: 0;
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-muted);
}

.nc-rating-card__text strong {
  color: #fff;
  font-weight: 800;
}

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


/* ---------------------------
   2) NC Pros / Cons
   --------------------------- */

.nc-pros-cons {
  display: grid;
  gap: var(--space-md);
}

.nc-pros-cons__column {
  background: var(--color-surface-base);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: var(--space-md);
  position: relative;
  overflow: hidden;
}

/* Keep semantic colors on left borders */
.nc-pros-cons__column--pros {
  border-left: 4px solid var(--color-success);
}

.nc-pros-cons__column--cons {
  border-left: 4px solid var(--color-danger);
}

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

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

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

.nc-pros-cons__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

/* Make list bullets orange-tinted for BOTH columns (accent look) */
.nc-pros-cons__column--pros .nc-pros-cons__item::before,
.nc-pros-cons__column--cons .nc-pros-cons__item::before {
  background: rgba(var(--accent), 0.18);
  border-color: rgba(var(--accent), 0.45);
}

.nc-pros-cons__item strong {
  color: #fff;
  font-weight: 800;
}

.nc-pros-cons__item a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 800;
}

.nc-pros-cons__item a:hover {
  color: var(--color-accent); /* ORANGE hover */
  text-decoration: none;
}

@media (min-width: 640px) {
  .nc-pros-cons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* ---------------------------
   3) NC Security (License / Security / Fairness / RG)
   --------------------------- */

.nc-security {
  background: var(--color-surface-base);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: var(--space-md);
  position: relative;
  overflow: hidden;
}

.nc-security::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-accent); /* ORANGE */
}

.nc-security__title {
  margin: 0 0 var(--space-md);
  font-size: var(--font-size-md);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
}

.nc-security__items {
  display: grid;
  gap: var(--space-md);
}

.nc-security__item {
  background: rgba(0, 0, 0, 0.20);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.nc-security__item-title {
  margin: 0 0 var(--space-xs);
  font-size: var(--font-size-sm);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
}

.nc-security__item-text {
  margin: 0;
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-muted);
}

.nc-security__item-text strong {
  color: #fff;
  font-weight: 800;
}

.nc-security__item-text a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 800;
}

.nc-security__item-text a:hover {
  color: var(--color-accent); /* ORANGE hover */
  text-decoration: none;
}

@media (min-width: 640px) {
  .nc-security__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .nc-security__items {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}


/* ---------------------------
   4) Plain <table> styling (tables WITHOUT .data-table)
   (No accent needed here вЂ” keep neutral)
   --------------------------- */

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-lg);
  box-shadow: var(--shadow-soft);
}

table:not(.data-table) thead {
  background: rgba(0, 0, 0, 0.30);
}

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

table:not(.data-table) th {
  color: #fff;
  font-weight: 900;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

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