/* -------------------------------------------------------
   * 1. FONT IMPORT (Savoybetting: POPPINS)
   * ----------------------------------------------------- */

/* Fallback Roboto (Just in case) */
@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');
}

  /* -------------------------------------------------------
   * 2. DESIGN TOKENS (:root) - REWORKED FOR SAVOYBETTING (Light Theme)
   * ----------------------------------------------------- */

  :root {
    /* --- SAVOY PALETTE MAPPING --- */
    /* Savoy Gold: #f1c40f (RGB: 241, 196, 15) */
    /* Savoy Light Gold: #fedc85 */
    /* Savoy Green: #2dc26b (RGB: 45, 194, 107) */
    /* Savoy Light BG: #f2f2f2 (RGB: 242, 242, 242) */
    /* Savoy Dark Text: #1a1a1a */
    
    /* 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;

    /* --- COLORS (LIGHT THEME) --- */
    
    /* Hero/Primary -> GOLD (Savoy Brand) */
    --hero-hover: 254, 220, 133; 
    --hero-sc: 0, 0, 0; /* Black text on Gold */
    --hero: 241, 196, 15; 

    /* Brand -> Gold */
    --brand-hover: 241, 196, 15;
    --brand-sc: 0, 0, 0;
    --brand: 241, 196, 15;

    /* Secondary -> Green (Savoy Secondary) */
    --secondary-hover: 35, 170, 90;
    --secondary-sc: 255, 255, 255;
    --secondary: 45, 194, 107; 

    /* Accent -> Gold */
    --accent-hover: 241, 196, 15;
    --accent-sc: 0, 0, 0;
    --accent: 241, 196, 15;

    /* Other Colors */
    --oc-1-hover: 241, 196, 15;
    --oc-1-sc: 0, 0, 0;
    --oc-1: 241, 196, 15;

    --oc-2-hover: 50, 50, 50;
    --oc-2-sc: 255, 255, 255;
    --oc-2: 0, 0, 0;

    --oc-3-hover: 255, 80, 80;
    --oc-3-sc: 255, 255, 255;
    --oc-3: 220, 53, 69; /* Red */

    /* Up/Down Colors */
    --odd-up-hover: 40, 180, 100;
    --odd-up-sc: 255, 255, 255;
    --odd-up: 45, 194, 107; /* Green */

    --odd-down-hover: 255, 102, 118;
    --odd-down-sc: 255, 255, 255;
    --odd-down: 220, 53, 69;

    /* Surfaces (Backgrounds) - LIGHT MODE */
    --b-hover: 245, 245, 245;
    --b-sc: 0, 0, 0;
    --b: 242, 242, 242; /* #f2f2f2 Main BG */

    --header-hover: 255, 255, 255;
    --header-sc: 0, 0, 0;
    --header: 255, 255, 255; /* White Header */

    --menu-hover: 241, 196, 15;
    --menu-sc: 0, 0, 0;
    --menu: 255, 255, 255;

    --tab-navigation-hover: 241, 196, 15;
    --tab-navigation-sc: 0, 0, 0;
    --tab-navigation: 255, 255, 255;

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

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

    --border-radius: 4px; /* Savoy uses slightly sharper corners */
    --font-family-raw: 'Poppins', sans-serif;

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

    --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(--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(--hero));
    --color-warning-hover: rgb(var(--hero-hover));
    --color-on-warning: rgb(var(--hero-sc));

    /* Background Surfaces (LIGHT) */
    --color-surface-base: #ffffff; /* Card BG White */
    --color-surface-alt: #ffffff;  /* Header BG White */
    --color-surface-raised: #f9f9f9; /* Slightly darker white */
    --color-surface-soft: rgba(255, 255, 255, 0.95);

    --color-black: #000000;
    --color-white: #ffffff;

    /* Page BG: Light Grey */
    --color-page-bg: #f2f2f2; 
    
    --color-border-subtle: rgba(0, 0, 0, 0.1);
    --color-border-strong: rgba(241, 196, 15, 0.5);

    /* Text Colors (Dark on Light) */
    --color-text: #1a1a1a;
    --color-text-muted: #666666; 
    --color-text-soft: #888888;
    
    --color-link: #333333;
    --color-link-hover: rgb(var(--accent-hover));
    --color-focus: rgb(var(--accent));

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

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

    /* --------- 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 ------------------------------ */
    --radius-xs: 2px;
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-pill: 99px; 

    /* --------- Shadow tokens ------------------------------- */
    --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-hard: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-header: 0 1px 3px rgba(0, 0, 0, 0.1);

    /* --------- 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-primary); /* Gold 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: #000; /* Force black 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: var(--color-text); /* Black text links */
    text-decoration: underline; 
    text-underline-offset: 3px; 
    font-weight: 600;           
  }

  p a:hover {
    color: var(--color-primary); /* Gold on 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: #e0e0e0;
    font-size: var(--font-size-xs);
    color: var(--color-text);
    border: 1px solid var(--color-border-subtle);
  }

  /* -------------------------------------------------------
   * 5. BUTTON SYSTEM (Savoy Gold & Green)
   * ----------------------------------------------------- */

  .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); /* Savoy style: 4-6px */
    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: linear-gradient(180deg, #fedc85 0%, #f1c40f 100%); /* Savoy Gold Gradient */
    color: #000000; /* Black text on Gold */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    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: linear-gradient(180deg, #ffe59e 0%, #ffd026 100%); 
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }

  /* Secondary Button -> Green (Savoy Style) */
  .button--secondary,
  .game-card__button.button--secondary {
    background-color: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-success); /* Green Border */
  }

  .button--secondary:hover,
  .game-card__button.button--secondary:hover {
    background-color: var(--color-success);
    color: #ffffff;
  }

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

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

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

  .main-header {
    position: sticky;
    top: 0;
    z-index: var(--z-header);
    background: var(--color-surface-alt); /* White */
    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);
    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: #f9f9f9; /* Light grey menu */
    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); /* Black text */
    text-transform: uppercase;
    font-weight: 700;
    white-space: nowrap; 
  }

  .main-nav__link:hover {
    color: var(--color-primary); /* Gold 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: #000; /* Black burger lines */
  }

  .main-header__burger:hover {
    background: rgba(0, 0, 0, 0.05);
  }

  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 (Savoy Style: Gold Top, Dark Bottom)
   * ----------------------------------------------------- */

  .main-footer {
    background: #111; /* Dark footer base */
    border-top: 4px solid var(--color-primary); /* Gold border top */
    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: #ccc;
  }

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

  .footer-column__warning {
    font-size: var(--font-size-xs);
    color: #999;
  }

  .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: var(--color-primary); /* Gold Titles in Footer */
    font-weight: 700;
  }

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

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

  .footer-column__list a:hover {
    color: #fff;
  }

  .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 #333;
    font-size: var(--font-size-xs);
    color: #777;
    padding-block: var(--space-md);
    background: #000;
    text-align: center;
  }

  /* -------------------------------------------------------
   * 8. GENERIC CARD SHELL (Light Mode)
   * ----------------------------------------------------- */

  .card {
    background: var(--color-surface-base); /* White */
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    border: 1px solid var(--color-border-subtle);
    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: 1px solid var(--color-border-subtle);
    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-success); /* Green Score */
  }

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

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

  .rating-item__progress-bar {
    position: relative;
    height: 8px;
    border-radius: var(--radius-pill);
    background: #e0e0e0; /* Light grey track */
    overflow: hidden;
  }

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

  .rating-item__value {
    font-variant-numeric: tabular-nums;
    color: var(--color-text);
    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: 1px solid var(--color-border-subtle);
    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: #eee;
  }

  .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: #f0f0f0;
    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: 1px solid var(--color-border-subtle);
  }

  .pros-cons__column {
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    background: #f9f9f9;
  }

  .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: #000;
    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: #000;
    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: 1px solid var(--color-border-subtle);
  }

  .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: 1px solid var(--color-border-subtle);
  }

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

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

  .award-item {
    text-align: center;
    background: #f9f9f9;
    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: 2px 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: #000;
  }

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

  /* 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: #000;
  }

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

  .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: 1px solid var(--color-border-subtle);
  }

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

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

  .quick-deposit__logo {
    height: 30px;
    background: #f0f0f0;
    padding: 4px;
    border-radius: 4px;
    border: 1px solid #ddd;
  }

  /* 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: #000;
  }

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

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

  .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: 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: #f5f5f5;
    color: #000;
  }

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

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

  .data-table thead {
    background: #eaeaea;
  }

  .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: #000;
    border-bottom: 1px solid var(--color-border-subtle);
  }

  .data-table tbody tr:nth-child(odd) {
    background: #f9f9f9;
  }

  .data-table td {
    border-bottom: 1px solid #eee;
    color: var(--color-text-muted);
  }

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

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

  .comparison-table .is-highlighted {
    background: rgba(241, 196, 15, 0.1);
    color: #000;
  }

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

  .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: #000;
  }

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

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

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

  .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: 1px solid var(--color-border-subtle);
  }

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

  .faq-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #f9f9f9;
    border: 1px solid #eee;
  }

  .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: #000;
  }

  .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: #fff;
  }

  .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: 1px solid var(--color-border-subtle);
    display: grid;
    gap: var(--space-md);
  }

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

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

  #wagerAmount {
    font-weight: var(--font-weight-bold);
    color: var(--color-success); /* Green for Money */
    font-size: 1.2em;
  }

  /* 9.18 TableOfContents */
  .toc {
    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);
  }

  .toc__title {
    margin-bottom: var(--space-xs);
    font-size: var(--font-size-md);
    text-transform: uppercase;
    color: #000;
    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: #f0f0f0;
    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: 1px solid var(--color-border-subtle);
    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: 1px solid var(--color-border-subtle);
  }

  .speed-meter__bar {
    height: 10px;
    background: #e0e0e0;
    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 for Savoy - Dark Section) */
  .hero-offer {
    position: relative;
    overflow: hidden;
    padding: var(--space-xl) var(--space-md);
    border-radius: var(--radius-lg);
    /* Make Hero Dark Blue/Black to mimic slider */
    background: #080a0e;
    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(8, 10, 14, 0.5) 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: #ccc;
  }

  .hero-offer__main-offer {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: var(--space-md);
    color: var(--color-primary); /* Gold */
    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(255,255,255,0.1);
    font-size: 13px;
    color: #eee;
    border: 1px solid rgba(255,255,255,0.2);
  }

  /* 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: 1px solid var(--color-border-subtle);
    display: grid;
    gap: var(--space-sm);
  }

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

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

  .limits-item {
    border-radius: var(--radius-md);
    background: #f9f9f9;
    border: 1px solid #eee;
    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: #000;
    font-weight: 700;
  }

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

  .limits-item--open {
    border-color: var(--color-primary);
    background: #fff;
  }

  /* 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: #fff;
    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 (Savoy Style: White Cards) */
  .bonus-grid__container {
    display: grid;
    gap: 20px;
  }

  .bonus-card-v2 {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--color-surface-base); /* White Card */
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-subtle);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    padding: 20px;
  }
  
  /* Gold Top Border */
  .bonus-card-v2::after {
      content: '';
      position: absolute;
      top: 0; left: 0; width: 100%; height: 4px;
      background: linear-gradient(90deg, #fedc85, #f1c40f);
  }

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

  .bonus-card-v2__offer {
    font-size: 28px;
    color: var(--color-primary); /* Gold */
    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: #e9e9e9; /* Light grey highlight */
  }

  /* 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: #fff;
    font-size: var(--font-size-sm);
    box-shadow: var(--shadow-soft);
  }
  
  .callout--warning {
      border-left: 4px solid var(--color-primary);
  }

  /* -------------------------------------------------------
   * 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: #fff;
  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: #000;
  background-color: #f0f0f0;
}

/* 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: #f0f0f0;
  transition: background-color var(--transition-fast);
  color: #000;
  border: 1px solid #ddd;
}

.lang-switcher__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 10;
  min-width: 150px;
  background: #fff;
  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. Base (Mobile First) */
.hero-offer {
  display: grid;
  grid-template-columns: 100%; 
  gap: var(--space-xl); 
  justify-content: start;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

/* Image */
.hero-offer__visual img {
  width: 100%;
  max-width: 500px; 
  height: auto;
  object-fit: contain; 
  filter: drop-shadow(0 10px 30px rgba(241, 196, 15, 0.2)); /* Gold Shadow */
}

/* 2. Desktop Style */
@media (min-width: 960px) {
  .hero-offer {
    grid-template-columns: 1fr 1fr;
    text-align: left; 
    padding-inline: var(--space-2xl); 
    min-height: 550px; 
  }

  .hero-offer__content {
    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); 
  }
}

/* Animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


  /* --- CUSTOM OVERRIDES FOR "SAVOY" LOOK --- */
  
  /* Cards Grid */
  .bonus-grid__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  @media (min-width: 768px) {
    .bonus-grid__container {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* Card Styling (Title Black / Text Grey) */
  .bonus-card-v2 {
    background: var(--color-surface-base); /* White */
    border: 1px solid var(--color-border-subtle);
    border-top: 4px solid var(--color-primary); /* Gold Top */
    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.1);
    border-color: var(--color-primary);
  }

  /* TITLE: Large & Black */
  .bonus-card-v2__title {
    color: #000 !important; 
    font-size: 1.5rem; 
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 12px;
    line-height: 1.1;
    letter-spacing: -0.5px;
  }

  /* TAGS: Light Chips */
  .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: #000;
    background: #f0f0f0;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #ddd;
  }

  /* DESC: Grey Text */
  .bonus-card-v2__offer {
    color: var(--color-text-muted) !important; 
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 400;
  }
  
  /* Bold numbers in description are Gold */
  .bonus-card-v2__offer strong {
    color: var(--color-success); /* Use Green for money numbers */
    font-weight: 700;
  }

  /* BUTTON: Full Width */
  .bonus-card-v2__cta {
    width: 100%;
    margin-top: auto;
    font-weight: 800;
    letter-spacing: 0.5px;
  }
/* =========================================
   FIX 1: LANGUAGE SWITCHER
   ========================================= */

/* Container */
.lang-switcher {
    position: relative;
    z-index: 1001;
    display: inline-block;
}

/* Button */
.lang-switcher__current {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    transition: 0.2s;
}

.lang-switcher__current:hover {
    background: #fff;
    border-color: var(--color-primary);
}

.lang-switcher__flag {
    font-size: 18px;
    line-height: 1;
}

/* Dropdown */
.lang-switcher__dropdown {
    position: absolute;
    top: 100%; 
    right: 0;
    min-width: 140px;
    background: #fff; /* White */
    border: 1px solid #eee;
    border-radius: var(--radius-md);
    padding: 8px 0;
    margin-top: 10px; 
    list-style: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 1002;
}

/* Bridge */
.lang-switcher__dropdown::before {
    content: '';
    position: absolute;
    top: -20px; 
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent; 
}

.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: #000; 
    font-size: 14px;
    text-decoration: none;
    transition: 0.2s;
}

