html, body { max-width: 100vw; overflow-x: hidden; }

  .sb-hero {
    background: linear-gradient(135deg, var(--c1), var(--c2) 60%, var(--c3));
    border-radius: var(--rad-lg);
    box-shadow: var(--shadow);
    color: #fff;
    margin-bottom: 3rem;
    overflow: hidden;
    padding: clamp(2rem, 5vw, 4rem);
    position: relative;
  }
  .sb-hero::after {
    background: radial-gradient(circle, rgba(255,255,255,.18), transparent 70%);
    border-radius: 50%;
    content: '';
    height: 320px;
    position: absolute;
    right: -5%;
    top: -20%;
    width: 320px;
  }
  .sb-hero__eyebrow {
    background: rgba(255,255,255,.15);
    border-radius: 999px;
    display: inline-block;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .15em;
    margin-bottom: 1.2rem;
    padding: .4rem 1rem;
    text-transform: uppercase;
  }
  .sb-hero__title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 1rem;
    position: relative;
    z-index: 1;
  }
  .sb-hero__lead {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.6;
    margin: 0 0 2rem;
    max-width: 640px;
    opacity: .95;
    position: relative;
    z-index: 1;
  }
  .sb-hero__actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 1;
  }
  .sb-hero__stats {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
  }
  .sb-hero__stat {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--rad);
    padding: 1rem;
  }
  .sb-hero__stat-num {
    display: block;
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    font-weight: 800;
  }
  .sb-hero__stat-lbl {
    font-size: .8rem;
    letter-spacing: .08em;
    opacity: .85;
    text-transform: uppercase;
  }

  .section-block { margin: 3rem 0; }
  .section-block__title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    margin: 0 0 .5rem;
  }
  .section-block__title::after {
    background: linear-gradient(90deg, var(--c1), var(--acc));
    border-radius: 2px;
    content: '';
    display: block;
    height: 4px;
    margin-top: .6rem;
    width: 70px;
  }
  .section-block__intro {
    color: var(--muted);
    margin: 0 0 1.8rem;
    max-width: 760px;
  }

  .sports-grid {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
  .sport-card {
    background: var(--card);
    border: 1px solid var(--bord);
    border-radius: var(--rad);
    box-shadow: var(--shadow-soft);
    padding: 1.4rem;
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  }
  .sport-card:hover {
    border-color: var(--c1);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
  }
  .sport-card__tag {
    background: linear-gradient(135deg, var(--c1), var(--acc));
    border-radius: 8px;
    color: #fff;
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    margin-bottom: .8rem;
    padding: .3rem .7rem;
    text-transform: uppercase;
  }
  .sport-card__name {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 .5rem;
  }
  .sport-card__desc {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.5;
    margin: 0;
  }

  .modes-wrap {
    background: var(--card2);
    border-radius: var(--rad-lg);
    display: grid;
    gap: 0;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
  }
  .mode-panel { padding: 2rem; }
  .mode-panel--pre {
    background: linear-gradient(135deg, var(--c1), var(--c2));
    color: #fff;
  }
  .mode-panel--live {
    background: var(--card);
    border-left: 1px solid var(--bord);
  }
  .mode-panel__label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .2em;
    margin-bottom: .8rem;
    opacity: .8;
    text-transform: uppercase;
  }
  .mode-panel__head {
    align-items: center;
    display: flex;
    gap: .6rem;
    margin-bottom: 1rem;
  }
  .mode-panel__title {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
  }
  .mode-panel__dot {
    animation: pulse 1.6s ease infinite;
    background: #ff3b3b;
    border-radius: 50%;
    box-shadow: 0 0 12px #ff3b3b;
    height: 10px;
    width: 10px;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.3); }
  }
  .mode-panel__text { line-height: 1.6; margin: 0; }

  .bet-table-wrap {
    background: var(--card);
    border: 1px solid var(--bord);
    border-radius: var(--rad);
    box-shadow: var(--shadow-soft);
    overflow-x: auto;
  }
  .bet-table {
    border-collapse: collapse;
    width: 100%;
  }
  .bet-table thead {
    background: linear-gradient(90deg, var(--c1), var(--c2));
    color: #fff;
  }
  .bet-table th {
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .1em;
    padding: 1rem 1.2rem;
    text-align: left;
    text-transform: uppercase;
  }
  .bet-table td {
    border-top: 1px solid var(--bord);
    padding: 1rem 1.2rem;
  }
  .bet-table tbody tr { transition: background .2s; }
  .bet-table tbody tr:hover { background: var(--card2); }
  .bet-table td:first-child { font-weight: 700; }

  .funds-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
  .fund-item {
    background: var(--card);
    border: 1px solid var(--bord);
    border-left: 4px solid var(--acc);
    border-radius: var(--rad);
    padding: 1.4rem;
    transition: transform .3s;
  }
  .fund-item:hover { transform: translateX(4px); }
  .fund-item__num {
    color: var(--acc);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: .4rem;
  }
  .fund-item p { color: var(--muted); line-height: 1.5; margin: 0; }

  .licence-box {
    background: var(--card2);
    border: 1px dashed var(--bord);
    border-radius: var(--rad);
    padding: 1.6rem;
  }
  .licence-box strong { color: var(--fg); }
  .licence-box p { color: var(--muted); line-height: 1.6; margin: 0; }

  .faq-list { display: flex; flex-direction: column; gap: .7rem; }
  .faq-row {
    background: var(--card);
    border: 1px solid var(--bord);
    border-radius: var(--rad);
    overflow: hidden;
    transition: border-color .3s;
  }
  .faq-row:hover { border-color: var(--c1); }
  .faq-row__q {
    align-items: center;
    cursor: pointer;
    display: flex;
    font-size: 1.02rem;
    font-weight: 700;
    justify-content: space-between;
    list-style: none;
    padding: 1.2rem 1.4rem;
  }
  .faq-row__q::-webkit-details-marker { display: none; }
  .faq-row__q::after {
    background: linear-gradient(135deg, var(--c1), var(--acc));
    border-radius: 50%;
    color: #fff;
    content: '+';
    display: grid;
    flex-shrink: 0;
    font-size: 1.2rem;
    font-weight: 400;
    height: 28px;
    place-items: center;
    transition: transform .3s;
    width: 28px;
  }
  .faq-row[open] .faq-row__q::after { transform: rotate(45deg); }
  .faq-row__a {
    border-top: 1px solid var(--bord);
    color: var(--muted);
    line-height: 1.6;
    padding: 1.2rem 1.4rem;
  }

  .final-cta {
    background: linear-gradient(135deg, var(--c2), var(--c3));
    border-radius: var(--rad-lg);
    color: #fff;
    margin: 3rem 0 1rem;
    padding: 2.6rem;
    text-align: center;
  }
  .final-cta h3 {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    margin: 0 0 .6rem;
  }
  .final-cta p { margin: 0 0 1.4rem; opacity: .92; }

  @media (max-width: 768px) {
    .modes-wrap { grid-template-columns: 1fr; }
    .mode-panel--live { border-left: none; border-top: 1px solid var(--bord); }
    .sb-hero__stats { grid-template-columns: 1fr; }
  }