    /* ========================================
       CSS VARIABLES & RESET
    ======================================== */
    :root {
      --navy:      #0b0a2a;
      --navy-mid:  #13123a;
      --navy-card: #1a1945;
      --cyan:      #00c2ff;
      --cyan-dim:  rgba(0,194,255,0.12);
      --gold:      #ffd600;
      --gold-dim:  rgba(255,214,0,0.12);
      --white:     #ffffff;
      --white-80:  rgba(255,255,255,0.80);
      --white-50:  rgba(255,255,255,0.50);
      --white-10:  rgba(255,255,255,0.08);
      --border:    rgba(0,194,255,0.20);
      --r-sm: 8px;
      --r-md: 14px;
      --r-lg: 20px;
      --shadow: 0 4px 32px rgba(0,0,0,0.45);
    }
 
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
    html { scroll-behavior: smooth; }
 
    body {
      font-family: Arial, sans-serif;
      background: var(--navy);
      color: var(--white);
      line-height: 1.65;
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
    }
 
    img { display: block; max-width: 100%; height: auto; }
    a   { color: var(--cyan); text-decoration: none; }
    a:hover { text-decoration: underline; }
 
    /* ========================================
       TYPOGRAPHY SCALE
    ======================================== */
    h1 { font-size: clamp(28px, 5vw, 52px); font-weight: 800; line-height: 1.15; }
    h2 { font-size: clamp(22px, 3.5vw, 36px); font-weight: 700; line-height: 1.2; margin-bottom: 20px; }
    h3 { font-size: clamp(18px, 2.5vw, 24px); font-weight: 700; margin-bottom: 14px; }
    p  { margin-bottom: 14px; color: var(--white-80); }
    p:last-child { margin-bottom: 0; }
 
    .section-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 10px;
      display: block;
    }
 
    /* ========================================
       LAYOUT
    ======================================== */
    .container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 20px;
    }
 
    section { padding: 70px 0; }
    section:nth-child(even) { background: var(--navy-mid); }
 
    .two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      align-items: start;
    }
    .three-col {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .four-col {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
 
    @media (max-width: 900px) {
      .two-col   { grid-template-columns: 1fr; }
      .three-col { grid-template-columns: 1fr 1fr; }
      .four-col  { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 580px) {
      .three-col { grid-template-columns: 1fr; }
      .four-col  { grid-template-columns: 1fr; }
      section { padding: 48px 0; }
    }
 
    /* ========================================
       HEADER / NAV
    ======================================== */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(11,10,42,0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      padding: 14px 0;
    }
 
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
 
    .site-logo img { height: 40px; width: auto; }
    .site-logo-text {
      font-size: 22px;
      font-weight: 800;
      color: var(--white);
      letter-spacing: -0.5px;
    }
    .site-logo-text span { color: var(--cyan); }
 
    .main-nav {
      display: flex;
      gap: 28px;
      list-style: none;
    }
    .main-nav a {
      font-size: 14px;
      font-weight: 600;
      color: var(--white-80);
      letter-spacing: 0.3px;
      transition: color 0.2s;
    }
    .main-nav a:hover { color: var(--cyan); text-decoration: none; }
 
    .btn-bet {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--gold);
      color: var(--navy);
      font-size: 14px;
      font-weight: 800;
      padding: 10px 22px;
      border-radius: 50px;
      white-space: nowrap;
      transition: opacity 0.2s, transform 0.15s;
    }
    .btn-bet:hover { opacity: 0.88; text-decoration: none; transform: translateY(-1px); }
 
    .burger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      flex-direction: column;
      gap: 5px;
      padding: 4px;
    }
    .burger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: all 0.3s;
    }
 
    @media (max-width: 820px) {
      .main-nav { display: none; }
      .burger   { display: flex; }
    }
 
    /* Mobile menu */
    .mobile-menu {
      display: none;
      flex-direction: column;
      background: var(--navy-mid);
      border-top: 1px solid var(--border);
      padding: 16px 20px;
      gap: 16px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-size: 15px;
      font-weight: 600;
      color: var(--white-80);
    }
 
    /* ========================================
       HERO
    ======================================== */
    .hero {
      padding: 0;
      position: relative;
      overflow: hidden;
      min-height: 600px;
      display: flex;
      align-items: center;
    }
 
    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('/img/Stage-Design-eurovision-2026.webp') center / cover no-repeat;
      filter: brightness(0.25) saturate(1.2);
      z-index: 0;
    }
 
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(11,10,42,0.92) 40%, rgba(0,194,255,0.08) 100%);
      z-index: 1;
    }
 
    .hero-content {
      position: relative;
      z-index: 2;
      padding: 80px 0;
      width: 100%;
    }
 
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--cyan-dim);
      border: 1px solid var(--border);
      border-radius: 50px;
      padding: 6px 16px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 20px;
    }
    .hero-badge::before {
      content: '';
      width: 7px; height: 7px;
      background: var(--gold);
      border-radius: 50%;
      animation: pulse 1.6s infinite;
    }
    @keyframes pulse {
      0%,100% { opacity:1; transform:scale(1); }
      50%      { opacity:.5; transform:scale(1.3); }
    }
 
    .hero h1 { margin-bottom: 18px; }
    .hero h1 em { font-style: normal; color: var(--cyan); }
 
    .hero-sub {
      font-size: clamp(16px, 2vw, 19px);
      color: var(--white-80);
      max-width: 600px;
      margin-bottom: 34px;
    }
 
    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 50px;
    }
 
    .btn-primary {
      background: var(--gold);
      color: var(--navy);
      font-size: 15px;
      font-weight: 800;
      padding: 14px 32px;
      border-radius: 50px;
      transition: opacity 0.2s, transform 0.15s;
      display: inline-block;
    }
    .btn-primary:hover { opacity: 0.88; text-decoration: none; transform: translateY(-2px); }
 
    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255,255,255,0.3);
      font-size: 15px;
      font-weight: 700;
      padding: 12px 28px;
      border-radius: 50px;
      transition: border-color 0.2s, color 0.2s;
      display: inline-block;
    }
    .btn-outline:hover { border-color: var(--cyan); color: var(--cyan); text-decoration: none; }
 
    /* Hero odds strip */
    .hero-odds-strip {
      background: var(--white-10);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 20px 28px;
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      align-items: center;
    }
 
    .hero-odds-title {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--white-50);
      margin-right: 8px;
    }
 
    .odds-pill {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .odds-pill .flag { font-size: 22px; line-height: 1; }
    .odds-pill .country { font-size: 13px; color: var(--white-80); }
    .odds-pill .odd-val {
      font-size: 16px;
      font-weight: 800;
      color: var(--gold);
      background: var(--gold-dim);
      padding: 3px 10px;
      border-radius: 6px;
    }
 
    /* ========================================
       CARDS
    ======================================== */
    .card {
      background: var(--navy-card);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      padding: 28px;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
 
    .card-icon {
      font-size: 34px;
      margin-bottom: 14px;
      line-height: 1;
    }
 
    .card h3 { color: var(--white); margin-bottom: 10px; }
 
    /* ========================================
       ODDS TABLE
    ======================================== */
    .odds-table-wrap {
      overflow-x: auto;
      border-radius: var(--r-md);
      border: 1px solid var(--border);
    }
 
    table.odds-table {
      width: 100%;
      border-collapse: collapse;
      min-width: 600px;
    }
    .odds-table thead {
      background: linear-gradient(90deg, var(--cyan-dim), transparent);
    }
    .odds-table th {
      padding: 14px 18px;
      text-align: left;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--cyan);
      border-bottom: 1px solid var(--border);
    }
    .odds-table td {
      padding: 14px 18px;
      border-bottom: 1px solid var(--white-10);
      color: var(--white-80);
      font-size: 15px;
      vertical-align: middle;
    }
    .odds-table tr:last-child td { border-bottom: none; }
    .odds-table tr:hover td { background: var(--white-10); }
 
    .odd-chip {
      display: inline-block;
      font-size: 15px;
      font-weight: 800;
      color: var(--gold);
      background: var(--gold-dim);
      padding: 4px 12px;
      border-radius: 6px;
      min-width: 52px;
      text-align: center;
    }
    .odd-chip.good { color: #4ade80; background: rgba(74,222,128,0.1); }
    .odd-chip.hot  { color: var(--cyan); background: var(--cyan-dim); }
 
    .badge-fav {
      display: inline-block;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
      background: var(--gold);
      color: var(--navy);
      padding: 2px 8px;
      border-radius: 4px;
      margin-left: 8px;
      vertical-align: middle;
    }
 
    .flag-name {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .flag-name .flag { font-size: 24px; }
    .flag-name .info strong { display: block; color: var(--white); font-size: 15px; }
    .flag-name .info span  { font-size: 12px; color: var(--white-50); font-style: italic; }
 
    /* ========================================
       BOOKMAKER CARDS
    ======================================== */
    .bk-card {
      background: var(--navy-card);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .bk-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
 
    .bk-logo-wrap {
      background: #1a1945;
      border-radius: var(--r-sm);
      padding: 14px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 64px;
    }
    .bk-logo-wrap img { max-height: 36px; object-fit: contain; }
 
    .bk-rating {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .stars { color: var(--gold); font-size: 16px; letter-spacing: -1px; }
    .rating-val { font-size: 13px; color: var(--white-50); }
 
    .bk-bonus-tag {
      background: linear-gradient(90deg, var(--gold), #ffaa00);
      color: var(--navy);
      font-size: 13px;
      font-weight: 800;
      padding: 8px 14px;
      border-radius: var(--r-sm);
      text-align: center;
    }
 
    .bk-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 7px;
    }
    .bk-features li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 13px;
      color: var(--white-80);
    }
    .bk-features li::before {
      content: '✓';
      color: var(--cyan);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 2px;
    }
 
    .btn-bk {
      display: block;
      text-align: center;
      background: var(--cyan);
      color: var(--navy);
      font-size: 14px;
      font-weight: 800;
      padding: 12px;
      border-radius: var(--r-sm);
      margin-top: auto;
      transition: opacity 0.2s;
    }
    .btn-bk:hover { opacity: 0.85; text-decoration: none; }
 
    /* ========================================
       COMPARISON TABLE
    ======================================== */
    .comp-table-wrap {
      overflow-x: auto;
      border-radius: var(--r-md);
      border: 1px solid var(--border);
    }
    table.comp-table {
      width: 100%;
      border-collapse: collapse;
      min-width: 680px;
    }
    .comp-table thead { background: var(--navy-card); }
    .comp-table th {
      padding: 16px 20px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.5px;
      color: var(--white-80);
      border-bottom: 2px solid var(--border);
      text-align: center;
    }
    .comp-table th:first-child { text-align: left; }
    .comp-table td {
      padding: 14px 20px;
      border-bottom: 1px solid var(--white-10);
      font-size: 14px;
      color: var(--white-80);
      text-align: center;
      vertical-align: middle;
    }
    .comp-table td:first-child { text-align: left; }
    .comp-table tr:last-child td { border-bottom: none; }
    .comp-table tr:hover td { background: var(--white-10); }
 
    .comp-logo {
      height: 28px;
      object-fit: contain;
      background: #1a1945;
      border-radius: 4px;
      padding: 3px 8px;
    }
    .check { color: #4ade80; font-weight: 700; font-size: 16px; }
    .cross { color: #f87171; }
 
    /* ========================================
       BET TYPES GRID
    ======================================== */
    .bet-type-card {
      background: var(--navy-card);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      padding: 24px;
      transition: transform 0.2s;
    }
    .bet-type-card:hover { transform: translateY(-3px); }
    .bet-type-icon {
      font-size: 30px;
      margin-bottom: 12px;
    }
    .bet-type-card h3 { font-size: 17px; color: var(--cyan); margin-bottom: 8px; }
    .bet-type-card p { font-size: 14px; }
 
    /* ========================================
       EXPERT SECTION
    ======================================== */
    .expert-card {
      background: var(--navy-card);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      padding: 28px;
    }
 
    .expert-head {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 16px;
    }
    .expert-avatar {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--cyan), var(--gold));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
    }
    .expert-name { font-weight: 700; color: var(--white); font-size: 16px; }
    .expert-role { font-size: 12px; color: var(--cyan); }
 
    .expert-quote {
      font-size: 15px;
      color: var(--white-80);
      font-style: italic;
      border-left: 3px solid var(--cyan);
      padding-left: 16px;
      margin-bottom: 14px;
    }
 
    .expert-pick {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--gold-dim);
      border: 1px solid var(--gold);
      border-radius: 6px;
      padding: 6px 14px;
      font-size: 13px;
      font-weight: 700;
      color: var(--gold);
    }
 
    /* ========================================
       UKRAINE BLOCK
    ======================================== */
    .ukraine-block {
      background: linear-gradient(135deg, rgba(0,87,183,0.15), rgba(255,221,0,0.05));
      border: 1px solid rgba(0,87,183,0.4);
      border-radius: var(--r-lg);
      padding: 36px;
      position: relative;
      overflow: hidden;
    }
    .ukraine-block::before {
      content: '🇺🇦';
      font-size: 120px;
      position: absolute;
      right: -10px;
      top: -10px;
      opacity: 0.08;
    }
 
    /* ========================================
       BONUS SECTION
    ======================================== */
    .bonus-card {
      background: var(--navy-card);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      padding: 28px;
    }
 
    .bonus-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 20px;
      padding-bottom: 18px;
      border-bottom: 1px solid var(--white-10);
    }
    .bonus-logo-wrap {
      background: #141439;
      border-radius: var(--r-sm);
      padding: 10px 16px;
      display: flex;
      align-items: center;
    }
    .bonus-logo-wrap img { height: 28px; object-fit: contain; }
 
    .bonus-amount {
      font-size: 28px;
      font-weight: 800;
      color: var(--gold);
    }
    .bonus-amount span { font-size: 14px; font-weight: 400; color: var(--white-50); display: block; }
 
    .bonus-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 20px;
    }
    .bonus-list li {
      display: flex;
      gap: 10px;
      font-size: 14px;
      color: var(--white-80);
    }
    .bonus-list li::before {
      content: '⭐';
      flex-shrink: 0;
    }
 
    .promo-code {
      background: var(--gold-dim);
      border: 1px dashed var(--gold);
      border-radius: var(--r-sm);
      padding: 10px 16px;
      font-size: 13px;
      color: var(--gold);
      font-weight: 700;
      text-align: center;
      margin-bottom: 16px;
    }
    .promo-code span { color: var(--white-80); font-weight: 400; }
 
    /* ========================================
       FAQ
    ======================================== */
    .faq-item {
      border-bottom: 1px solid var(--white-10);
    }
    .faq-q {
      width: 100%;
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 0;
      color: var(--white);
      font-size: 16px;
      font-weight: 700;
      font-family: Arial, sans-serif;
      text-align: left;
      gap: 16px;
    }
    .faq-q .chevron {
      color: var(--cyan);
      font-size: 20px;
      transition: transform 0.3s;
      flex-shrink: 0;
    }
    .faq-q.open .chevron { transform: rotate(180deg); }
 
    .faq-a {
      display: none;
      padding: 0 0 20px;
      color: var(--white-80);
      font-size: 15px;
      line-height: 1.7;
    }
    .faq-a.open { display: block; }
 
    /* ========================================
       PARTICIPANTS GRID
    ======================================== */
    .participant-card {
      background: var(--navy-card);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      padding: 18px 16px;
      text-align: center;
      transition: transform 0.2s;
    }
    .participant-card:hover { transform: translateY(-3px); }
    .participant-card .flag { font-size: 32px; margin-bottom: 8px; }
    .participant-card .country { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
    .participant-card .artist { font-size: 11px; color: var(--white-50); margin-bottom: 6px; }
    .participant-card .song { font-size: 11px; color: var(--cyan); font-style: italic; margin-bottom: 10px; }
    .participant-card .odds { font-size: 14px; font-weight: 800; color: var(--gold); }
 
    /* ========================================
       INFO BOXES
    ======================================== */
    .info-box {
      background: var(--cyan-dim);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      padding: 20px 24px;
      display: flex;
      gap: 14px;
    }
    .info-box .icon { font-size: 24px; flex-shrink: 0; }
    .info-box-content strong { color: var(--cyan); display: block; margin-bottom: 6px; }
    .info-box-content p { color: var(--white-80); font-size: 14px; margin: 0; }
 
    .warning-box {
      background: rgba(255,214,0,0.07);
      border: 1px solid rgba(255,214,0,0.3);
      border-radius: var(--r-md);
      padding: 16px 20px;
      display: flex;
      gap: 12px;
      align-items: flex-start;
      margin-top: 20px;
    }
    .warning-box p { font-size: 13px; color: var(--white-80); margin: 0; }
 
    /* ========================================
       SECTION HEADER
    ======================================== */
    .sec-head { margin-bottom: 40px; }
    .sec-head h2 { color: var(--white); }
    .sec-head p {
      font-size: 17px;
      color: var(--white-80);
      max-width: 680px;
      margin: 0;
    }
 
    /* ========================================
       STAT CARDS
    ======================================== */
    .stat-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-bottom: 50px;
    }
    @media (max-width: 768px) { .stat-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 480px) { .stat-grid { grid-template-columns: 1fr 1fr; } }
 
    .stat-card {
      background: var(--navy-card);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      padding: 22px;
      text-align: center;
    }
    .stat-val {
      font-size: 32px;
      font-weight: 800;
      color: var(--cyan);
      line-height: 1;
      margin-bottom: 6px;
    }
    .stat-label {
      font-size: 12px;
      color: var(--white-50);
      text-transform: uppercase;
      letter-spacing: 1px;
    }
 
    /* ========================================
       FOOTER
    ======================================== */
    footer {
      background: #07071e;
      border-top: 1px solid var(--border);
      padding: 50px 0 30px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    @media (max-width: 900px) {
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 480px) {
      .footer-grid { grid-template-columns: 1fr; }
    }
 
    .footer-brand p { font-size: 14px; color: var(--white-50); margin-top: 12px; }
 
    .footer-col h4 {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--white-50);
      margin-bottom: 14px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a { font-size: 14px; color: var(--white-50); transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--cyan); text-decoration: none; }
 
    .footer-bottom {
      border-top: 1px solid var(--white-10);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 20px;
      flex-wrap: wrap;
    }
    .footer-bottom p { font-size: 12px; color: var(--white-50); margin: 0; }
    .footer-disclaimer {
      font-size: 11px;
      color: rgba(255,255,255,0.3);
      max-width: 700px;
      line-height: 1.6;
      margin-top: 8px;
    }
    .footer-bk-logos {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      align-items: center;
    }
    .footer-bk-logos img {
      height: 22px;
      object-fit: contain;
      background: #1a1945;
      border-radius: 4px;
      padding: 2px 8px;
      opacity: 0.7;
      transition: opacity 0.2s;
    }
    .footer-bk-logos img:hover { opacity: 1; }
 
    /* ========================================
       MISC
    ======================================== */
    .divider {
      border: none;
      border-top: 1px solid var(--white-10);
      margin: 40px 0;
    }
 
    .text-cyan { color: var(--cyan); }
    .text-gold { color: var(--gold); }
    .mb-40 { margin-bottom: 40px; }
    .mb-24 { margin-bottom: 24px; }
 
    .progress-bar {
      height: 6px;
      background: var(--white-10);
      border-radius: 3px;
      overflow: hidden;
      margin-top: 6px;
    }
    .progress-fill {
      height: 100%;
      border-radius: 3px;
      background: linear-gradient(90deg, var(--cyan), var(--gold));
    }
 
    /* Scroll to top */
    .scroll-top {
      position: fixed;
      bottom: 24px;
      right: 24px;
      background: var(--gold);
      color: var(--navy);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      box-shadow: 0 4px 20px rgba(255,214,0,0.4);
      opacity: 0;
      transition: opacity 0.3s;
      z-index: 90;
    }
    .scroll-top.visible { opacity: 1; }
 
    /* ================================================
       MOBILE FIXES — інтегровано
    ================================================ */
    html, body {
      overflow-x: hidden;
      max-width: 100%;
    }
    *, *::before, *::after {
      min-width: 0;
    }
 
    @media (max-width: 768px) {
      .container { padding-left: 16px; padding-right: 16px; }
 
      h1 { font-size: clamp(24px, 7vw, 40px); word-break: break-word; }
      h2 { font-size: clamp(20px, 5vw, 30px); }
 
      section { padding: 44px 0; }
 
      /* Hero */
      .hero-content { padding: 44px 0 36px; }
      .hero-badge { font-size: 11px; padding: 5px 12px; }
      .hero-sub { font-size: 15px; }
      .hero-ctas { flex-direction: column; align-items: stretch; }
      .btn-primary, .btn-outline { width: 100%; text-align: center; }
      .hero-odds-strip {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 14px 16px;
        gap: 14px;
      }
      .hero-odds-strip::-webkit-scrollbar { display: none; }
      .odds-pill { flex-shrink: 0; }
 
      /* Header */
      .btn-bet { font-size: 12px; padding: 8px 12px; }
 
      /* Grids */
      .two-col   { grid-template-columns: 1fr; gap: 20px; }
      .three-col { grid-template-columns: 1fr; gap: 14px; }
      .four-col  { grid-template-columns: 1fr; gap: 16px; }
      .stat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
      .footer-grid { grid-template-columns: 1fr; gap: 24px; }
 
      /* Cards */
      .card { padding: 18px; }
      .bk-card { padding: 20px 16px; }
      .bonus-card { padding: 20px 16px; }
      .expert-card { padding: 18px; }
      .bet-type-card { padding: 18px; }
      .ukraine-block { padding: 22px 16px; }
      .ukraine-block::before { font-size: 70px; }
 
      /* Stat */
      .stat-val { font-size: 24px; }
      .stat-card { padding: 16px 12px; }
 
      /* Tables */
      .odds-table th, .odds-table td,
      .comp-table th, .comp-table td { padding: 10px 11px; font-size: 13px; }
      .flag-name .flag { font-size: 18px; }
      .flag-name .info strong { font-size: 13px; }
      .odd-chip { font-size: 13px; padding: 3px 8px; min-width: 42px; }
 
      /* Bonus */
      .bonus-header { flex-wrap: wrap; gap: 10px; }
      .bonus-amount { font-size: 20px; }
 
      /* Info boxes */
      .info-box { flex-direction: column; gap: 8px; padding: 14px; }
      .warning-box { padding: 12px 14px; }
 
      /* FAQ */
      .faq-q { font-size: 15px; padding: 15px 0; gap: 12px; }
 
      /* Footer */
      .footer-bottom { flex-direction: column; gap: 10px; }
    }
 
    @media (max-width: 480px) {
      .container { padding-left: 14px; padding-right: 14px; }
 
      /* Ховаємо кнопку хедера — залишається бургер */
      .btn-bet { display: none; }
 
      /* Hero badge без overflow */
      .hero-badge { flex-wrap: wrap; word-break: break-word; }
 
      /* Таблиця коефіцієнтів — ховаємо Beton і Betking колонки */
      .odds-table th:nth-child(3),
      .odds-table td:nth-child(3),
      .odds-table th:nth-child(4),
      .odds-table td:nth-child(4) { display: none; }
 
      /* Порівняльна таблиця — ховаємо Live, Кешаут, Ліцензія */
      .comp-table th:nth-child(6),
      .comp-table td:nth-child(6),
      .comp-table th:nth-child(7),
      .comp-table td:nth-child(7),
      .comp-table th:nth-child(8),
      .comp-table td:nth-child(8) { display: none; }
 
      /* Expert */
      .expert-avatar { width: 42px; height: 42px; font-size: 18px; }
      .expert-head { gap: 10px; }
 
      /* Participants grid */
      .participant-card { padding: 12px 8px; }
      .participant-card .flag { font-size: 26px; }
 
      /* FAQ text */
      .faq-q { font-size: 14px; }
 
      /* Logo sizes in tables */
      .comp-logo { height: 22px; padding: 2px 6px; }
 
      /* Promo code */
      .promo-code { font-size: 12px; padding: 9px 12px; }
    }
 
    @media (max-width: 360px) {
      .container { padding-left: 12px; padding-right: 12px; }
      h1 { font-size: 22px; }
      h2 { font-size: 19px; }
      .hero-content { padding: 32px 0 28px; }
      section { padding: 36px 0; }
      .stat-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
      .stat-val { font-size: 20px; }
      .odds-pill .odd-val { font-size: 13px; padding: 2px 7px; }
    }