.lang-switcher__dropdown a:hover {
    background: rgba(241, 196, 15, 0.1); 
    color: #000;
}


/* =========================================
   FIX 2: MOBILE MENU (Accordion)
   ========================================= */

@media (max-width: 960px) {

    .main-nav {
        overflow-y: auto; 
        max-height: calc(100vh - 90px);
        padding-bottom: 80px;
        background: #fff;
    }

    .main-nav__dropdown {
        position: static !important; 
        box-shadow: none !important;
        border: none !important;
        background: #f5f5f5 !important; /* Slightly darker */
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        
        display: none; 
        padding-left: 20px; 
        margin-top: 5px;
        min-width: 100%;
    }

    .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: #000;
    }
}

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

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

@media (max-width: 960px) {
    
    .main-header__logo {
        flex-shrink: 0; 
        max-width: 100px; 
        margin-right: auto; 
    }

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

    .main-header__actions {
        gap: 6px; 
        flex-shrink: 1; 
        flex-wrap: nowrap; 
    }

    .main-header__actions .button {
        padding: 0 10px; 
        height: 32px;    
        font-size: 11px; 
        line-height: 32px; 
        white-space: nowrap; 
    }

    .lang-switcher__current {
        padding: 0 8px;
        height: 32px;
        font-size: 11px;
        gap: 4px;
    }
    
    .lang-flag {
        width: 16px; 
    }

    .main-header__burger {
        width: 32px;
        height: 32px;
        padding: 4px;
    }
    
    .main-header__burger span {
        width: 16px;
        height: 2px;
        margin-bottom: 3px; 
    }
}

