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

  .sb-hero {
    background: linear-gradient(135deg, var(--color-2) 0%, var(--color-1) 50%, var(--color-3) 100%);
    border-radius: var(--radius-2);
    padding: var(--space-6) var(--space-5);
    margin-bottom: var(--space-5);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-4);
  }

  .sb-hero::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, var(--color-4) 0%, transparent 70%);
    opacity: 0.15;
    pointer-events: none;
    border-radius: 50%;
  }

  .sb-hero-title {
    font-family: var(--font-1);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--color-7);
    margin: 0 0 var(--space-3);
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  }

  .sb-hero-lead {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--color-8);
    max-width: 640px;
    line-height: 1.7;
    margin-bottom: var(--space-4);
  }

  .sb-section {
    margin-bottom: var(--space-6);
  }

  .sb-section-title {
    font-family: var(--font-1);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--color-7);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-2);
    border-bottom: 2px solid var(--color-4);
    display: inline-block;
  }

  /* Sports Grid */
  .sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-3);
    margin-top: var(--space-3);
  }

  .sport-card {
    background: linear-gradient(145deg, var(--color-2), var(--color-1));
    border-radius: var(--radius-2);
    padding: var(--space-4) var(--space-3);
    border: 1px solid var(--color-3);
    box-shadow: var(--shadow-2);
    transition: var(--transition-1);
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }

  .sport-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-4);
    border-color: var(--color-4);
  }

  .sport-card-icon {
    font-size: 2rem;
    line-height: 1;
  }

  .sport-card-name {
    font-family: var(--font-1);
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-7);
  }

  .sport-card-desc {
    font-size: 0.82rem;
    color: var(--color-7);
    line-height: 1.5;
  }

  /* Timeline / Steps */
  .steps-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-top: var(--space-3);
  }

  .step-item {
    display: flex;
    gap: var(--space-3);
    align-items: flex-start;
    background: linear-gradient(135deg, var(--color-2), var(--color-1));
    border-radius: var(--radius-2);
    padding: var(--space-4);
    border-left: 4px solid var(--color-4);
    box-shadow: var(--shadow-2);
    transition: var(--transition-1);
  }

  .step-item:hover {
    box-shadow: var(--shadow-3);
    transform: translateX(4px);
  }

  .step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: var(--color-4);
    color: var(--color-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 0 12px rgba(0,0,0,0.3);
  }

  .step-body-title {
    font-family: var(--font-1);
    font-weight: 700;
    color: var(--color-7);
    font-size: 1.05rem;
    margin-bottom: var(--space-1);
  }

  .step-body-text {
    color: var(--color-7);
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .step-body-text a {
    color: var(--color-4);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-1);
  }

  .step-body-text a:hover { opacity: 0.8; }

  /* Markets comparison table */
  .market-table-wrap {
    margin-top: var(--space-3);
    border-radius: var(--radius-2);
    overflow: hidden;
    box-shadow: var(--shadow-3);
  }

  .market-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-2);
    font-size: 0.95rem;
  }

  .market-table thead {
    background: linear-gradient(90deg, var(--color-4), var(--color-5));
  }

  .market-table thead th {
    padding: var(--space-3) var(--space-4);
    color: var(--color-1);
    font-family: var(--font-1);
    font-weight: 700;
    text-align: left;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .market-table tbody tr {
    border-bottom: 1px solid var(--color-3);
    transition: var(--transition-1);
  }

  .market-table tbody tr:last-child { border-bottom: none; }

  .market-table tbody tr:hover {
    background: var(--color-3);
  }

  .market-table td {
    padding: var(--space-3) var(--space-4);
    color: var(--color-8);
    line-height: 1.5;
    vertical-align: top;
  }

  .market-table td:first-child {
    font-weight: 700;
    color: var(--color-9);
    white-space: nowrap;
  }

  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Responsible Gambling highlight */
  .rg-box {
    background: linear-gradient(135deg, var(--color-2) 0%, var(--color-3) 100%);
    border-radius: var(--radius-3);
    padding: var(--space-5) var(--space-5);
    border: 1px solid var(--color-4);
    box-shadow: var(--shadow-3);
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
    margin-top: var(--space-3);
  }

  .rg-icon {
    font-size: 2.5rem;
    line-height: 1;
    min-width: 44px;
  }

  .rg-content-title {
    font-family: var(--font-1);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--color-7);
    margin-bottom: var(--space-2);
  }

  .rg-content-text {
    color: var(--color-7);
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* FAQ Accordion */
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-top: var(--space-3);
  }

  .faq-item {
    background: linear-gradient(135deg, var(--color-2), var(--color-1));
    border-radius: var(--radius-2);
    border: 1px solid var(--color-3);
    overflow: hidden;
    box-shadow: var(--shadow-1);
    transition: var(--transition-1);
  }

  .faq-item:hover { border-color: var(--color-4); }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: var(--space-4);
    text-align: left;
    color: var(--color-7);
    font-family: var(--font-1);
    font-weight: 700;
    font-size: 0.98rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-3);
    transition: var(--transition-1);
  }

  .faq-question:hover { color: var(--color-4); }

  .faq-chevron {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    background: var(--color-4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-1);
    color: var(--color-1);
    font-size: 0.8rem;
    font-weight: 900;
  }

  .faq-item.open .faq-chevron {
    transform: rotate(180deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
    padding: 0 var(--space-4);
    color: var(--color-7);
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 var(--space-4) var(--space-4);
  }

  /* CTA Bottom */
  .sb-cta-block {
    background: linear-gradient(135deg, var(--color-4) 0%, var(--color-5) 100%);
    border-radius: var(--radius-3);
    padding: var(--space-6) var(--space-5);
    text-align: center;
    box-shadow: var(--shadow-4);
    margin-top: var(--space-5);
    position: relative;
    overflow: hidden;
  }

  .sb-cta-title {
    font-family: var(--font-1);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--color-1);
    margin-bottom: var(--space-2);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  }

  .sb-cta-text {
    color: var(--color-1);
    opacity: 0.9;
    font-size: 1rem;
    margin-bottom: var(--space-4);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }

  .section-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-4), transparent);
    margin: var(--space-5) 0;
    opacity: 0.4;
  }

  @media (max-width: 768px) {
    .sb-hero { padding: var(--space-5) var(--space-3); }
    .sports-grid { grid-template-columns: repeat(2, 1fr); }
    .rg-box { flex-direction: column; gap: var(--space-2); }
    .sb-cta-block { padding: var(--space-5) var(--space-3); }
    .step-item { flex-direction: column; gap: var(--space-2); }
  }

  @media (max-width: 480px) {
    .sports-grid { grid-template-columns: 1fr 1fr; }
    .market-table thead th, .market-table td { padding: var(--space-2) var(--space-3); }
  }