    /* ========================================
       CSS VARIABLES FOR CONSISTENCY
       ======================================== */
    :root {
      --nav-height: 56px;
      --top-bar-height: 52px;
    }

    html {
      scroll-behavior: smooth;
    }

    * {
      box-sizing: border-box;
    }

    /* ========================================
       SKIP LINK (Accessibility)
       ======================================== */
    .skip-link {
      position: absolute;
      top: -50px;
      left: 16px;
      padding: 12px 24px;
      background: var(--gold);
      color: #1a1a1a;
      font-weight: 700;
      font-size: 0.9rem;
      border-radius: 0 0 8px 8px;
      z-index: 9999;
      text-decoration: none;
      transition: top 0.2s ease;
    }

    .skip-link:focus {
      top: 0;
      outline: none;
    }

    /* ========================================
       FOCUS STATES (Accessibility)
       ======================================== */
    .nav-category__link:focus-visible,
    .nav-dropdown__link:focus-visible,
    .nav-cta:focus-visible,
    .btn:focus-visible,
    .category-card:focus-visible,
    .news-card:focus-visible,
    .view-all:focus-visible,
    .top-bar__link:focus-visible,
    .top-bar__experts-link:focus-visible,
    .footer-col a:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 2px;
    }

    .newsletter-input:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 0;
    }

    .scroll-top:focus-visible {
      outline: 2px solid #fff;
      outline-offset: 2px;
    }

    /* ========================================
       TOP BAR: Logo + Experts + Community
       ======================================== */
    .top-bar {
      background: var(--bg-primary);
      border-bottom: 1px solid var(--border-subtle);
      height: var(--top-bar-height);
    }

    @media (max-width: 1100px) {
      .top-bar {
        position: sticky;
        top: 0;
        z-index: 1001;
      }

      .main-nav {
        top: var(--top-bar-height);
      }
    }

    .top-bar__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 1.5rem;
      height: 100%;
    }

    .top-bar__logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
      padding: 0.25rem 0.5rem;
      margin: -0.25rem -0.5rem;
      border-radius: 8px;
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .top-bar__logo:hover {
      background: rgba(255,255,255,0.05);
    }

    .top-bar__logo:active {
      transform: scale(0.98);
    }

    .top-bar__logo .logo-icon {
      height: 38px;
      width: auto;
      transition: transform 0.2s ease;
    }

    .top-bar__logo:hover .logo-icon {
      transform: scale(1.05);
    }

    .logo-text {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.4rem;
      font-weight: 800;
      letter-spacing: 0.5px;
    }

    .logo-text--white {
      color: #F5F0E8;
    }

    .logo-text--gold {
      color: var(--gold);
    }

    .top-bar__right {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    .top-bar__experts {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .top-bar__experts-link {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      padding: 0.375rem 0.75rem;
      border-radius: 50px;
      transition: background 0.2s ease;
    }

    .top-bar__experts-link:hover {
      background: rgba(255,255,255,0.05);
    }

    .top-bar__experts-label {
      font-size: 0.8rem;
      color: var(--text-secondary);
      font-weight: 500;
    }

    .expert-avatars {
      display: flex;
      align-items: center;
    }

    .expert-avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 2px solid var(--bg-primary);
      margin-left: -8px;
      object-fit: cover;
      transition: transform 0.2s ease;
    }

    .expert-avatar:first-child {
      margin-left: 0;
    }

    .top-bar__experts-link:hover .expert-avatar {
      transform: scale(1.1);
    }

    .top-bar__links {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .top-bar__link {
      font-size: 0.85rem;
      color: var(--text-tertiary);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.375rem;
      padding: 0.5rem 0.75rem;
      min-height: 44px;
      border-radius: 6px;
      transition: color 0.2s ease, background 0.2s ease;
    }

    .top-bar__link:hover {
      color: var(--text-primary);
      background: rgba(255,255,255,0.05);
    }

    .top-bar__link svg {
      width: 16px;
      height: 16px;
    }

    /* ========================================
       MAIN NAVIGATION: Sticky Categories
       ======================================== */
    .main-nav {
      background: var(--bg-secondary);
      border-bottom: 1px solid var(--border-default);
      position: sticky;
      top: 0;
      z-index: 1000;
      height: var(--nav-height);
    }

    .main-nav__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 1.5rem;
      height: 100%;
    }

    .main-nav__categories {
      display: flex;
      align-items: center;
      gap: 0;
      height: 100%;
    }

    .nav-category {
      position: relative;
      height: 100%;
    }

    .nav-category__link {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0 1rem;
      height: 100%;
      color: var(--text-secondary);
      font-size: 0.875rem;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.2s ease;
      border-bottom: 2px solid transparent;
      margin-bottom: -1px;
    }

    .nav-category__link:hover,
    .nav-category__link:focus {
      color: var(--text-primary);
      background: rgba(255,255,255,0.03);
    }

    .nav-category__link.active {
      color: var(--gold);
      border-bottom-color: var(--gold);
    }

    .nav-category__link svg {
      width: 16px;
      height: 16px;
      opacity: 0.7;
    }

    /* Dropdown chevron indicator */
    .nav-category__link[aria-haspopup="true"]::after {
      content: '';
      width: 0;
      height: 0;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 4px solid currentColor;
      margin-left: 0.375rem;
      opacity: 0.6;
      transition: transform 0.2s ease;
    }

    .nav-category:hover .nav-category__link[aria-haspopup="true"]::after,
    .nav-category__link[aria-expanded="true"]::after {
      transform: rotate(180deg);
    }

    /* Dropdown */
    .nav-dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 200px;
      background: var(--bg-card);
      border: 1px solid var(--border-default);
      border-top: none;
      border-radius: 0 0 8px 8px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.4);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-5px);
      transition: all 0.15s ease;
      padding: 0.75rem;
    }

    /* Mega menu - multi-column layout */
    .nav-dropdown--mega {
      min-width: auto;
      width: max-content;
      max-width: 600px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.5rem 1.5rem;
      padding: 1rem 1.25rem;
    }

    .nav-dropdown--mega-3 {
      grid-template-columns: repeat(3, 1fr);
      max-width: 720px;
    }

    .nav-category:hover .nav-dropdown,
    .nav-category:focus-within .nav-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .nav-dropdown__section {
      padding: 0;
    }

    .nav-dropdown__section:not(:last-child) {
      border-bottom: none;
    }

    .nav-dropdown__title {
      font-size: 0.65rem;
      font-weight: 700;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 0.375rem 0.5rem;
      margin-bottom: 0.25rem;
      border-bottom: 1px solid var(--border-subtle);
    }

    .nav-dropdown__link {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem;
      color: var(--text-secondary);
      font-size: 0.8rem;
      text-decoration: none;
      transition: all 0.15s ease;
      border-radius: 4px;
      white-space: nowrap;
    }

    .nav-dropdown__link:hover,
    .nav-dropdown__link:focus {
      color: var(--text-primary);
      background: rgba(255,255,255,0.05);
    }

    .nav-dropdown__link svg {
      width: 14px;
      height: 14px;
      opacity: 0.5;
      flex-shrink: 0;
    }

    /* Featured link style */
    .nav-dropdown__link--featured {
      background: rgba(201, 169, 110, 0.1);
      border: 1px solid rgba(201, 169, 110, 0.2);
      color: var(--gold);
    }

    .nav-dropdown__link--featured:hover {
      background: rgba(201, 169, 110, 0.15);
      color: var(--gold);
    }

    /* Simple dropdown (non-mega) */
    .nav-dropdown--simple {
      display: block;
      padding: 0.5rem;
      min-width: 180px;
    }

    .nav-dropdown--simple .nav-dropdown__link {
      padding: 0.5rem 0.75rem;
    }

    /* Right-aligned dropdowns for items near edge */
    .nav-category:nth-last-child(-n+3) .nav-dropdown--mega {
      left: auto;
      right: 0;
    }

    .nav-category:nth-last-child(-n+2) .nav-dropdown--mega-3 {
      right: -100px;
    }

    /* Reduced motion support */
    @media (prefers-reduced-motion: reduce) {
      .nav-dropdown,
      .nav-category__link,
      .nav-dropdown__link,
      .top-bar__logo,
      .top-bar__link,
      .expert-avatar,
      .nav-cta {
        transition: none;
      }

      .nav-dropdown {
        transform: none;
      }
    }

    /* ALL BONUSES Button - Fixed Contrast */
    .nav-cta {
      background: var(--gold);
      color: #1a1a1a;
      font-weight: 700;
      font-size: 0.85rem;
      padding: 0.625rem 1.25rem;
      border-radius: 6px;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.2s ease;
      box-shadow: 0 2px 8px rgba(201, 169, 110, 0.3);
      border: none;
    }

    .nav-cta:hover,
    .nav-cta:focus {
      background: #d4b978;
      color: #1a1a1a;
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(201, 169, 110, 0.4);
    }

    .nav-cta svg {
      width: 16px;
      height: 16px;
    }

    /* Mobile Toggle */
    .mobile-toggle {
      display: none;
      background: none;
      border: none;
      padding: 0.5rem;
      cursor: pointer;
    }

    .mobile-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text-primary);
      margin: 5px 0;
      transition: all 0.3s ease;
    }

    @media (max-width: 1100px) {
      .main-nav__categories {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-card);
        border-bottom: 1px solid var(--border-default);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 10px 40px rgba(0,0,0,0.3);
        max-height: 70vh;
        overflow-y: auto;
      }

      .main-nav__categories.mobile-open {
        display: flex;
      }

      .nav-category {
        height: auto;
      }

      .nav-category__link {
        padding: 0.875rem 1rem;
        border-radius: 8px;
        border-bottom: none;
      }

      .nav-category__link[aria-haspopup="true"]::after {
        margin-left: auto;
        transform: rotate(-90deg);
      }

      .nav-category:hover .nav-category__link[aria-haspopup="true"]::after,
      .nav-category__link[aria-expanded="true"]::after {
        transform: rotate(0deg);
      }

      .nav-dropdown,
      .nav-dropdown--mega,
      .nav-dropdown--mega-3 {
        position: static;
        box-shadow: none;
        border: none;
        background: rgba(255,255,255,0.03);
        border-radius: 8px;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0.75rem;
        margin-top: 0.5rem;
        display: none;
        grid-template-columns: 1fr;
        max-width: 100%;
        width: 100%;
        left: 0;
        right: 0;
      }

      .nav-category:hover .nav-dropdown,
      .nav-category:focus-within .nav-dropdown {
        display: grid;
      }

      .nav-dropdown--simple {
        display: none;
      }

      .nav-category:hover .nav-dropdown--simple,
      .nav-category:focus-within .nav-dropdown--simple {
        display: block;
      }

      .mobile-toggle {
        display: block;
      }

      .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
      }

      .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
      }

      .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
      }

      .top-bar__links {
        display: none;
      }

      /* Right-aligned dropdown reset for mobile */
      .nav-category:nth-last-child(-n+3) .nav-dropdown--mega,
      .nav-category:nth-last-child(-n+2) .nav-dropdown--mega-3 {
        left: 0;
        right: 0;
      }
    }

    /* Tablet - 2 columns for mega menus */
    @media (min-width: 600px) and (max-width: 1100px) {
      .nav-dropdown--mega,
      .nav-dropdown--mega-3 {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 700px) {
      .category-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 400px;
      }
    }

    @media (max-width: 600px) {
      .hero {
        padding: 3rem 1rem 4rem;
      }

      .hero__stats {
        gap: 1.5rem;
      }

      .expert-avatars {
        display: none;
      }
    }

    /* ========================================
       HERO SECTION
       ======================================== */
    .hero {
      position: relative;
      padding: 5rem 1.5rem 6rem;
      text-align: center;
      overflow: hidden;
      z-index: 1;
    }

    .hero > *:not(.hero__bg) {
      position: relative;
      z-index: 2;
    }

    .hero__bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 25% 0%, rgba(201, 169, 110, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 100%, rgba(45, 139, 94, 0.08) 0%, transparent 50%),
        url('./images/heroes/hero-home-bg.png') center/cover no-repeat,
        linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
      z-index: -1;
      opacity: 0.85;
    }

    .hero__bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 0%, var(--bg-primary) 95%);
    }

    .hero__badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(201, 169, 110, 0.12);
      border: 1px solid rgba(201, 169, 110, 0.25);
      padding: 0.5rem 1rem;
      border-radius: 50px;
      font-size: 0.85rem;
      color: var(--gold);
      margin-bottom: 1.5rem;
    }

    .hero__badge svg {
      width: 16px;
      height: 16px;
    }

    .hero__title {
      font-family: var(--font-display);
      font-size: clamp(2.25rem, 5vw, 3.5rem);
      font-weight: 700;
      line-height: 1.15;
      margin-bottom: 1.25rem;
      max-width: 750px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero__title span {
      color: var(--gold);
    }

    .hero__subtitle {
      font-size: 1.1rem;
      color: var(--text-secondary);
      max-width: 550px;
      margin: 0 auto 2.5rem;
      line-height: 1.6;
    }

    .hero__ctas {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 3rem;
    }

    /* Button Styles - Fixed Contrast */
    .btn--primary {
      background: var(--gold);
      color: #1a1a1a;
      font-weight: 600;
    }

    .btn--primary:hover,
    .btn--primary:focus {
      background: #d4b978;
      color: #1a1a1a;
    }

    .btn--outline {
      background: transparent;
      color: var(--text-primary);
      border: 1px solid var(--border-default);
    }

    .btn--outline:hover,
    .btn--outline:focus {
      border-color: var(--gold);
      color: var(--gold);
    }

    .hero__stats {
      display: flex;
      gap: 2.5rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .hero__stat {
      text-align: center;
    }

    .hero__stat-value {
      font-family: var(--font-display);
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--gold);
    }

    .hero__stat-label {
      font-size: 0.8rem;
      color: var(--text-tertiary);
      margin-top: 0.25rem;
    }

    /* ========================================
       CATEGORY GRID
       ======================================== */
    .category-section {
      padding: 3rem 1.5rem;
      background: var(--bg-secondary);
    }

    .category-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
      max-width: 900px;
      margin: 0 auto;
    }

    @media (max-width: 800px) {
      .category-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
      }
    }

    .category-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.625rem;
      padding: 1.25rem 1rem;
      background: var(--bg-card);
      border: 1px solid var(--border-default);
      border-radius: 10px;
      text-decoration: none;
      transition: all 0.2s ease;
    }

    .category-card:hover,
    .category-card:focus {
      border-color: var(--gold);
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }

    .category-card__icon {
      width: 56px;
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      overflow: hidden;
    }

    .category-card__icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px;
    }

    .category-card__label {
      font-weight: 600;
      color: var(--text-primary);
      font-size: 0.85rem;
      text-align: center;
    }

    /* ========================================
       SECTIONS
       ======================================== */
    .content-section {
      padding: 4rem 1.5rem;
    }

    .content-section--alt {
      background: var(--bg-secondary);
    }

    .section-header {
      text-align: center;
      margin-bottom: 2.5rem;
    }

    .section-header__title {
      font-family: var(--font-display);
      font-size: 1.75rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .section-header__subtitle {
      color: var(--text-secondary);
      font-size: 0.95rem;
    }

    /* ========================================
       EXPERTS SECTION
       ======================================== */
    .experts-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      max-width: 1000px;
      margin: 0 auto;
    }

    @media (max-width: 900px) {
      .experts-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 500px) {
      .experts-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
      }
    }

    .expert-card {
      text-align: center;
      padding: 1.5rem 1.25rem;
      background: var(--bg-card);
      border: 1px solid var(--border-default);
      border-radius: 12px;
      transition: all 0.2s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .expert-card:hover {
      border-color: var(--gold);
      transform: translateY(-3px);
    }

    .expert-card__avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      object-position: center top;
      border: 3px solid var(--gold);
      margin-bottom: 1rem;
      display: block;
    }

    .expert-card__name {
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: 0.125rem;
    }

    .expert-card__role {
      color: var(--gold);
      font-size: 0.8rem;
      margin-bottom: 0.625rem;
    }

    .expert-card__bio {
      font-size: 0.8rem;
      color: var(--text-secondary);
      line-height: 1.5;
    }

    /* ========================================
       TRUST SECTION
       ======================================== */
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    @media (max-width: 900px) {
      .trust-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 500px) {
      .trust-grid {
        grid-template-columns: 1fr;
      }
    }

    .trust-card {
      text-align: center;
      padding: 1.75rem 1.5rem;
      background: var(--bg-card);
      border: 1px solid var(--border-default);
      border-radius: 12px;
      transition: all 0.2s ease;
    }

    .trust-card:hover {
      border-color: var(--gold);
      transform: translateY(-3px);
    }

    .trust-card__icon {
      width: 56px;
      height: 56px;
      margin: 0 auto 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      overflow: hidden;
    }

    .trust-card__icon--svg {
      background: linear-gradient(135deg, rgba(201, 169, 110, 0.15) 0%, rgba(201, 169, 110, 0.05) 100%);
      color: var(--gold);
    }

    .trust-card__icon svg {
      width: 28px;
      height: 28px;
    }

    .trust-card__title {
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: 0.5rem;
    }

    .trust-card__text {
      font-size: 0.85rem;
      color: var(--text-secondary);
      line-height: 1.5;
    }

    /* ========================================
       LATEST NEWS SECTION
       ======================================== */
    .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.25rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .news-card {
      background: var(--bg-card);
      border: 1px solid var(--border-default);
      border-radius: 12px;
      overflow: hidden;
      text-decoration: none;
      transition: all 0.2s ease;
    }

    .news-card:hover {
      border-color: var(--gold);
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.25);
    }

    .news-card__image {
      aspect-ratio: 16/9;
      overflow: hidden;
    }

    .news-card__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .news-card:hover .news-card__image img {
      transform: scale(1.05);
    }

    .news-card__content {
      padding: 1.25rem;
    }

    .news-card__category {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 600;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 0.5rem;
    }

    .news-card__title {
      font-weight: 700;
      font-size: 1rem;
      color: var(--text-primary);
      margin-bottom: 0.5rem;
      line-height: 1.3;
    }

    .news-card__excerpt {
      font-size: 0.85rem;
      color: var(--text-secondary);
      line-height: 1.5;
      margin-bottom: 0.75rem;
    }

    .news-card__meta {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.75rem;
      color: var(--text-tertiary);
    }

    .news-card__author-img {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      object-fit: cover;
    }

    .news-card__date {
      color: var(--text-tertiary);
      padding-left: 0.25rem;
    }

    .news-card__date::before {
      content: '•';
      margin-right: 0.5rem;
    }

    /* ========================================
       NEWSLETTER SECTION
       ======================================== */
    .newsletter-section {
      padding: 3rem 1.5rem;
      background: linear-gradient(135deg, rgba(201, 169, 110, 0.08) 0%, rgba(201, 169, 110, 0.02) 100%);
      border-top: 1px solid var(--border-subtle);
      border-bottom: 1px solid var(--border-subtle);
    }

    .newsletter-inner {
      max-width: 600px;
      margin: 0 auto;
      text-align: center;
    }

    .newsletter-title {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .newsletter-text {
      color: var(--text-secondary);
      font-size: 0.95rem;
      margin-bottom: 1.5rem;
    }

    .newsletter-form {
      display: flex;
      gap: 0.75rem;
      max-width: 450px;
      margin: 0 auto;
    }

    .newsletter-input {
      flex: 1;
      padding: 0.875rem 1rem;
      background: var(--bg-card);
      border: 1px solid var(--border-default);
      border-radius: 8px;
      color: var(--text-primary);
      font-size: 0.9rem;
    }

    .newsletter-input:focus {
      outline: none;
      border-color: var(--gold);
    }

    .newsletter-input::placeholder {
      color: var(--text-tertiary);
    }

    .newsletter-btn {
      padding: 0.875rem 1.5rem;
      background: var(--gold);
      color: #1a1a1a;
      font-weight: 700;
      font-size: 0.9rem;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.2s ease;
      white-space: nowrap;
    }

    .newsletter-btn:hover {
      background: #d4b978;
    }

    @media (max-width: 500px) {
      .newsletter-form {
        flex-direction: column;
      }

      .newsletter-consent {
        text-align: left;
      }
    }

    .newsletter-consent {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      margin-top: 1rem;
      font-size: 0.8rem;
      color: var(--text-secondary);
      text-align: center;
      max-width: 450px;
      margin-left: auto;
      margin-right: auto;
    }

    .newsletter-consent input[type="checkbox"] {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      margin-top: 2px;
      accent-color: var(--gold);
      cursor: pointer;
    }

    .newsletter-consent label {
      cursor: pointer;
      line-height: 1.4;
    }

    .newsletter-consent a {
      color: var(--gold);
      text-decoration: underline;
    }

    .newsletter-consent a:hover {
      color: #d4b978;
    }

    /* ========================================
       RATING BADGES
       ======================================== */
    .rating-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 36px;
      padding: 0.25rem 0.5rem;
      border-radius: 6px;
      font-weight: 700;
      font-size: 0.85rem;
    }

    .rating-badge--exceptional {
      background: linear-gradient(135deg, rgba(45, 139, 94, 0.15) 0%, rgba(45, 139, 94, 0.05) 100%);
      color: var(--success);
      border: 1px solid rgba(45, 139, 94, 0.3);
    }

    .rating-badge--excellent {
      background: linear-gradient(135deg, rgba(201, 169, 110, 0.15) 0%, rgba(201, 169, 110, 0.05) 100%);
      color: var(--gold);
      border: 1px solid rgba(201, 169, 110, 0.3);
    }

    /* ========================================
       SCROLL TO TOP BUTTON
       ======================================== */
    .scroll-top {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      width: 48px;
      height: 48px;
      background: var(--gold);
      color: #1a1a1a;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      transition: all 0.3s ease;
      z-index: 999;
      box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    }

    .scroll-top.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .scroll-top:hover {
      background: #d4b978;
      transform: translateY(-3px);
    }

    .scroll-top svg {
      width: 20px;
      height: 20px;
    }

    /* ========================================
       VIEW ALL LINK
       ======================================== */
    .view-all {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--gold);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      margin-top: 2rem;
      transition: gap 0.2s ease;
    }

    .view-all:hover {
      gap: 0.75rem;
    }

    .view-all svg {
      width: 16px;
      height: 16px;
    }

    /* ========================================
       FOOTER
       ======================================== */
    .site-footer {
      padding: 3rem 1.5rem 2rem;
      background: var(--bg-primary);
      border-top: 1px solid var(--border-default);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 2rem;
      max-width: 1100px;
      margin: 0 auto 2.5rem;
    }

    .footer-col h4 {
      font-weight: 600;
      font-size: 0.9rem;
      margin-bottom: 0.875rem;
      color: var(--text-primary);
    }

    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-col li {
      margin-bottom: 0.375rem;
    }

    .footer-col a {
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 0.85rem;
      transition: color 0.2s ease;
    }

    .footer-col a:hover {
      color: var(--gold);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid var(--border-subtle);
    }

    .footer-badges {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      margin-bottom: 1.25rem;
    }

    .footer-badges img {
      height: 28px;
      opacity: 0.7;
    }

    .footer-disclaimer {
      font-size: 0.75rem;
      color: var(--text-tertiary);
      max-width: 700px;
      margin: 0 auto 1rem;
      line-height: 1.5;
    }

    .footer-copyright {
      font-size: 0.8rem;
      color: var(--text-tertiary);
    }

    /* ========================================
       BOTTOM NAVIGATION (Sitemap Style)
       ======================================== */
    .bottom-nav {
      background: var(--bg-secondary);
      border-top: 1px solid var(--border-default);
      padding: 3rem 1.5rem;
    }

    .bottom-nav__inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .bottom-nav__grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 2rem;
    }

    @media (max-width: 1000px) {
      .bottom-nav__grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 600px) {
      .bottom-nav__grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .bottom-nav__section {
      min-width: 0;
    }

    .bottom-nav__title {
      font-size: 0.7rem;
      font-weight: 700;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 0.875rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid var(--border-subtle);
    }

    .bottom-nav__list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .bottom-nav__list li {
      margin-bottom: 0.375rem;
    }

    .bottom-nav__link {
      font-size: 0.8rem;
      color: var(--text-secondary);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      transition: color 0.15s ease;
    }

    .bottom-nav__link:hover {
      color: var(--text-primary);
    }

    .bottom-nav__link svg {
      width: 12px;
      height: 12px;
      opacity: 0.5;
    }

    .bottom-nav__link--featured {
      color: var(--gold);
      font-weight: 500;
    }

    .bottom-nav__link--featured:hover {
      color: #d4b978;
    }

    /* ========================================
       FOOTER ENHANCED
       ======================================== */
    .site-footer {
      padding: 0;
      background: var(--bg-primary);
      border-top: 1px solid var(--border-default);
    }

    .footer-main {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 3rem;
      max-width: 1200px;
      margin: 0 auto;
      padding: 3rem 1.5rem;
    }

    @media (max-width: 900px) {
      .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
    }

    .footer-brand {
      max-width: 380px;
    }

    .footer-brand__logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1rem;
      text-decoration: none;
    }

    .footer-brand__logo img {
      height: 36px;
      width: auto;
    }

    .footer-brand__text {
      font-size: 0.85rem;
      color: var(--text-secondary);
      line-height: 1.6;
      margin-bottom: 1.25rem;
    }

    .footer-brand__social {
      display: flex;
      gap: 0.75rem;
    }

    .footer-brand__social-link {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--bg-secondary);
      border: 1px solid var(--border-default);
      border-radius: 8px;
      color: var(--text-secondary);
      transition: all 0.2s ease;
    }

    .footer-brand__social-link:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: #1a1a1a;
    }

    .footer-brand__social-link svg {
      width: 18px;
      height: 18px;
    }

    .footer-contact__title,
    .footer-tools__title {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 1rem;
    }

    .footer-contact__item {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      margin-bottom: 0.875rem;
      font-size: 0.85rem;
      color: var(--text-secondary);
    }

    .footer-contact__item svg {
      width: 16px;
      height: 16px;
      color: var(--gold);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .footer-contact__item a {
      color: var(--text-secondary);
      text-decoration: none;
      transition: color 0.15s ease;
    }

    .footer-contact__item a:hover {
      color: var(--gold);
    }

    .footer-tools__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.5rem;
    }

    .footer-tool-link {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.625rem 0.75rem;
      background: var(--bg-secondary);
      border: 1px solid var(--border-default);
      border-radius: 6px;
      font-size: 0.8rem;
      color: var(--text-secondary);
      text-decoration: none;
      transition: all 0.15s ease;
    }

    .footer-tool-link:hover {
      border-color: var(--gold);
      color: var(--text-primary);
    }

    .footer-tool-link svg {
      width: 14px;
      height: 14px;
      opacity: 0.6;
    }

    .footer-bottom {
      background: rgba(0,0,0,0.2);
      text-align: center;
      padding: 2rem 1.5rem;
      border-top: 1px solid var(--border-subtle);
    }

    .footer-badges {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      margin-bottom: 1.25rem;
      flex-wrap: wrap;
    }

    .footer-badges img {
      height: 32px;
      opacity: 0.8;
    }

    .footer-badges a:hover img {
      opacity: 1;
    }

    .footer-disclaimer {
      font-size: 0.75rem;
      color: var(--text-tertiary);
      max-width: 800px;
      margin: 0 auto 1rem;
      line-height: 1.6;
    }

    .footer-disclaimer a {
      color: var(--gold);
      text-decoration: none;
    }

    .footer-disclaimer a:hover {
      text-decoration: underline;
    }

    .footer-legal {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      flex-wrap: wrap;
      font-size: 0.75rem;
      color: var(--text-tertiary);
    }

    .footer-legal a {
      color: var(--text-tertiary);
      text-decoration: none;
      transition: color 0.15s ease;
    }

    .footer-legal a:hover {
      color: var(--gold);
    }

    .footer-legal span {
      opacity: 0.3;
    }

    /* ========================================
       INTENT FILTER (What are you looking for?)
       ======================================== */
    .intent-section {
      padding: 2rem 1.5rem;
      background: var(--bg-primary);
      border-bottom: 1px solid var(--border-subtle);
    }

    .intent-section__inner {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .intent-section__title {
      font-size: 1rem;
      color: var(--text-secondary);
      margin-bottom: 1rem;
    }

    .intent-grid {
      display: flex;
      justify-content: center;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .intent-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1.25rem;
      background: var(--bg-card);
      border: 1px solid var(--border-default);
      border-radius: 50px;
      color: var(--text-secondary);
      font-size: 0.875rem;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.2s ease;
    }

    .intent-btn:hover {
      border-color: var(--gold);
      color: var(--gold);
      transform: translateY(-2px);
    }

    .intent-btn svg {
      width: 18px;
      height: 18px;
    }

    /* ========================================
       FEATURED BONUSES SECTION
       ======================================== */
    .featured-section {
      padding: 3rem 1.5rem;
      background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    }

    .featured-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    @media (max-width: 900px) {
      .featured-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
      }
    }

    .bonus-card {
      background: var(--bg-card);
      border: 1px solid var(--border-default);
      border-radius: 12px;
      padding: 1.5rem;
      position: relative;
      transition: all 0.2s ease;
    }

    .bonus-card:hover {
      border-color: var(--gold);
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.2);
    }

    .bonus-card__badge {
      position: absolute;
      top: -8px;
      right: 16px;
      background: var(--gold);
      color: #1a1a1a;
      font-size: 0.65rem;
      font-weight: 700;
      padding: 0.25rem 0.625rem;
      border-radius: 4px;
      text-transform: uppercase;
    }

    .bonus-card__header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--border-subtle);
    }

    .bonus-card__logo {
      width: 60px;
      height: 60px;
      border-radius: 10px;
      object-fit: contain;
      background: #fff;
      padding: 8px;
    }

    .bonus-card__info {
      flex: 1;
      min-width: 0;
    }

    .bonus-card__name {
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: 0.25rem;
    }

    .bonus-card__rating {
      display: flex;
      align-items: center;
      gap: 0.375rem;
      font-size: 0.8rem;
      color: var(--gold);
    }

    .bonus-card__rating svg {
      width: 14px;
      height: 14px;
      fill: var(--gold);
    }

    .bonus-card__offer {
      text-align: center;
      margin-bottom: 1rem;
    }

    .bonus-card__amount {
      font-family: var(--font-display);
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--gold);
      line-height: 1.1;
    }

    .bonus-card__type {
      font-size: 0.8rem;
      color: var(--text-secondary);
      margin-top: 0.25rem;
    }

    .bonus-card__features {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      margin-bottom: 1rem;
      font-size: 0.8rem;
    }

    .bonus-card__feature {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--text-secondary);
    }

    .bonus-card__feature svg {
      width: 14px;
      height: 14px;
      color: var(--success);
      flex-shrink: 0;
    }

    .bonus-card__cta {
      display: block;
      width: 100%;
      padding: 0.75rem;
      background: var(--gold);
      color: #1a1a1a;
      font-weight: 700;
      font-size: 0.875rem;
      text-align: center;
      text-decoration: none;
      border-radius: 8px;
      transition: all 0.2s ease;
    }

    .bonus-card__cta:hover {
      background: #d4b978;
    }

    .bonus-card__terms {
      font-size: 0.7rem;
      color: var(--text-tertiary);
      text-align: center;
      margin-top: 0.75rem;
    }

    /* ========================================
       COMPARISON TABLE PREVIEW
       ======================================== */
    .comparison-section {
      padding: 3rem 1.5rem;
    }

    .comparison-table {
      max-width: 1000px;
      margin: 0 auto;
      overflow-x: auto;
    }

    .comparison-table table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.875rem;
    }

    .comparison-table th {
      text-align: left;
      padding: 1rem;
      background: var(--bg-secondary);
      color: var(--text-secondary);
      font-weight: 600;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      border-bottom: 1px solid var(--border-default);
    }

    .comparison-table td {
      padding: 1rem;
      border-bottom: 1px solid var(--border-subtle);
      vertical-align: middle;
    }

    .comparison-table tr:hover td {
      background: rgba(255,255,255,0.02);
    }

    .comparison-table__site {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .comparison-table__logo {
      width: 40px;
      height: 40px;
      border-radius: 8px;
      object-fit: contain;
      background: #fff;
      padding: 4px;
    }

    .comparison-table__name {
      font-weight: 600;
    }

    .comparison-table__rating {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      color: var(--gold);
      font-weight: 600;
    }

    .comparison-table__rating svg {
      width: 14px;
      height: 14px;
      fill: var(--gold);
    }

    .comparison-table__bonus {
      color: var(--gold);
      font-weight: 600;
    }

    .comparison-table__cta {
      padding: 0.5rem 1rem;
      background: var(--gold);
      color: #1a1a1a;
      font-weight: 600;
      font-size: 0.8rem;
      text-decoration: none;
      border-radius: 6px;
      white-space: nowrap;
      transition: background 0.2s ease;
    }

    .comparison-table__cta:hover {
      background: #d4b978;
    }

    @media (max-width: 700px) {
      .comparison-table th:nth-child(3),
      .comparison-table td:nth-child(3),
      .comparison-table th:nth-child(4),
      .comparison-table td:nth-child(4) {
        display: none;
      }
    }

    /* ========================================
       ENHANCED COMPARISON TABLE STYLES
       ======================================== */

    /* Highlight the first row (Editor's Choice / Top-rated) */
    .comparison-table tbody tr:first-child {
      background: linear-gradient(90deg, rgba(201, 169, 110, 0.1) 0%, rgba(201, 169, 110, 0.05) 100%);
      border: 1px solid var(--border-default);
      box-shadow: inset 0 0 20px rgba(201, 169, 110, 0.08);
      position: relative;
    }

    .comparison-table tbody tr:first-child td {
      border-bottom: 2px solid var(--gold);
    }

    /* Add Editor's Choice badge styling */
    .comparison-table__editors-badge {
      display: inline-block;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
      color: var(--text-inverse);
      font-size: 0.65rem;
      font-weight: 700;
      padding: 0.35rem 0.6rem;
      border-radius: 4px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-left: 0.5rem;
      box-shadow: 0 2px 8px rgba(201, 169, 110, 0.3);
    }

    /* Alternate row backgrounds for better readability */
    .comparison-table tbody tr:nth-child(even) {
      background: rgba(255, 255, 255, 0.01);
    }

    .comparison-table tbody tr:nth-child(odd) {
      background: rgba(0, 0, 0, 0.1);
    }

    /* Enhanced hover state with full row highlight */
    .comparison-table tbody tr:hover {
      background: rgba(201, 169, 110, 0.15) !important;
      transition: background 0.2s ease;
    }

    .comparison-table tbody tr:hover td {
      background: transparent;
      color: var(--text-primary);
    }

    /* Rating badge styling - color-coded by tier */
    .comparison-table__rating-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.4rem 0.75rem;
      border-radius: 6px;
      font-weight: 600;
      font-size: 0.85rem;
      white-space: nowrap;
    }

    /* Exceptional Rating (9.0+) - Gold */
    .comparison-table__rating-badge--exceptional {
      background: rgba(201, 169, 110, 0.2);
      color: var(--gold-light);
      border: 1px solid var(--border-default);
    }

    /* Excellent Rating (8.0-8.9) - Emerald */
    .comparison-table__rating-badge--excellent {
      background: rgba(58, 175, 118, 0.15);
      color: var(--emerald-light);
      border: 1px solid rgba(58, 175, 118, 0.3);
    }

    /* Good Rating (7.0-7.9) - Blue */
    .comparison-table__rating-badge--good {
      background: rgba(74, 142, 196, 0.15);
      color: #5BA0D8;
      border: 1px solid rgba(74, 142, 196, 0.3);
    }

    /* Average Rating (Below 7.0) - Amber */
    .comparison-table__rating-badge--average {
      background: rgba(212, 168, 67, 0.15);
      color: #D4B35C;
      border: 1px solid rgba(212, 168, 67, 0.3);
    }

    /* Category winner indicator (trophy/crown icon) */
    .comparison-table__winner-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      font-size: 0.85rem;
      color: var(--gold);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .comparison-table__winner-badge::before {
      content: '👑';
      font-size: 0.9rem;
    }

    /* Add subtle glow to top-rated row */
    .comparison-table tbody tr:first-child::before {
      content: '';
      position: absolute;
      top: -1px;
      left: -1px;
      right: -1px;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      border-radius: 2px;
    }

    /* ========================================
       SLOT OF THE WEEK / NEW RELEASES
       ======================================== */
    .slots-preview {
      padding: 3rem 1.5rem;
      background: var(--bg-secondary);
    }

    .slots-preview__grid {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 2rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    @media (max-width: 800px) {
      .slots-preview__grid {
        grid-template-columns: 1fr;
      }
    }

    .slot-featured {
      background: var(--bg-card);
      border: 2px solid var(--gold);
      border-radius: 12px;
      padding: 1.5rem;
      text-align: center;
    }

    .slot-featured__badge {
      display: inline-block;
      background: var(--gold);
      color: #1a1a1a;
      font-size: 0.65rem;
      font-weight: 700;
      padding: 0.25rem 0.75rem;
      border-radius: 50px;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .slot-featured__image {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 1rem;
    }

    .slot-featured__name {
      font-weight: 700;
      font-size: 1.125rem;
      margin-bottom: 0.25rem;
    }

    .slot-featured__provider {
      font-size: 0.8rem;
      color: var(--text-tertiary);
      margin-bottom: 1rem;
    }

    .slot-featured__stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.5rem;
      margin-bottom: 1rem;
    }

    .slot-featured__stat {
      background: var(--bg-secondary);
      padding: 0.5rem;
      border-radius: 6px;
    }

    .slot-featured__stat-value {
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--gold);
    }

    .slot-featured__stat-label {
      font-size: 0.65rem;
      color: var(--text-tertiary);
      text-transform: uppercase;
    }

    .slot-featured__cta {
      display: block;
      padding: 0.75rem;
      background: var(--gold);
      color: #1a1a1a;
      font-weight: 700;
      text-decoration: none;
      border-radius: 8px;
      transition: background 0.2s ease;
    }

    .slot-featured__cta:hover {
      background: #d4b978;
    }

    .new-releases__title {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .new-releases__title svg {
      width: 20px;
      height: 20px;
      color: var(--gold);
    }

    .new-releases__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }

    @media (max-width: 500px) {
      .new-releases__grid {
        grid-template-columns: 1fr;
      }
    }

    .slot-mini {
      display: flex;
      gap: 0.875rem;
      padding: 0.875rem;
      background: var(--bg-card);
      border: 1px solid var(--border-default);
      border-radius: 10px;
      text-decoration: none;
      transition: all 0.2s ease;
    }

    .slot-mini:hover {
      border-color: var(--gold);
      transform: translateX(4px);
    }

    .slot-mini__image {
      width: 70px;
      height: 70px;
      object-fit: cover;
      border-radius: 8px;
      flex-shrink: 0;
    }

    .slot-mini__info {
      flex: 1;
      min-width: 0;
    }

    .slot-mini__name {
      font-weight: 600;
      font-size: 0.875rem;
      color: var(--text-primary);
      margin-bottom: 0.25rem;
    }

    .slot-mini__provider {
      font-size: 0.75rem;
      color: var(--text-tertiary);
      margin-bottom: 0.375rem;
    }

    .slot-mini__stats {
      display: flex;
      gap: 0.75rem;
      font-size: 0.7rem;
    }

    .slot-mini__stat {
      color: var(--text-secondary);
    }

    .slot-mini__stat span {
      color: var(--gold);
      font-weight: 600;
    }

    /* ========================================
       UPCOMING EVENTS
       ======================================== */
    .events-section {
      padding: 3rem 1.5rem;
    }

    .events-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    @media (max-width: 900px) {
      .events-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 500px) {
      .events-grid {
        grid-template-columns: 1fr;
      }
    }

    .event-card {
      background: var(--bg-card);
      border: 1px solid var(--border-default);
      border-radius: 10px;
      padding: 1rem;
      text-decoration: none;
      transition: all 0.2s ease;
    }

    .event-card:hover {
      border-color: var(--gold);
      transform: translateY(-3px);
    }

    .event-card__category {
      display: inline-block;
      font-size: 0.65rem;
      font-weight: 600;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 0.5rem;
    }

    .event-card__title {
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--text-primary);
      margin-bottom: 0.5rem;
      line-height: 1.3;
    }

    .event-card__meta {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.75rem;
      color: var(--text-tertiary);
    }

    .event-card__meta svg {
      width: 12px;
      height: 12px;
    }

    .event-card__odds {
      margin-top: 0.75rem;
      padding-top: 0.75rem;
      border-top: 1px solid var(--border-subtle);
      font-size: 0.8rem;
      color: var(--text-secondary);
    }

    .event-card__odds strong {
      color: var(--gold);
    }

    /* ========================================
       FAQ SECTION
       ======================================== */
    .faq-section {
      padding: 3rem 1.5rem;
      background: var(--bg-secondary);
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      max-width: 900px;
      margin: 0 auto;
    }

    @media (max-width: 700px) {
      .faq-grid {
        grid-template-columns: 1fr;
      }
    }

    .faq-item {
      background: var(--bg-card);
      border: 1px solid var(--border-default);
      border-radius: 10px;
      padding: 1.25rem;
    }

    .faq-item__question {
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--text-primary);
      margin-bottom: 0.5rem;
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
    }

    .faq-item__question svg {
      width: 18px;
      height: 18px;
      color: var(--gold);
      flex-shrink: 0;
      margin-top: 1px;
    }

    .faq-item__answer {
      font-size: 0.85rem;
      color: var(--text-secondary);
      line-height: 1.5;
      padding-left: 26px;
    }

    .faq-item__answer a {
      color: var(--gold);
      text-decoration: none;
    }

    .faq-item__answer a:hover {
      text-decoration: underline;
    }

    /* ========================================
       SOCIAL PROOF / TESTIMONIALS
       ======================================== */
    .social-proof {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
      padding: 1.5rem;
      background: rgba(201, 169, 110, 0.05);
      border-top: 1px solid var(--border-subtle);
      border-bottom: 1px solid var(--border-subtle);
    }

    .social-proof__item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.85rem;
      color: var(--text-secondary);
    }

    .social-proof__item svg {
      width: 20px;
      height: 20px;
      color: var(--gold);
    }

    .social-proof__item strong {
      color: var(--text-primary);
    }

    /* ========================================
       EXPERT CARD ENHANCEMENTS
       ======================================== */
    .expert-card {
      text-decoration: none;
      cursor: pointer;
    }

    .expert-card__link {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      font-size: 0.75rem;
      color: var(--gold);
      margin-top: 0.5rem;
      opacity: 0;
      transition: opacity 0.2s ease;
    }

    .expert-card:hover .expert-card__link {
      opacity: 1;
    }

    .expert-card__link svg {
      width: 12px;
      height: 12px;
    }

    /* ========================================
       RESPONSIBLE GAMBLING BANNER
       ======================================== */
    .rg-banner {
      background: linear-gradient(90deg, rgba(201, 79, 79, 0.08) 0%, rgba(201, 79, 79, 0.03) 100%);
      border-bottom: 1px solid rgba(201, 79, 79, 0.15);
      padding: 0.5rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
    }

    .rg-banner__badge {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      background: rgba(201, 79, 79, 0.15);
      border: 1.5px solid rgba(201, 79, 79, 0.4);
      border-radius: 50%;
      font-weight: 800;
      font-size: 0.65rem;
      color: #e85c5c;
      flex-shrink: 0;
    }

    .rg-banner__text {
      font-size: 0.75rem;
      color: var(--text-tertiary);
      margin: 0;
      padding: 0;
      line-height: 1;
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }

    .rg-banner__text strong {
      color: var(--text-secondary);
      font-weight: 600;
    }

    .rg-banner__links {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .rg-banner__link {
      font-size: 0.75rem;
      color: var(--gold);
      text-decoration: none;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 0.25rem;
      transition: color 0.2s ease;
      opacity: 0.85;
    }

    .rg-banner__link:hover {
      color: #d4b978;
      opacity: 1;
    }

    .rg-banner__link svg {
      width: 12px;
      height: 12px;
    }

    @media (max-width: 700px) {
      .rg-banner {
        padding: 0.375rem 1rem;
        gap: 0.5rem;
      }

      .rg-banner__text {
        display: none;
      }

      .rg-banner__links {
        gap: 0.5rem;
      }
    }