@media (max-width: 360px) {
    .main-header__actions .button {
        padding: 0 8px;
        font-size: 10px;
    }
    .lang-switcher__current span {
        display: none; 
    }
}

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

@media (max-width: 960px) {

    .main-header__burger {
        width: 32px;
        height: 32px;
        padding: 0 !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px; 
        overflow: visible;
        border-color: #ddd;
    }
    
    .main-header__burger span {
        width: 16px; 
        height: 2px;
        background-color: #000; /* Black lines on white header */
        border-radius: 2px;
        margin: 0 !important;
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform-origin: center;
        position: relative;
    }

    /* CROSS STATE */
    
    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 (Light)
   ========================================================================== */

/* 1. RATING */
.rating-item__progress-bar {
    background: #e0e0e0 !important;
    height: 8px;
    border-radius: 10px;
    overflow: hidden;
    width: 100%; 
}

.rating-item__progress {
    background: var(--color-success) !important; /* Green bars */
    height: 100%;
    border-radius: 10px;
    box-shadow: none; 
}

/* 2. PROVIDERS */

.provider-list-container {
    display: grid;
    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: #f9f9f9;
    border: 1px solid #eee;
    border-radius: var(--radius-md);
    padding: 12px 8px;
    
    color: #000;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    transition: all 0.2s ease;
}

.provider-chip:hover {
    background: #fff;
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* ==========================================================================
   NC BLOCKS — Savoybetting (Light Theme, Gold Primary)
   Paste this at the very end of style.css
   ========================================================================== */

/* ---------------------------
   0) Shared helpers (optional, safe)
   --------------------------- */
:root {
  /* Gold tint helpers (uses your --hero = "241, 196, 15") */
  --nc-gold-10: rgba(var(--hero), 0.10);
  --nc-gold-14: rgba(var(--hero), 0.14);
  --nc-gold-22: rgba(var(--hero), 0.22);

  /* Neutral light shells */
  --nc-shell-bg: var(--color-surface-base);
  --nc-shell-border: var(--color-border-subtle);
  --nc-shell-shadow: var(--shadow-soft);

  /* Text */
  --nc-text: var(--color-text);
  --nc-muted: var(--color-text-muted);
  --nc-soft: var(--color-text-soft);
}

/* ---------------------------
   1) NcSteps (Registration / How-to steps)
   --------------------------- */

.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-lg);
  background: var(--nc-shell-bg);
  border: 1px solid var(--nc-shell-border);
  box-shadow: var(--nc-shell-shadow);
}

