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

  .gc-wrap {
    padding: var(--sp2) 0 var(--sp3);
  }

  /* HERO INTRO */
  .gc-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(2.5rem, 6vw, 5rem) var(--sp2) clamp(2rem, 4vw, 3.5rem);
    margin-bottom: var(--sp3);
    background: linear-gradient(135deg, color-mix(in srgb, var(--c1) 18%, transparent), color-mix(in srgb, var(--c2) 12%, transparent));
    border: 1px solid color-mix(in srgb, var(--gold) 20%, transparent);
    border-radius: var(--rad);
    overflow: hidden;
  }

  .gc-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 0%, color-mix(in srgb, var(--acc) 10%, transparent), transparent 70%);
    pointer-events: none;
  }

  .gc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem 1.1rem;
    margin-bottom: 1.25rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    background: color-mix(in srgb, var(--gold) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--gold) 30%, transparent);
    border-radius: 99px;
  }

  .gc-hero h1 {
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--fg);
    margin: 0 0 1rem;
    max-width: 780px;
  }

  .gc-hero h1 span {
    color: var(--gold);
  }

  .gc-hero-sub {
    font-size: clamp(.95rem, 2vw, 1.15rem);
    color: var(--fg2);
    max-width: 620px;
    line-height: 1.65;
    margin: 0 0 2rem;
  }

  .gc-stats-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2.5rem;
    margin-bottom: 2rem;
  }

  .gc-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .gc-stat-val {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
  }

  .gc-stat-lbl {
    font-size: .78rem;
    color: var(--fg2);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-top: .2rem;
  }

  /* CATEGORIES GRID */
  .gc-cats {
    margin-bottom: var(--sp3);
  }

  .gc-section-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
  }

  .gc-section-head h2 {
    font-size: clamp(1.3rem, 2.8vw, 1.9rem);
    font-weight: 700;
    color: var(--fg);
    margin: 0;
  }

  .gc-section-head::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, color-mix(in srgb, var(--gold) 30%, transparent), transparent);
  }

  .gc-cats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
  }

  .gc-cat-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.4rem 1.2rem 1.2rem;
    background: var(--bg2);
    border: 1px solid color-mix(in srgb, var(--c1) 25%, transparent);
    border-radius: var(--rad);
    cursor: default;
    transition: transform .25s, border-color .25s, box-shadow .25s;
    overflow: hidden;
  }

  .gc-cat-card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--gold) 40%, transparent);
    box-shadow: 0 8px 32px color-mix(in srgb, var(--c1) 20%, transparent);
  }

  .gc-cat-icon {
    font-size: 2rem;
    margin-bottom: .75rem;
    line-height: 1;
  }

  .gc-cat-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--fg);
    margin: 0 0 .4rem;
  }

  .gc-cat-desc {
    font-size: .82rem;
    color: var(--fg2);
    line-height: 1.5;
    flex: 1;
  }

  .gc-cat-badge {
    display: inline-block;
    margin-top: .75rem;
    padding: .2rem .7rem;
    font-size: .72rem;
    font-weight: 700;
    color: var(--gold);
    background: color-mix(in srgb, var(--gold) 12%, transparent);
    border-radius: 99px;
    letter-spacing: .05em;
  }

  /* PROVIDERS TABLE */
  .gc-providers {
    margin-bottom: var(--sp3);
  }

  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--rad);
    border: 1px solid color-mix(in srgb, var(--c1) 20%, transparent);
    box-shadow: var(--shadow);
  }

  .gc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
  }

  .gc-table thead tr {
    background: linear-gradient(90deg, var(--c1), color-mix(in srgb, var(--c2) 80%, var(--c1)));
  }

  .gc-table thead th {
    padding: .95rem 1.2rem;
    text-align: left;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--fg);
    white-space: nowrap;
  }

  .gc-table tbody tr {
    border-bottom: 1px solid color-mix(in srgb, var(--fg) 6%, transparent);
    transition: background .2s;
  }

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

  .gc-table tbody tr:hover {
    background: color-mix(in srgb, var(--c1) 10%, transparent);
  }

  .gc-table tbody tr:nth-child(even) {
    background: color-mix(in srgb, var(--bg2) 60%, transparent);
  }

  .gc-table tbody tr:nth-child(even):hover {
    background: color-mix(in srgb, var(--c1) 10%, transparent);
  }

  .gc-table td {
    padding: .85rem 1.2rem;
    color: var(--fg);
    vertical-align: middle;
  }

  .gc-table td:first-child {
    font-weight: 700;
    color: var(--gold);
  }

  .gc-table td:last-child {
    color: var(--fg2);
    font-size: .85rem;
  }

  /* HIGHLIGHT BOXES - slots & live */
  .gc-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: var(--sp3);
  }

  @media (max-width: 767px) {
    .gc-highlights { grid-template-columns: 1fr; }
  }

  .gc-hl-box {
    position: relative;
    padding: 2rem 1.75rem;
    border-radius: var(--rad);
    overflow: hidden;
    border: 1px solid transparent;
  }

  .gc-hl-box.gc-hl-slots {
    background: linear-gradient(145deg, color-mix(in srgb, var(--c1) 22%, var(--bg2)), var(--bg2));
    border-color: color-mix(in srgb, var(--c1) 30%, transparent);
  }

  .gc-hl-box.gc-hl-live {
    background: linear-gradient(145deg, color-mix(in srgb, var(--c2) 18%, var(--bg2)), var(--bg2));
    border-color: color-mix(in srgb, var(--c2) 30%, transparent);
  }

  .gc-hl-tag {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .25rem .85rem;
    margin-bottom: 1rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 99px;
  }

  .gc-hl-slots .gc-hl-tag {
    color: var(--c1);
    background: color-mix(in srgb, var(--c1) 15%, transparent);
  }

  .gc-hl-live .gc-hl-tag {
    color: var(--acc);
    background: color-mix(in srgb, var(--acc) 15%, transparent);
  }

  .gc-hl-box h2 {
    font-size: clamp(1.1rem, 2.2vw, 1.45rem);
    font-weight: 800;
    color: var(--fg);
    margin: 0 0 .75rem;
  }

  .gc-hl-box p {
    font-size: .88rem;
    color: var(--fg2);
    line-height: 1.65;
    margin: 0 0 1.25rem;
  }

  .gc-hl-dot-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .45rem;
  }

  .gc-hl-dot-list li {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    font-size: .84rem;
    color: var(--fg2);
  }

  .gc-hl-dot-list li::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: .35rem;
    flex-shrink: 0;
  }

  /* RESPONSIBLE GAMING */
  .gc-rg {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.75rem 2rem;
    margin-bottom: var(--sp3);
    background: color-mix(in srgb, var(--bg2) 80%, transparent);
    border: 1px solid color-mix(in srgb, var(--gold) 18%, transparent);
    border-left: 4px solid var(--gold);
    border-radius: var(--rad);
  }

  .gc-rg-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
    line-height: 1;
  }

  .gc-rg-content h2 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--fg);
    margin: 0 0 .5rem;
  }

  .gc-rg-content p {
    font-size: .86rem;
    color: var(--fg2);
    line-height: 1.65;
    margin: 0;
  }

  /* FAQ ACCORDION */
  .gc-faq {
    margin-bottom: var(--sp3);
  }

  .gc-faq-list {
    display: flex;
    flex-direction: column;
    gap: .6rem;
  }

  .gc-faq-item {
    background: var(--bg2);
    border: 1px solid color-mix(in srgb, var(--c1) 18%, transparent);
    border-radius: var(--rad);
    overflow: hidden;
    transition: border-color .25s;
  }

  .gc-faq-item:has(.gc-faq-body:not([hidden])) {
    border-color: color-mix(in srgb, var(--gold) 35%, transparent);
  }

  .gc-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.1rem 1.3rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: .92rem;
    font-weight: 600;
    color: var(--fg);
    transition: color .2s;
  }

  .gc-faq-q:hover { color: var(--gold); }

  .gc-faq-arrow {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: color-mix(in srgb, var(--c1) 20%, transparent);
    color: var(--gold);
    font-size: .75rem;
    font-style: normal;
    transition: transform .25s, background .25s;
  }

  .gc-faq-item.open .gc-faq-arrow {
    transform: rotate(180deg);
    background: color-mix(in srgb, var(--gold) 20%, transparent);
  }

  .gc-faq-body {
    padding: 0 1.3rem 1.2rem;
    font-size: .87rem;
    color: var(--fg2);
    line-height: 1.7;
  }

  .gc-faq-body a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
  }

  .gc-faq-body a:hover { text-decoration: underline; }

  /* CTA STRIP */
  .gc-cta-strip {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
    padding: clamp(2rem, 5vw, 3.5rem) var(--sp2);
    background: linear-gradient(135deg, color-mix(in srgb, var(--c1) 20%, var(--bg2)), color-mix(in srgb, var(--c2) 12%, var(--bg2)));
    border: 1px solid color-mix(in srgb, var(--gold) 20%, transparent);
    border-radius: var(--rad);
  }

  .gc-cta-strip h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: var(--fg);
    margin: 0;
  }

  .gc-cta-strip p {
    font-size: .92rem;
    color: var(--fg2);
    margin: 0;
    max-width: 520px;
  }

  @media (max-width: 767px) {
    .gc-rg { flex-direction: column; gap: 1rem; }
    .gc-cats-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  }

  @media (max-width: 480px) {
    .gc-cats-grid { grid-template-columns: 1fr 1fr; }
    .gc-stats-row { gap: .75rem 1.5rem; }
  }