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

  :root {
    --sp1: 1rem;
    --sp2: 2rem;
    --sp3: 3rem;
    --rad: var(--radius, 12px);
    --radSm: var(--radiusSm, 8px);
    --radLg: var(--radiusLg, 20px);
    --tr: var(--transition, 0.3s ease);
  }

  .pageHero {
    background: var(--gradientHero);
    border-bottom: 1px solid var(--surfaceBorder);
    padding: calc(var(--sp3) * 1.2) 0 var(--sp3);
    position: relative;
  }

  .pageHero::after {
    background: var(--gradientAccent);
    bottom: 0;
    content: '';
    height: 3px;
    left: 0;
    position: absolute;
    width: 100%;
  }

  .heroEyebrow {
    background: var(--gradientAccent);
    border-radius: 20px;
    color: var(--surface);
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: var(--sp1);
    padding: 0.3rem 1rem;
    text-transform: uppercase;
  }

  .pageHero h1 {
    color: var(--textPrimary);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--sp1);
  }

  .pageHero .lead {
    color: var(--textSecondary);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.7;
    max-width: 680px;
  }

  .heroActions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: var(--sp2);
  }

  .statPill {
    align-items: center;
    background: var(--surfaceCard);
    border: 1px solid var(--borderSubtle);
    border-radius: 50px;
    box-shadow: var(--shadowCard);
    color: var(--textSecondary);
    display: inline-flex;
    font-size: 0.82rem;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
  }

  .statPill strong {
    color: var(--accent);
  }

  /* SECTION SPACING */
  .infoSection {
    padding: var(--sp3) 0;
  }

  .infoSection + .infoSection {
    border-top: 1px solid var(--borderSubtle);
  }

  /* GAME TYPE CARDS */
  .gameTypeGrid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-top: var(--sp2);
  }

  .gameTypeCard {
    background: var(--surfaceCard);
    border: 1px solid var(--borderSubtle);
    border-radius: var(--radLg);
    box-shadow: var(--shadowCard);
    overflow: hidden;
    padding: 2rem 1.75rem;
    position: relative;
    transition: box-shadow var(--tr), transform var(--tr);
  }

  .gameTypeCard:hover {
    box-shadow: var(--shadowGlow);
    transform: translateY(-4px);
  }

  .gameTypeCard .cardIcon {
    background: var(--gradientAccent);
    border-radius: var(--radSm);
    display: inline-flex;
    font-size: 1.6rem;
    height: 52px;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    width: 52px;
  }

  .gameTypeCard h3 {
    color: var(--textPrimary);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
  }

  .gameTypeCard p {
    color: var(--textSecondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
  }

  .hotBadge {
    background: var(--gradientFire);
    border-radius: 6px;
    box-shadow: var(--shadowFireGlow);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.2rem 0.55rem;
    position: absolute;
    right: 1.2rem;
    text-transform: uppercase;
    top: 1.2rem;
  }

  /* PROVIDERS TABLE */
  .providerSection {
    background: var(--surfaceCard);
    border: 1px solid var(--borderSubtle);
    border-radius: var(--radLg);
    box-shadow: var(--shadowCard);
    overflow: hidden;
  }

  .providerSection .providerHeader {
    background: var(--gradientCard);
    border-bottom: 1px solid var(--borderSubtle);
    padding: 1.5rem 2rem;
  }

  .providerSection .providerHeader h2 {
    color: var(--textPrimary);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
  }

  .providerTable {
    border-collapse: collapse;
    width: 100%;
  }

  .providerTable thead th {
    background: var(--surface);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 1rem 1.5rem;
    text-align: left;
    text-transform: uppercase;
  }

  .providerTable tbody tr {
    border-top: 1px solid var(--borderSubtle);
    transition: background var(--tr);
  }

  .providerTable tbody tr:hover {
    background: var(--surfaceElevated);
  }

  .providerTable tbody td {
    color: var(--textSecondary);
    font-size: 0.92rem;
    line-height: 1.55;
    padding: 1.1rem 1.5rem;
    vertical-align: top;
  }

  .providerTable tbody td:first-child {
    color: var(--textPrimary);
    font-weight: 700;
    white-space: nowrap;
    width: 160px;
  }

  .providerTag {
    background: var(--gradientAccent);
    border-radius: 4px;
    color: var(--surface);
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-right: 0.4rem;
    padding: 0.18rem 0.55rem;
    text-transform: uppercase;
  }

  /* STEPS TIMELINE */
  .stepsTimeline {
    margin-top: var(--sp2);
    position: relative;
  }

  .stepsTimeline::before {
    background: var(--gradientAccent);
    bottom: 0;
    content: '';
    left: 23px;
    position: absolute;
    top: 0;
    width: 2px;
  }

  .stepItem {
    align-items: flex-start;
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
  }

  .stepItem:last-child { margin-bottom: 0; }

  .stepNum {
    align-items: center;
    background: var(--gradientAccent);
    border-radius: 50%;
    box-shadow: var(--shadowGlow);
    color: var(--surface);
    display: flex;
    flex-shrink: 0;
    font-size: 0.85rem;
    font-weight: 800;
    height: 48px;
    justify-content: center;
    position: relative;
    width: 48px;
    z-index: 1;
  }

  .stepBody {
    background: var(--surfaceCard);
    border: 1px solid var(--borderSubtle);
    border-radius: var(--rad);
    box-shadow: var(--shadowCard);
    flex: 1;
    padding: 1.1rem 1.4rem;
    transition: box-shadow var(--tr);
  }

  .stepBody:hover { box-shadow: var(--shadowGlow); }

  .stepBody h3 {
    color: var(--textPrimary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
  }

  .stepBody p {
    color: var(--textSecondary);
    font-size: 0.88rem;
    line-height: 1.55;
    margin: 0;
  }

  /* RESPONSIBLE GAMING HIGHLIGHT */
  .rgBox {
    background: var(--surfaceCard);
    border: 1px solid var(--borderSubtle);
    border-left: 4px solid var(--accent);
    border-radius: var(--rad);
    box-shadow: var(--shadowCard);
    padding: 2rem;
  }

  .rgBox h2 {
    color: var(--textPrimary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
  }

  .rgBox p {
    color: var(--textSecondary);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
  }

  .rgBox p:last-child { margin-bottom: 0; }

  /* FAQ ACCORDION */
  .faqList {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: var(--sp2);
  }

  .faqItem {
    background: var(--surfaceCard);
    border: 1px solid var(--borderSubtle);
    border-radius: var(--rad);
    box-shadow: var(--shadowCard);
    overflow: hidden;
    transition: box-shadow var(--tr);
  }

  .faqItem:hover { box-shadow: var(--shadowGlow); }

  .faqQuestion {
    align-items: center;
    background: none;
    border: none;
    color: var(--textPrimary);
    cursor: pointer;
    display: flex;
    font-size: 0.97rem;
    font-weight: 600;
    gap: 1rem;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    text-align: left;
    transition: color var(--tr);
    width: 100%;
  }

  .faqQuestion:hover { color: var(--accent); }

  .faqChevron {
    align-items: center;
    background: var(--surface);
    border-radius: 50%;
    color: var(--accent);
    display: flex;
    flex-shrink: 0;
    font-size: 1rem;
    height: 28px;
    justify-content: center;
    transition: transform var(--tr);
    width: 28px;
  }

  .faqItem.faqOpen .faqChevron { transform: rotate(180deg); }

  .faqAnswer {
    border-top: 1px solid var(--borderSubtle);
    color: var(--textSecondary);
    display: none;
    font-size: 0.9rem;
    line-height: 1.7;
    padding: 1.1rem 1.5rem;
  }

  .faqItem.faqOpen .faqAnswer { display: block; }

  .faqAnswer a {
    color: var(--accent);
    text-decoration: none;
  }

  .faqAnswer a:hover { text-decoration: underline; }

  /* SECTION TITLE */
  .secTitle {
    color: var(--textPrimary);
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }

  .secSubtitle {
    color: var(--textSecondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 600px;
  }

  .accentBar {
    background: var(--gradientAccent);
    border-radius: 2px;
    display: block;
    height: 3px;
    margin-bottom: 1.25rem;
    width: 48px;
  }

  @media (max-width: 768px) {
    .stepsTimeline::before { left: 19px; }
    .stepNum { height: 40px; width: 40px; }
    .providerTable tbody td:first-child { white-space: normal; width: auto; }
    .pageHero { padding: var(--sp2) 0; }
  }

  @media (max-width: 320px) {
    .gameTypeGrid { grid-template-columns: 1fr; }
    .heroActions { flex-direction: column; align-items: flex-start; }
  }