.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-primary);          /* Gold */
  color: var(--color-on-primary);           /* Black on gold */
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.nc-steps__title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--nc-text);                    /* Dark text */
  margin: 0;
}

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

/* ---------------------------
   2) NC Rating Card
   --------------------------- */

.nc-rating-card {
  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-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-primary); /* Gold top stripe */
}

.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-primary);     /* Gold text */

  padding: 10px 12px;
  border-radius: var(--radius-lg);
  background: var(--nc-gold-10);
  border: 1px solid rgba(var(--hero), 0.35);
  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: 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: var(--nc-text);
  font-weight: 800;
}

.nc-rating-card__text a {
  color: var(--color-link);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}

.nc-rating-card__text a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

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

/* ---------------------------
   3) NC Pros / Cons
   --------------------------- */

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

.nc-pros-cons__column {
  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-md);
  position: relative;
  overflow: hidden;
}

/* Keep semantic borders (Green/Red) */
.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: var(--nc-text);
}

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

.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: 22px;
}

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

/* Semantic bullets */
.nc-pros-cons__column--pros .nc-pros-cons__item::before {
  background: rgba(var(--odd-up), 0.18);
  border-color: rgba(var(--odd-up), 0.45);
}

.nc-pros-cons__column--cons .nc-pros-cons__item::before {
  background: rgba(var(--oc-3), 0.12);
  border-color: rgba(var(--oc-3), 0.35);
}

.nc-pros-cons__item strong {
  color: var(--nc-text);
  font-weight: 800;
}

.nc-pros-cons__item a {
  color: var(--color-link);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}

.nc-pros-cons__item a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

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

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

.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-md);
  position: relative;
  overflow: hidden;
}

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

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

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

.nc-security__item {
  background: #f9f9f9;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  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: var(--nc-text);
}

.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: var(--nc-text);
  font-weight: 800;
}

.nc-security__item-text a {
  color: var(--color-link);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}

.nc-security__item-text a:hover {
  color: var(--color-primary);
  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));
  }
}

/* ---------------------------
   5) Plain <table> styling (tables WITHOUT .data-table)
   --------------------------- */

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: #f5f5f5;
}

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: var(--color-text);
  font-weight: 900;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

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

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