/* ============================================================
   WORLD KIT 2026 — CSS PREMIUM v2
   ============================================================ */

   :root {
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-dark: #A07A2E;
    --gold-pale: rgba(201, 168, 76, 0.12);
    --blue-deep: #04090F;
    --blue-mid: #0B1A2E;
    --blue-fifa: #0D2241;
    --blue-bright: #1455A4;
    --white: #FFFFFF;
    --white-off: #F2F2EE;
    --red: #C8192A;
    --red-dark: #920F1A;
    --gray: rgba(255, 255, 255, 0.06);
    --border: rgba(201, 168, 76, 0.18);
    --border-strong: rgba(201, 168, 76, 0.45);
    --text-muted: rgba(255, 255, 255, 0.45);
    --text-dim: rgba(255, 255, 255, 0.65);
    --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.25);
    --shadow-deep: 0 24px 60px rgba(0, 0, 0, 0.7);
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Barlow', sans-serif;
    background: var(--blue-deep);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* ============ PRELOADER ============ */
  #preloader {
    position: fixed;
    inset: 0;
    background: var(--blue-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
  }

  #preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .preloader-inner {
    text-align: center;
  }

  .preload-logo {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 28px;
    animation: preloadPulse 1.6s ease infinite;
    box-shadow: var(--shadow-gold);
  }

  .hide-mobile {
    display: inline;
  }

  @media (max-width: 700px) {
    .hide-mobile {
      display: none !important;
    }
  }

  @keyframes preloadPulse {

    0%,
    100% {
      opacity: 1;
      transform: scale(1)
    }

    50% {
      opacity: 0.7;
      transform: scale(0.96)
    }
  }

  .preload-bar {
    width: 260px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 1px;
    overflow: hidden;
    margin: 0 auto 16px;
  }

  .preload-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
    background-size: 200% 100%;
    animation: fillBar 2.2s ease forwards, shimmer 1.2s linear infinite;
  }

  @keyframes fillBar {
    from {
      width: 0
    }

    to {
      width: 100%
    }
  }

  @keyframes shimmer {
    0% {
      background-position: 200% 0
    }

    100% {
      background-position: -200% 0
    }
  }

  .preload-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 12px;
    letter-spacing: 5px;
    color: var(--gold);
    opacity: 0.7;
  }

  /* ============ CART SIDEBAR ============ */
  .cart-sidebar {
    position: fixed;
    right: -440px;
    top: 0;
    width: 440px;
    height: 100vh;
    background: linear-gradient(180deg, #0B1A2E 0%, #060E1A 100%);
    border-left: 1px solid var(--border);
    z-index: 2000;
    transition: right 0.45s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
  }

  .cart-sidebar.open {
    right: 0;
  }

  .cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    border-bottom: 1px solid var(--border);
  }

  .cart-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  #cart-count-badge {
    background: var(--red);
    color: white;
    font-size: 11px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 20px;
  }

  .cart-close {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
  }

  .cart-close:hover {
    background: rgba(255, 255, 255, 0.12);
  }

  .cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
  }

  .cart-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    background: var(--gray);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 10px;
    transition: border-color 0.2s;
  }

  .cart-item:hover {
    border-color: var(--border-strong);
  }

  .cart-item img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 6px;
    background: white;
    flex-shrink: 0;
  }

  .cart-item-body {
    flex: 1;
    min-width: 0;
  }

  .cart-item-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.25;
    padding-right: 4px;
  }

  .cart-item-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 12px 18px;
    margin-top: 10px;
  }

  .cart-meta-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .cart-meta-label {
    font-size: 9px;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
  }

  .cart-size-select {
    min-width: 64px;
    padding: 5px 8px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: rgba(4, 9, 15, 0.9);
    color: var(--white-off);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
  }

  .cart-size-select:focus {
    outline: 1px solid var(--gold);
    outline-offset: 1px;
  }

  .cart-size-static {
    font-size: 12px;
    color: var(--text-dim);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    padding: 5px 0;
  }

  .cart-qty-wrap {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    background: rgba(4, 9, 15, 0.5);
  }

  .cart-qty-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: var(--gold);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    transition: background 0.15s;
  }

  .cart-qty-btn:hover {
    background: rgba(201, 168, 76, 0.15);
  }

  .cart-qty-num {
    min-width: 28px;
    padding: 0 4px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Barlow Condensed', sans-serif;
  }

  .cart-item-aside {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    flex-shrink: 0;
  }

  .cart-item-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: var(--gold);
    line-height: 1;
  }

  .cart-line-total {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
  }

  .cart-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 16px;
    padding: 2px 4px;
    transition: color 0.2s;
    line-height: 1;
  }

  .cart-item-remove:hover {
    color: var(--red);
  }

  .cart-footer {
    padding: 20px 28px;
    border-top: 1px solid var(--border);
  }

  .cart-total {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 1px;
  }

  #cart-total-price {
    color: var(--gold);
  }

  .btn-checkout {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #B8922E, var(--gold), #D4AF47);
    border: none;
    color: var(--blue-deep);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 17px;
    letter-spacing: 3px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
  }

  .btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
  }

  .cart-secure {
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  #cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1999;
    display: none;
    backdrop-filter: blur(3px);
  }

  #cart-overlay.visible {
    display: block;
  }

  /* ============ MODALS ============ */
  .country-modal,
  .bonus-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .country-modal.open,
  .bonus-modal.open {
    opacity: 1;
    pointer-events: all;
  }

  .country-modal-inner,
  .bonus-modal-inner {
    background: linear-gradient(160deg, #0E1F35 0%, #07111E 100%);
    border: 1px solid var(--border-strong);
    border-radius: 16px;
    width: min(92vw, 720px);
    max-height: 92vh;
    overflow-y: auto;
    padding: 36px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), var(--shadow-gold);
    animation: modalIn 0.35s cubic-bezier(.34, 1.56, .64, 1);
  }

  @keyframes modalIn {
    from {
      transform: scale(0.88) translateY(24px);
      opacity: 0
    }

    to {
      transform: scale(1) translateY(0);
      opacity: 1
    }
  }

  #modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 2999;
    display: none;
    backdrop-filter: blur(4px);
  }

  #modal-overlay.visible {
    display: block;
  }

  .modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--border);
    color: var(--text-muted);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
  }

  .modal-close:hover {
    background: rgba(255, 255, 255, 0.14);
    color: white;
  }

  .modal-country-header {
    text-align: center;
    margin-bottom: 28px;
  }

  .modal-country-flag {
    font-size: 60px;
    display: block;
    margin-bottom: 10px;
    line-height: 1;
  }

  .modal-country-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    letter-spacing: 3px;
    color: var(--gold);
    text-shadow: 0 0 40px rgba(201, 168, 76, 0.3);
  }

  .modal-jerseys {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .modal-jerseys.modal-jerseys-single {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .modal-jersey-card {
    background: var(--gray);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
  }

  .modal-jersey-card:hover {
    border-color: var(--border-strong);
    background: var(--gold-pale);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
  }

  .modal-jersey-img {
    width: 100%;
    height: 190px;
    object-fit: contain;
    background: white;
    border-radius: 8px;
    margin-bottom: 12px;
  }

  .modal-jersey-type {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 6px;
  }

  .modal-jersey-old {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 6px;
  }

  .modal-jersey-new {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--gold);
  }

  .modal-jersey-stock {
    font-size: 11px;
    color: #FF6B6B;
    margin: 6px 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
  }

  .modal-sizes {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin: 10px 0;
    flex-wrap: wrap;
  }

  .size-btn {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: none;
    color: var(--text-dim);
    padding: 4px 11px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.15s;
  }

  .size-btn:hover,
  .size-btn.active {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--blue-deep);
  }

  .modal-jersey-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
  }

  .modal-jersey-actions .modal-add-btn {
    margin-top: 0;
  }

  .modal-add-btn {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    border-radius: 6px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 15px;
    letter-spacing: 2px;
    color: var(--blue-deep);
    cursor: pointer;
    transition: all 0.2s;
  }

  .modal-add-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
  }

  .modal-add-cart-btn {
    width: 100%;
    padding: 10px 12px;
    background: transparent;
    border: 1px solid var(--border-strong);
    border-radius: 6px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--gold-light);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
  }

  .modal-add-cart-btn:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold);
    color: var(--gold);
  }

  /* ============ NAVBAR ============ */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(4, 9, 15, 0.92);
    backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
  }

  .nav-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 66px;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
  }

  .nav-logo img {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    object-fit: cover;
  }

  .nav-logo span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 19px;
    letter-spacing: 3px;
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .nav-links {
    display: flex;
    gap: 32px;
  }

  .nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    transition: color 0.2s;
    text-transform: uppercase;
  }

  .nav-links a:hover {
    color: var(--gold);
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 2px;
    border-radius: 4px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
  }

  .lang-btn {
    min-width: 34px;
    padding: 5px 8px;
    border: none;
    background: transparent;
    color: var(--text-dim);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 3px;
    transition: color 0.2s, background 0.2s;
  }

  .lang-btn:hover {
    color: var(--gold);
  }

  .lang-btn.active {
    background: rgba(201, 168, 76, 0.18);
    color: var(--gold);
  }

  .nav-promo-tag {
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    padding: 5px 13px;
    border-radius: 3px;
    animation: pulseBadge 2.5s ease infinite;
  }

  @keyframes pulseBadge {

    0%,
    100% {
      box-shadow: 0 0 0 0 rgba(200, 25, 42, 0.4)
    }

    50% {
      box-shadow: 0 0 0 8px rgba(200, 25, 42, 0)
    }
  }

  .cart-btn {
    background: var(--gray);
    border: 1px solid var(--border);
    color: white;
    padding: 9px 18px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all 0.2s;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
  }

  .cart-btn:hover {
    background: var(--gold-pale);
    border-color: var(--border-strong);
  }

  .cart-icon-svg {
    width: 16px;
    height: 16px;
    stroke: white;
    fill: none;
    stroke-width: 2;
  }

  #cart-count {
    background: var(--gold);
    color: var(--blue-deep);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 12px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ============ TRUST BAR ============ */
  .trust-bar {
    position: fixed;
    top: 66px;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #8B6520, var(--gold), #A07A2E, var(--gold-light), #8B6520);
    background-size: 300% 100%;
    animation: goldShimmer 6s linear infinite;
    z-index: 999;
    overflow: hidden;
    height: 34px;
    display: flex;
    align-items: center;
  }

  @keyframes goldShimmer {
    0% {
      background-position: 0% 0
    }

    100% {
      background-position: 300% 0
    }
  }

  .trust-track {
    display: flex;
    gap: 0;
    animation: scrollTrust 35s linear infinite;
    white-space: nowrap;
  }

  .trust-track span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--blue-deep);
    letter-spacing: 1.5px;
    padding: 0 28px;
    border-right: 1px solid rgba(10, 22, 40, 0.2);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .trust-icon {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
  }

  @keyframes scrollTrust {
    from {
      transform: translateX(0)
    }

    to {
      transform: translateX(-50%)
    }
  }

  /* ============ HERO ============ */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
    background: var(--blue-deep);
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 120% 80% at 50% 20%, rgba(20, 85, 164, 0.18) 0%, transparent 65%),
      radial-gradient(ellipse 60% 40% at 80% 70%, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
      radial-gradient(ellipse 60% 40% at 20% 70%, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
  }

  .hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .hero-grid-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
      linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  }

  .stadium-lights {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .light {
    position: absolute;
    width: 1px;
    background: linear-gradient(to bottom, rgba(201, 168, 76, 0.5), rgba(30, 95, 190, 0.2), transparent);
    transform-origin: top center;
  }

  .light.l1 {
    height: 50vh;
    top: 0;
    left: 18%;
    transform: rotate(22deg);
    animation: lightSway 8s ease-in-out infinite;
  }

  .light.l2 {
    height: 42vh;
    top: 0;
    left: 33%;
    transform: rotate(7deg);
    animation: lightSway 10s ease-in-out 1s infinite;
  }

  .light.l3 {
    height: 42vh;
    top: 0;
    right: 33%;
    transform: rotate(-7deg);
    animation: lightSway 9s ease-in-out 2s infinite;
  }

  .light.l4 {
    height: 50vh;
    top: 0;
    right: 18%;
    transform: rotate(-22deg);
    animation: lightSway 11s ease-in-out 0.5s infinite;
  }

  @keyframes lightSway {

    0%,
    100% {
      opacity: 0.6;
      transform-origin: top;
    }

    50% {
      opacity: 1;
    }
  }

  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 28px;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 5px;
    line-height: 1.5;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
    padding: 6px 20px;
    border-radius: 20px;
    background: rgba(201, 168, 76, 0.05);
  }

  .eyebrow-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: blink 1.2s ease infinite;
  }

  @keyframes blink {

    0%,
    100% {
      opacity: 1
    }

    50% {
      opacity: 0.2
    }
  }

  /* CINEMATIC TEXT */
  .hero-cinema {
    margin-bottom: 36px;
  }

  .cinema-line {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(15px, 2.2vw, 21px);
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.72);
    opacity: 0;
    transform: translateY(14px);
    animation: cinemaIn 0.8s ease forwards;
  }

  .cinema-line.bold-line {
    font-weight: 700;
    color: white;
    font-size: clamp(17px, 2.5vw, 24px);
    letter-spacing: 0.5px;
  }

  .cinema-line.gold-line {
    color: var(--gold);
    font-weight: 600;
    font-size: clamp(16px, 2.3vw, 22px);
  }

  .cinema-line.spacer {
    height: 14px;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .cinema-line:nth-child(1) {
    animation-delay: 0.3s
  }

  .cinema-line:nth-child(2) {
    animation-delay: 0.5s
  }

  .cinema-line:nth-child(3) {
    animation-delay: 0.7s
  }

  .cinema-line:nth-child(4) {
    animation-delay: 0.9s
  }

  .cinema-line:nth-child(5) {
    animation-delay: 1.0s
  }

  .cinema-line:nth-child(6) {
    animation-delay: 1.1s
  }

  .cinema-line:nth-child(7) {
    animation-delay: 1.2s
  }

  .cinema-line:nth-child(8) {
    animation-delay: 1.3s
  }

  .cinema-line:nth-child(9) {
    animation-delay: 1.4s
  }

  .cinema-line:nth-child(10) {
    animation-delay: 1.5s
  }

  @keyframes cinemaIn {
    to {
      opacity: 1;
      transform: translateY(0)
    }
  }

  .hero-title-block {
    margin-bottom: 32px;
  }

  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(64px, 11vw, 140px);
    line-height: 0.88;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #fff 20%, var(--gold-light) 50%, #fff 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 4s linear infinite;
  }

  .hero-title .year {
    font-size: clamp(72px, 13vw, 160px);
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 40%, var(--gold) 60%, var(--gold-dark) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 3s linear infinite;
    display: block;
    filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.3));
  }

  @keyframes textShimmer {
    0% {
      background-position: 0%
    }

    100% {
      background-position: 200%
    }
  }

  .hero-tagline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--text-dim);
    margin-bottom: 0;
    font-style: italic;
  }

  /* Carousel — défilement horizontal, cartes uniformes */
  .hero-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 28px 0;
    position: relative;
    z-index: 4;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 4px;
  }

  .hero-carousel-scroll {
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    mask-image: linear-gradient(90deg, transparent 0%, #000 2%, #000 98%, transparent 100%);
  }

  .hero-carousel-scroll::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  .hero-carousel {
    display: flex;
    gap: 16px;
    align-items: stretch;
    padding: 10px 8px 14px;
    width: max-content;
    min-height: 210px;
  }

  .hero-carousel-nav {
    flex-shrink: 0;
    position: relative;
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(4, 9, 15, 0.92);
    color: var(--gold);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .hero-carousel-nav:hover {
    background: rgba(201, 168, 76, 0.12);
    border-color: var(--border-strong);
  }

  .hero-carousel-nav:active {
    transform: scale(0.94);
  }

  button.carousel-jersey {
    appearance: none;
    font: inherit;
    color: inherit;
    text-align: left;
    padding: 0;
    margin: 0;
    cursor: pointer;
  }

  .carousel-jersey {
    width: 170px;
    height: 210px;
    flex-shrink: 0;
    scroll-snap-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
    opacity: 1;
    transform: none;
  }

  .carousel-jersey:hover {
    border-color: var(--border-strong);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
  }

  .carousel-jersey:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
  }

  .carousel-jersey img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    pointer-events: none;
  }

  .carousel-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    padding: 18px 8px 8px;
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 25px;
    letter-spacing: 2px;
    color: var(--gold);
    pointer-events: none;
  }

  /* Countdown */
  .countdown-block {
    display: inline-block;
    padding: 18px 36px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 32px;
  }

  .countdown-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 14px;
    text-transform: uppercase;
  }

  .countdown-timers {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
  }

  .timer-unit {
    text-align: center;
  }

  .timer-unit span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 44px;
    line-height: 1;
    color: white;
    display: block;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px 14px;
    min-width: 74px;
    font-variant-numeric: tabular-nums;
  }

  .timer-unit small {
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--gold);
    margin-top: 5px;
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
  }

  .timer-sep {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    color: var(--gold);
    margin-bottom: 14px;
  }

  .hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .btn-primary {
    background: linear-gradient(135deg, #9A6E1A, var(--gold), var(--gold-light), var(--gold));
    background-size: 200% auto;
    color: var(--blue-deep);
    padding: 16px 44px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 17px;
    letter-spacing: 3px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 6px 24px rgba(201, 168, 76, 0.3);
  }

  .btn-primary:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
  }

  .btn-secondary {
    background: transparent;
    color: var(--text-dim);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 44px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 17px;
    letter-spacing: 3px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s;
  }

  .btn-secondary:hover {
    border-color: var(--border-strong);
    color: var(--gold);
    transform: translateY(-3px);
  }

  /* Live notifs */
  .live-notifs {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 500;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
  }

  .notif-item {
    background: rgba(4, 9, 15, 0.96);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    padding: 11px 16px;
    border-radius: 6px;
    font-size: 12px;
    max-width: 310px;
    backdrop-filter: blur(8px);
    animation: slideInNotif 0.4s ease, fadeOutNotif 0.4s ease 4.6s forwards;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.3px;
  }

  @keyframes slideInNotif {
    from {
      transform: translateX(-110%);
      opacity: 0
    }

    to {
      transform: translateX(0);
      opacity: 1
    }
  }

  @keyframes fadeOutNotif {
    to {
      opacity: 0;
      transform: translateX(-110%)
    }
  }

  /* ============ STARS TEASER ============ */
  .stars-teaser {
    background: linear-gradient(135deg, #060E1B, var(--blue-mid));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
    overflow: hidden;
  }

  .stars-teaser-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: teaserScroll 55s linear infinite;
  }

  .stars-teaser-track:hover {
    animation-play-state: paused;
  }

  @keyframes teaserScroll {
    from {
      transform: translateX(0)
    }

    to {
      transform: translateX(-50%)
    }
  }

  .teaser-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 36px;
    border-right: 1px solid var(--border);
    flex-shrink: 0;
  }

  .teaser-img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border);
  }

  .teaser-info {}

  .teaser-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 17px;
    letter-spacing: 2px;
    color: var(--gold);
  }

  .teaser-sub {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 1px;
  }

  .teaser-text-divider {
    padding: 0 36px;
    flex-shrink: 0;
    border-right: 1px solid var(--border);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(18px, 3vw, 26px);
    letter-spacing: 2px;
    color: white;
  }

  .teaser-text-divider .gold {
    color: var(--gold);
  }

  /* ============ SECTION HEADERS ============ */
  .section-header {
    text-align: center;
    padding: 70px 28px 44px;
    max-width: 760px;
    margin: 0 auto;
  }

  .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--gold);
    border: 1px solid var(--border);
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 14px;
    text-transform: uppercase;
    background: rgba(201, 168, 76, 0.05);
  }

  .section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(34px, 5vw, 58px);
    letter-spacing: 2px;
    color: white;
    margin-bottom: 10px;
    line-height: 1;
  }

  .section-header p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
  }

  /* ============ HEAT MAP ============ */
  .heatmap-section {
    background: var(--blue-deep);
    padding-bottom: 90px;
  }

  .heatmap-wrapper {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 28px;
  }

  .heatmap-map {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    align-items: start;
  }

  /* WORLD MAP SVG */
  .map-container {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(180deg, #060F1D 0%, #03080F 100%);
    box-shadow: inset 0 0 60px rgba(20, 85, 164, 0.08);
  }

  .map-ocean-label {
    position: absolute;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: rgba(30, 80, 160, 0.35);
    text-transform: uppercase;
    pointer-events: none;
  }

  .ocean-atlantic {
    top: 48%;
    left: 28%;
  }

  .ocean-pacific {
    top: 42%;
    left: 12%;
  }

  .ocean-indian {
    top: 52%;
    left: 64%;
  }

  .world-svg {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Continent fills */
  .land-base {
    fill: #0D1F35;
    stroke: rgba(30, 80, 140, 0.4);
    stroke-width: 0.5;
  }

  .land-qualified {
    fill: #0D3D20;
    stroke: rgba(0, 200, 80, 0.4);
    stroke-width: 0.8;
    cursor: pointer;
    transition: fill 0.3s;
    animation: qualGlow 3s ease-in-out infinite;
  }

  .land-qualified:hover {
    fill: #1A6335;
  }

  @keyframes qualGlow {

    0%,
    100% {
      stroke-opacity: 0.4;
      filter: drop-shadow(0 0 0 rgba(0, 200, 80, 0))
    }

    50% {
      stroke-opacity: 0.8;
      filter: drop-shadow(0 0 4px rgba(0, 200, 80, 0.3))
    }
  }

  .country-dot {
    cursor: pointer;
    transition: all 0.3s;
    animation: dotPulse 2.5s ease-in-out infinite;
  }

  .country-dot circle {
    fill: #1A8C40;
    stroke: rgba(0, 255, 80, 0.6);
    stroke-width: 1.5;
  }

  .country-dot:hover circle {
    fill: #22AA50;
  }

  .country-dot.hot circle {
    fill: var(--gold);
    stroke: rgba(201, 168, 76, 0.7);
    animation: hotPulse 1.5s ease infinite;
  }

  @keyframes dotPulse {

    0%,
    100% {
      opacity: 0.8
    }

    50% {
      opacity: 1
    }
  }

  @keyframes hotPulse {

    0%,
    100% {
      transform: scale(1);
      opacity: 0.9
    }

    50% {
      transform: scale(1.2);
      opacity: 1
    }
  }

  .rank-badge {
    font-family: 'Bebas Neue', sans-serif;
    fill: white;
    font-size: 9px;
    pointer-events: none;
  }

  /* Tooltip */
  .map-tooltip {
    position: absolute;
    background: rgba(4, 9, 15, 0.97);
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    padding: 14px 18px;
    pointer-events: none;
    z-index: 100;
    min-width: 200px;
    display: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 16px rgba(201, 168, 76, 0.1);
    animation: tooltipIn 0.2s ease;
  }

  @keyframes tooltipIn {
    from {
      opacity: 0;
      transform: translateY(6px)
    }

    to {
      opacity: 1;
      transform: translateY(0)
    }
  }

  .map-tooltip.visible {
    display: block;
  }

  .tooltip-country {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .tooltip-stat {
    font-size: 12px;
    color: var(--text-dim);
    margin-bottom: 4px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
  }

  .tooltip-stat span:last-child {
    color: white;
    font-weight: 600;
  }

  .tooltip-trend {
    font-size: 11px;
    color: #4CAF50;
    font-weight: 700;
    margin-top: 6px;
    font-family: 'Barlow Condensed', sans-serif;
  }

  /* Airport ranking */
  .heatmap-ranking {
    background: var(--gray);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
  }

  .ranking-header {
    background: linear-gradient(135deg, #08142A, #0B1A2E);
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .ranking-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 3px;
    color: var(--gold);
  }

  .ranking-live-badge {
    background: var(--red);
    color: white;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 3px 8px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .ranking-cols {
    display: grid;
    grid-template-columns: 36px 24px 1fr 60px 52px;
    padding: 8px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
  }

  .rank-item {
    display: grid;
    grid-template-columns: 36px 24px 1fr 60px 52px;
    align-items: center;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.2s;
    cursor: default;
    animation: rankFlip 0.6s ease;
  }

  @keyframes rankFlip {
    from {
      opacity: 0;
      transform: rotateX(-30deg)
    }

    to {
      opacity: 1;
      transform: rotateX(0)
    }
  }

  .rank-item:hover {
    background: rgba(201, 168, 76, 0.04);
  }

  .rank-pos {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: var(--text-muted);
  }

  .rank-item.pos-1 .rank-pos {
    color: var(--gold);
  }

  .rank-item.pos-2 .rank-pos {
    color: #C0C0C0;
  }

  .rank-item.pos-3 .rank-pos {
    color: #CD7F32;
  }

  .rank-flag {
    font-size: 16px;
  }

  .rank-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
  }

  .rank-score {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    color: var(--gold);
    text-align: right;
  }

  .rank-trend {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-align: right;
  }

  .trend-up {
    color: #4CAF50;
  }

  .trend-down {
    color: #F44336;
  }

  .trend-flat {
    color: var(--text-muted);
  }

  .live-bubble {
    margin: 12px 16px;
    padding: 12px 14px;
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 12px;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.3px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    animation: bubblePop 0.4s ease;
  }

  .live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
    margin-top: 3px;
    animation: blink 1s ease infinite;
  }

  @keyframes bubblePop {
    from {
      transform: scale(0.9);
      opacity: 0
    }

    to {
      transform: scale(1);
      opacity: 1
    }
  }

  /* ============ COUNTRIES GRID ============ */
  .countries-section {
    background: var(--blue-deep);
    padding-bottom: 90px;
  }

  .countries-grid {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
    gap: 10px;
  }

  .country-card {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 14px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
  }

  .country-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.06), transparent);
    opacity: 0;
    transition: opacity 0.25s;
  }

  .country-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 16px rgba(201, 168, 76, 0.1);
  }

  .country-card:hover::after {
    opacity: 1;
  }

  .country-flag {
    font-size: 32px;
    display: block;
    margin-bottom: 7px;
    line-height: 1;
  }

  .country-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: white;
    margin-bottom: 5px;
    line-height: 1.2;
  }

  .country-promo {
    font-size: 11px;
    color: #FF6B6B;
    font-weight: 700;
    font-family: 'Barlow Condensed', sans-serif;
  }

  .country-stock {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 3px;
    font-family: 'Barlow', sans-serif;
  }

  /* ============ PRODUCTS ============ */
  .products-section {
    background: linear-gradient(180deg, var(--blue-deep), var(--blue-mid));
    padding-bottom: 90px;
  }

  .products-grid {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
  }

  .product-card {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .product-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), var(--shadow-gold);
  }

  .product-badge-promo {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: var(--red);
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 1.5px;
    padding: 3px 10px;
    border-radius: 3px;
  }

  .product-badge-stock {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    background: rgba(4, 9, 15, 0.85);
    color: #FF6B6B;
    border: 1px solid rgba(255, 107, 107, 0.3);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.5px;
  }

  .product-img-wrap {
    height: 220px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.45s ease;
  }

  .product-card:hover .product-img-wrap img {
    transform: scale(1.06);
  }

  .product-info {
    padding: 18px;
  }

  .product-country {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 19px;
    letter-spacing: 1.5px;
  }

  .product-type {
    font-size: 11px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-family: 'Barlow Condensed', sans-serif;
  }

  .product-stars {
    color: var(--gold);
    font-size: 12px;
    margin-bottom: 8px;
  }

  .product-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
  }

  .product-old-price {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
  }

  .product-new-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    color: var(--gold);
    line-height: 1;
  }

  .product-delivery {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .product-delivery svg {
    width: 12px;
    height: 12px;
    stroke: var(--text-muted);
  }

  .product-delivery span {
    color: var(--text-dim);
  }

  .btn-add-cart {
    width: 100%;
    padding: 11px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border: none;
    border-radius: 5px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--blue-deep);
    cursor: pointer;
    transition: all 0.2s;
  }

  .btn-add-cart:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
  }

  /* ============ PROMO BUTTON ============ */
  .promo-btn-section {
    background: var(--blue-deep);
    padding: 90px 28px;
    text-align: center;
  }

  .promo-btn-wrapper {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .promo-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--gold);
    text-transform: uppercase;
  }

  .btn-promo-round {
    position: relative;
    width: 196px;
    height: 196px;
    border-radius: 50%;
    background: radial-gradient(circle at 38% 38%, #FF3333, #CC0000, #880000);
    border: none;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(200, 25, 42, 0.4);
    transition: all 0.3s ease;
    overflow: visible;
  }

  .btn-promo-round:hover {
    transform: scale(1.06);
    box-shadow: 0 0 50px rgba(200, 25, 42, 0.5), 0 0 100px rgba(200, 25, 42, 0.2);
  }

  .btn-promo-round.used {
    background: radial-gradient(circle, #333, #222, #111);
    cursor: not-allowed;
    opacity: 0.6;
    transform: none !important;
    box-shadow: none !important;
  }

  .promo-btn-text {
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.4;
    position: relative;
    z-index: 2;
  }

  .promo-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(200, 25, 42, 0.5);
    animation: promoRing 2s ease infinite;
  }

  .promo-ring.r1 {
    inset: -14px;
    animation-delay: 0s;
  }

  .promo-ring.r2 {
    inset: -28px;
    animation-delay: 0.4s;
    border-color: rgba(200, 25, 42, 0.3);
  }

  @keyframes promoRing {
    0% {
      transform: scale(1);
      opacity: 1
    }

    100% {
      transform: scale(1.25);
      opacity: 0
    }
  }

  .promo-countdown-label {
    font-size: 12px;
    color: var(--text-muted);
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 1px;
  }

  #promoCountdown {
    color: #FF6B6B;
    font-weight: 700;
  }

  /* Popup maillot mis en avant */
  .featured-jersey-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  .featured-jersey-modal.open {
    opacity: 1;
    pointer-events: all;
  }

  .featured-jersey-backdrop {
    position: absolute;
    inset: 0;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    background: rgba(2, 5, 8, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .featured-jersey-inner {
    position: relative;
    z-index: 1;
    width: min(820px, 96vw);
    max-height: min(92vh, 900px);
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    text-align: center;
    background: linear-gradient(165deg, #0f2238 0%, #060d18 55%, #04090f 100%);
    border: 1px solid rgba(201, 168, 76, 0.45);
    border-radius: 18px;
    box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.08), 0 32px 80px rgba(0, 0, 0, 0.75), 0 0 60px rgba(201, 168, 76, 0.12);
    animation: featuredJerseyIn 0.55s cubic-bezier(.34, 1.35, .64, 1) both;
  }

  @keyframes featuredJerseyIn {
    from {
      transform: scale(0.9) translateY(28px);
      opacity: 0;
    }

    to {
      transform: scale(1) translateY(0);
      opacity: 1;
    }
  }

  .featured-jersey-close {
    top: 14px;
    right: 14px;
    z-index: 5;
  }

  .featured-jersey-header {
    padding: 36px 32px 20px;
    position: relative;
    z-index: 2;
  }

  .featured-jersey-footer {
    padding: 24px 32px 32px;
    position: relative;
    z-index: 2;
  }

  .featured-jersey-tag {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.35);
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 14px;
    background: rgba(201, 168, 76, 0.08);
  }

  .featured-jersey-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 8vw, 44px);
    letter-spacing: 3px;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 8px;
    text-shadow: 0 0 40px rgba(201, 168, 76, 0.25);
  }

  .featured-jersey-sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dim);
    line-height: 1.5;
    margin-bottom: 0;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .featured-jersey-visual {
    position: relative;
    width: 100%;
    margin: 0;
    z-index: 1;
  }

  .featured-jersey-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 70% at 50% 40%, rgba(201, 168, 76, 0.22) 0%, transparent 65%);
    filter: blur(24px);
    pointer-events: none;
    animation: featuredGlowPulse 3s ease-in-out infinite;
  }

  @keyframes featuredGlowPulse {

    0%,
    100% {
      opacity: 0.55;
    }

    50% {
      opacity: 1;
    }
  }

  .featured-jersey-img-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: #0a0c10;
    overflow: hidden;
    line-height: 0;
  }

  .featured-jersey-img-wrap img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 220px;
    max-height: min(52vh, 560px);
    object-fit: cover;
    object-position: center center;
  }

  .featured-jersey-cta {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 14px 22px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 3px;
    color: var(--blue-deep);
    background: linear-gradient(135deg, #9a6e1a, var(--gold), var(--gold-light));
    box-shadow: 0 8px 28px rgba(201, 168, 76, 0.35);
    transition: transform 0.2s, filter 0.2s;
  }

  .featured-jersey-cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
  }

  /* Bonus modal */
  .bonus-modal-inner {
    max-width: 500px;
    text-align: center;
  }

  .bonus-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 6px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .bonus-icon {
    font-size: 52px;
    margin-bottom: 14px;
    display: block;
  }

  .bonus-reward {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px;
    color: var(--red);
    margin-bottom: 16px;
    letter-spacing: 2px;
  }

  .bonus-img-wrap {
    width: 160px;
    height: 180px;
    background: white;
    border-radius: 10px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-strong);
    overflow: hidden;
  }

  .bonus-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .bonus-message {
    background: rgba(201, 168, 76, 0.07);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px;
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Barlow', sans-serif;
  }

  .bonus-tomorrow {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 12px;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 1px;
  }

  /* ============ STARS SECTION — LUXE ============ */
  .stars-section {
    background: linear-gradient(180deg, #030609 0%, #060E18 100%);
    padding-bottom: 90px;
    position: relative;
    overflow: hidden;
  }

  .stars-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
  }

  .stars-section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 20px;
    padding: 0 28px;
  }

  .stars-intro-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-style: italic;
    font-size: 18px;
    font-weight: 300;
    line-height: 2;
    color: var(--text-dim);
  }

  .stars-intro-text em {
    font-style: normal;
    color: var(--gold);
    font-weight: 600;
  }

  .stars-rule {
    margin: 24px auto;
    max-width: 680px;
    padding: 18px 24px;
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-dim);
  }

  .stars-rule strong {
    color: var(--gold);
  }

  .stars-grid {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
  }

  .star-card {
    background: linear-gradient(160deg, #0E1D2F 0%, #07101A 100%);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 18px;
    padding: 22px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.35s ease;
  }

  .star-card::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -40%;
    width: 180%;
    height: 180%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
  }

  .star-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-9px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.65), 0 0 40px rgba(201, 168, 76, 0.15);
  }

  .star-card:hover::before {
    opacity: 1;
  }

  .star-collector-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--blue-deep);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    padding: 3px 10px;
    border-radius: 3px;
  }

  .star-rarity {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
  }

  .star-rarity-count {
    font-size: 10px;
    color: #FF6B6B;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    margin-top: 3px;
    text-align: right;
  }

  .star-img-wrap {
    height: 210px;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin: 34px 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .star-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .star-halo {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201, 168, 76, 0.12), transparent 70%);
    pointer-events: none;
  }

  .star-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 2px;
    text-align: center;
    color: white;
    text-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
  }

  .star-country {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 5px;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 1px;
  }

  .star-signature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    color: var(--gold);
    margin-bottom: 14px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
  }

  .star-price-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
  }

  .star-old {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
  }

  .star-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px;
    color: var(--gold);
    line-height: 1;
  }

  .btn-star {
    width: 100%;
    padding: 11px;
    background: transparent;
    border: 1px solid var(--border-strong);
    color: var(--gold);
    border-radius: 5px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.2s;
  }

  .btn-star:hover {
    background: var(--gold-pale);
  }

  /* PLAYERS SHOWCASE */
  .players-showcase {
    max-width: 1260px;
    margin: 48px auto 0;
    padding: 0 28px;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .player-photo {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .player-photo img {
    width: 190px;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s;
    filter: saturate(0.9);
  }

  .player-photo:hover img {
    transform: scale(1.05);
    filter: saturate(1.1);
  }

  .player-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88), transparent);
    padding: 22px 12px 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-align: center;
    color: var(--gold);
  }

  /* ============ TICKETS — LUXE ============ */
  .tickets-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #080F1A 0%, #0D1E35 50%, #060D16 100%);
    padding: 90px 28px;
    border-top: 1px solid var(--border);
  }

  .tickets-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(20, 85, 164, 0.06) 0%, transparent 70%);
  }

  .tickets-inner {
    max-width: 1060px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 60px;
    align-items: center;
  }

  .tickets-left {
    text-align: center;
  }

  .tickets-logo {
    width: 150px;
    border-radius: 12px;
    display: block;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-gold);
  }

  .ticket-visual {
    display: inline-block;
    padding: 12px 22px;
    background: linear-gradient(135deg, rgba(20, 85, 164, 0.3), rgba(201, 168, 76, 0.1));
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--gold);
  }

  .tickets-right .section-tag {
    margin-bottom: 10px;
  }

  .tickets-right h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 4vw, 46px);
    letter-spacing: 2px;
    margin-bottom: 10px;
    line-height: 1;
  }

  .tickets-right .tagline {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-style: italic;
  }

  .tickets-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
  }

  .ticket-block {
    background: var(--gray);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px;
  }

  .ticket-block-icon {
    font-size: 20px;
    margin-bottom: 6px;
    display: block;
  }

  .ticket-block-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: white;
    margin-bottom: 3px;
  }

  .ticket-block-text {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
  }

  .tickets-countdown {
    margin-bottom: 24px;
  }

  .tickets-countdown-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .btn-tickets {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--blue-deep);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 3px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.25s;
    border: none;
    cursor: pointer;
  }

  .btn-tickets:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    filter: brightness(1.08);
  }

  .btn-tickets svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform 0.2s;
  }

  .btn-tickets:hover svg {
    transform: translateX(4px);
  }

  /* ============ DELIVERY ============ */
  .delivery-section {
    background: var(--blue-deep);
    padding: 70px 28px;
    border-top: 1px solid var(--border);
    text-align: center;
  }

  .delivery-track {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto 32px;
    gap: 0;
  }

  .delivery-icon {
    font-size: 30px;
    flex-shrink: 0;
  }

  .delivery-path {
    flex: 1;
    height: 2px;
    background: var(--border);
    position: relative;
    overflow: visible;
    margin: 0 10px;
  }

  .delivery-truck {
    position: absolute;
    top: -16px;
    font-size: 28px;
    animation: truckRide 4s linear infinite;
  }

  @keyframes truckRide {
    0% {
      left: 0
    }

    100% {
      left: calc(100% - 28px)
    }
  }

  .delivery-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

  .delivery-content p {
    color: var(--text-dim);
    max-width: 480px;
    margin: 0 auto 24px;
    font-size: 15px;
    line-height: 1.7;
  }

  .delivery-countries {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .delivery-countries span {
    background: var(--gray);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-dim);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
  }

  /* ============ REVIEWS ============ */
  .reviews-section {
    background: linear-gradient(180deg, var(--blue-mid), var(--blue-deep));
    padding-bottom: 90px;
    overflow: hidden;
  }

  .reviews-overall {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
  }

  .stars-big {
    color: var(--gold);
    font-size: 20px;
    letter-spacing: 2px;
  }

  .rating-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px;
    color: var(--gold);
    line-height: 1;
  }

  .rating-count {
    font-size: 13px;
    color: var(--text-muted);
    font-family: 'Barlow Condensed', sans-serif;
  }

  .rating-google-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    color: var(--text-muted);
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 1px;
  }

  .reviews-track-wrapper {
    overflow: hidden;
    padding: 20px 0;
  }

  .reviews-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: scrollReviews 40s linear infinite;
  }

  .reviews-track:hover {
    animation-play-state: paused;
  }

  @keyframes scrollReviews {
    from {
      transform: translateX(0)
    }

    to {
      transform: translateX(-50%)
    }
  }

  .review-card {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 20px;
    width: 290px;
    flex-shrink: 0;
    transition: border-color 0.2s;
  }

  .review-card:hover {
    border-color: var(--border);
  }

  .review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
  }

  .review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold-dark), var(--blue-bright));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 15px;
  }

  .review-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
  }

  .review-country {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 1px;
  }

  .review-stars {
    color: var(--gold);
    font-size: 11px;
    margin-bottom: 8px;
    letter-spacing: 2px;
  }

  .review-text {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.5;
    font-style: italic;
  }

  .review-google {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.5px;
  }

  /* ============ BADGE ============ */
  .badge-section {
    background: linear-gradient(135deg, #030608, #07111E);
    padding: 80px 28px;
    border-top: 1px solid var(--border);
  }

  .badge-inner {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 56px;
    align-items: center;
  }

  .badge-seal {
    width: 220px;
    height: 220px;
    position: relative;
    margin: 0 auto;
  }

  .badge-outer {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    padding: 5px;
    background: conic-gradient(var(--gold-dark), var(--gold-light), var(--gold), var(--gold-dark), var(--gold-light), var(--gold-dark));
    animation: sealSpin 10s linear infinite;
    box-shadow: var(--shadow-gold);
  }

  @keyframes sealSpin {
    from {
      transform: rotate(0)
    }

    to {
      transform: rotate(360deg)
    }
  }

  .badge-mid {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #030608;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .badge-content {
    text-align: center;
  }

  .badge-star-icon {
    font-size: 24px;
    margin-bottom: 4px;
    display: block;
  }

  .badge-title-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 19px;
    letter-spacing: 2px;
    color: var(--gold);
    line-height: 1;
  }

  .badge-sub-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: white;
  }

  .badge-year-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    color: var(--gold);
  }

  .badge-org {
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-family: 'Barlow Condensed', sans-serif;
  }

  .badge-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 12px;
  }

  .badge-text p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 22px;
    font-size: 14px;
  }

  .badge-feats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .badge-feat {
    background: var(--gold-pale);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--gold);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  /* ============ GUARANTEES ============ */
  .guarantees-section {
    background: var(--blue-deep);
    padding-bottom: 90px;
    border-top: 1px solid var(--border);
  }

  .guarantees-grid {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
  }

  .guarantee-card {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 26px;
    text-align: center;
    transition: all 0.25s;
  }

  .guarantee-card:hover {
    border-color: var(--border);
    background: var(--gold-pale);
    transform: translateY(-4px);
  }

  .g-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 14px;
  }

  .guarantee-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 17px;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 8px;
  }

  .guarantee-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
  }

  /* ============ FOOTER ============ */
  .footer {
    background: #020508;
    border-top: 1px solid var(--border);
    padding: 44px 28px;
  }

  .footer-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 12px;
  }

  .footer-logo img {
    width: 34px;
    height: 34px;
    border-radius: 5px;
  }

  .footer-logo span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 17px;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .footer-tagline {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-style: italic;
  }

  .footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .footer-links a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.2s;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
  }

  .footer-links a:hover {
    color: var(--gold);
  }

  .footer-copy {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 0.5px;
  }

  /* ============ CONFETTI ============ */
  #confetti-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9000;
    overflow: hidden;
  }

  .confetti-piece {
    position: absolute;
    animation: confettiFall linear forwards;
  }

  @keyframes confettiFall {
    0% {
      transform: translateY(-20px) rotate(0deg);
      opacity: 1
    }

    100% {
      transform: translateY(110vh) rotate(720deg);
      opacity: 0
    }
  }

  /* ============ UTILS ============ */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(18px)
    }

    to {
      opacity: 1;
      transform: translateY(0)
    }
  }

  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ============ RESPONSIVE ============ */
  @media(max-width:1100px) {
    .heatmap-map {
      grid-template-columns: 1fr;
    }

    .heatmap-ranking {
      max-width: 520px;
      margin: 0 auto;
    }

    .tickets-inner {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .tickets-blocks {
      grid-template-columns: 1fr 1fr;
    }

    .badge-inner {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .badge-seal {
      margin-bottom: 32px;
    }
  }

  @media(max-width:768px) {
    .nav-links {
      display: none;
    }

    .hero-title {
      font-size: clamp(52px, 14vw, 90px);
    }

    .hero-carousel {
      min-height: 160px;
    }

    .carousel-jersey {
      width: 130px;
      height: 160px;
    }

    .hero-carousel-nav {
      width: 34px;
      height: 34px;
      font-size: 18px;
    }

    .countdown-timers {
      gap: 5px;
    }

    .timer-unit span {
      font-size: 32px;
      min-width: 56px;
      padding: 5px 10px;
    }

    .modal-jerseys {
      grid-template-columns: 1fr;
    }

    .cart-sidebar {
      width: 100vw;
      right: -100vw;
    }

    .players-showcase {
      justify-content: flex-start;
    }

    .tickets-blocks {
      grid-template-columns: 1fr;
    }

    .badges {
      flex-direction: column;
      align-items: center;
    }
  }

  @media(max-width:480px) {
    .hero-btns {
      flex-direction: column;
      align-items: center;
    }

    .btn-primary,
    .btn-secondary {
      width: 100%;
      max-width: 290px;
      text-align: center;
    }

    .countries-grid {
      grid-template-columns: repeat(auto-fill, minmax(115px, 1fr));
    }
  }

  /* ============================================================
 V3 ADDITIONS — Versus Section + Hero paragraph + Carousel
 ============================================================ */

  /* HERO CINEMA — fluid paragraph */
  .cinema-paragraph {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(17px, 2.4vw, 23px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.75);
    max-width: 780px;
    margin: 0 auto 32px;
    text-align: center;
    letter-spacing: 0.4px;
    opacity: 0;
    animation: cinemaIn 1.2s ease 0.4s forwards;
  }

  /* CAROUSEL — bigger, more visible */
  .hero-carousel {
    min-height: 250px;
  }

  .carousel-jersey {
    width: 200px !important;
    height: 250px !important;
    background: white !important;
  }

  .carousel-jersey img {
    object-fit: contain !important;
    object-position: center !important;
    padding: 8px;
  }

  .carousel-jersey:hover {
    box-shadow: 0 0 28px rgba(201, 168, 76, 0.25), 0 16px 44px rgba(0, 0, 0, 0.45) !important;
  }

  /* ============================================================
 VERSUS SECTION
 ============================================================ */
  .versus-section {
    background: linear-gradient(180deg, #020508 0%, #050D1A 40%, #03070E 100%);
    padding: 80px 0 60px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    position: relative;
  }

  .versus-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(20, 85, 164, 0.05) 0%, transparent 70%);
    pointer-events: none;
  }

  .versus-header {
    text-align: center;
    padding-bottom: 40px;
  }

  .versus-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(30px, 5vw, 54px);
    letter-spacing: 2px;
    color: white;
    margin-top: 10px;
  }

  .versus-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  .versus-duel {
    display: grid;
    grid-template-columns: 1fr 180px 1fr;
    align-items: center;
    gap: 0;
    position: relative;
  }

  .versus-duel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
    pointer-events: none;
  }

  .versus-player {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .left-player {
    align-items: flex-end;
  }

  .right-player {
    align-items: flex-start;
  }

  .vp-img-wrap {
    position: relative;
    width: 240px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
  }

  .vp-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: saturate(1.1) contrast(1.05);
    transition: transform 0.5s ease;
  }

  .vp-img-wrap:hover img {
    transform: scale(1.04);
  }

  .vp-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 50% 90%, rgba(201, 168, 76, 0.2) 0%, transparent 60%);
  }

  .left-glow {
    background: radial-gradient(circle at 80% 50%, rgba(201, 168, 76, 0.18) 0%, transparent 60%);
  }

  .right-glow {
    background: radial-gradient(circle at 20% 50%, rgba(201, 168, 76, 0.18) 0%, transparent 60%);
  }

  .blue-glow {
    background: radial-gradient(circle at 80% 50%, rgba(0, 120, 255, 0.15) 0%, transparent 60%) !important;
  }

  .orange-glow {
    background: radial-gradient(circle at 20% 50%, rgba(255, 160, 0, 0.15) 0%, transparent 60%) !important;
  }

  .vp-info {
    text-align: center;
    margin-top: 14px;
  }

  .vp-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 3px;
    color: white;
  }

  .vp-nation {
    font-size: 14px;
    color: var(--text-muted);
    margin: 3px 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
  }

  .vp-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--gold);
    letter-spacing: 2px;
  }

  /* CENTER */
  .versus-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 8px;
    position: relative;
  }

  .vs-trophy {
    position: relative;
    width: 80px;
    animation: trophyFloat 3s ease-in-out infinite;
  }

  @keyframes trophyFloat {

    0%,
    100% {
      transform: translateY(0)
    }

    50% {
      transform: translateY(-8px)
    }
  }

  .trophy-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.3) 0%, transparent 70%);
    animation: glowPulse 2s ease-in-out infinite;
  }

  @keyframes glowPulse {

    0%,
    100% {
      opacity: 0.6
    }

    50% {
      opacity: 1
    }
  }

  .trophy-svg {
    width: 80px;
    height: 120px;
    filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.6));
  }

  .vs-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    letter-spacing: 4px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.4));
    animation: vsShake 4s ease-in-out infinite;
  }

  @keyframes vsShake {

    0%,
    100% {
      transform: scale(1)
    }

    50% {
      transform: scale(1.06)
    }
  }

  .vs-lightning {
    display: flex;
    gap: 4px;
  }

  .bolt {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.8), transparent);
    border-radius: 1px;
    animation: boltFlash 1.5s ease-in-out infinite;
  }

  .bolt.b1 {
    animation-delay: 0s;
    height: 24px;
  }

  .bolt.b2 {
    animation-delay: 0.2s;
    height: 32px;
  }

  .bolt.b3 {
    animation-delay: 0.4s;
    height: 20px;
  }

  @keyframes boltFlash {

    0%,
    100% {
      opacity: 0.2
    }

    50% {
      opacity: 1
    }
  }

  .vs-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
    text-align: center;
  }

  .vs-next-gen {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 3px;
    color: #7EB3FF;
    border: 1px solid rgba(126, 179, 255, 0.3);
    padding: 3px 10px;
    border-radius: 3px;
  }

  /* STARS ROW */
  .stars-row-showcase {
    max-width: 1300px;
    margin: 48px auto 0;
    padding: 0 24px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .stars-row-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    flex-shrink: 0;
    transition: all 0.3s ease;
  }

  .stars-row-item:hover {
    border-color: var(--border-strong);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
  }

  .stars-row-item img {
    width: 150px;
    height: 190px;
    object-fit: cover;
    object-position: top;
    display: block;
    filter: saturate(0.9);
    transition: filter 0.3s, transform 0.4s;
  }

  .stars-row-item:hover img {
    filter: saturate(1.15);
    transform: scale(1.04);
  }

  .sr-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88), transparent);
    padding: 18px 8px 8px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-align: center;
    color: var(--gold);
  }

  /* 5th STAR CARD — custom */
  .star-card-custom .custom-sig-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .sig-svg {
    width: 160px;
    height: 160px;
  }

  .sig-path {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawSig 3s ease-in-out 1s infinite;
  }

  @keyframes drawSig {
    0% {
      stroke-dashoffset: 300
    }

    60% {
      stroke-dashoffset: 0
    }

    100% {
      stroke-dashoffset: 0
    }
  }

  .sig-pen {
    position: absolute;
    bottom: 20px;
    right: 20px;
    animation: penFloat 2s ease-in-out infinite;
  }

  @keyframes penFloat {

    0%,
    100% {
      transform: rotate(-20deg) translateY(0)
    }

    50% {
      transform: rotate(-20deg) translateY(-5px)
    }
  }

  @media(max-width:900px) {
    .versus-duel {
      grid-template-columns: 1fr 120px 1fr;
    }

    .vp-img-wrap {
      width: 170px;
      height: 220px;
    }

    .vs-text {
      font-size: 38px;
    }
  }

  @media(max-width:600px) {
    .versus-duel {
      grid-template-columns: 1fr 80px 1fr;
      gap: 0;
    }

    .vp-img-wrap {
      width: 120px;
      height: 160px;
    }

    .vs-text {
      font-size: 28px;
    }

    .vp-name {
      font-size: 18px;
    }

    .stars-row-item img {
      width: 110px;
      height: 140px;
    }

    .hero-carousel {
      min-height: 218px;
    }

    .carousel-jersey {
      width: 172px !important;
      height: 214px !important;
    }

    .hero-carousel-nav {
      width: 42px;
      height: 42px;
      font-size: 18px;
    }
  }


  /* ===== REAL WORLD MAP CSS ===== */
  .map-container {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    background: #0A1628;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  }

  .real-map-wrap {
    position: relative;
    width: 100%;
    line-height: 0;
  }

  .real-map-img {
    width: 100%;
    height: auto;
    display: block;
    filter: saturate(0.65) brightness(0.7) contrast(1.1) hue-rotate(195deg);
  }

  .hotspot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: all;
  }

  .hs-glow {
    animation: hsGlowPulse 2.5s ease-in-out infinite;
    cursor: pointer;
  }

  .hs-dot {
    cursor: pointer;
  }

  .hs-rank {
    fill: white;
    font-family: "Bebas Neue", sans-serif;
    font-size: 9px;
    text-anchor: middle;
    pointer-events: none;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.9));
  }

  @keyframes hsGlowPulse {

    0%,
    100% {
      opacity: 0.5
    }

    50% {
      opacity: 1
    }
  }

  .map-legend {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    gap: 12px;
    background: rgba(4, 9, 15, 0.88);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 7px 12px;
    backdrop-filter: blur(8px);
  }

  .legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-dim);
  }

  .legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .gold-dot {
    background: #C9A84C;
    box-shadow: 0 0 6px rgba(201, 168, 76, 0.7);
  }

  .green-dot {
    background: #00E676;
    box-shadow: 0 0 6px rgba(0, 230, 118, 0.5);
  }

  .blue-dot {
    background: #2196F3;
    box-shadow: 0 0 6px rgba(33, 150, 243, 0.5);
  }