/* Защита от горизонтального скролла */
  html, body { overflow-x: hidden; max-width: 100vw; }

  .bg-light {
    background-color: var(--c2) !important;
    color: var(--fg) !important;
  }

  .bg-dark {
    background-color: var(--c1) !important;
    color: var(--fg) !important;
  }

  .table {
    color: var(--fg);
    border-color: var(--c3);
  }

  .table thead {
    background: var(--c1);
    border-bottom: 2px solid var(--acc);
  }

  .table-striped tbody tr:nth-of-type(odd) {
    background-color: var(--c2);
  }

  .table td, .table th {
    border-color: var(--c3);
    padding: 0.85rem 1rem;
  }

  .game-category-card {
    border: 1px solid var(--c3);
    border-radius: var(--rad);
    padding: 1.5rem;
    background: var(--c1);
    color: var(--fg);
    transition: var(--trans);
    box-shadow: var(--shadow1);
  }

  .game-category-card:hover {
    box-shadow: var(--shadow-glow);
    border-color: var(--acc);
  }

  .game-category-card .icon-wrap {
    width: 52px;
    height: 52px;
    background: var(--acc);
    border-radius: var(--rad2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #fff;
  }

  .badge-accent {
    background: var(--acc);
    color: #fff;
    padding: 0.3rem 0.75rem;
    border-radius: var(--rad3);
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
  }

  .highlight-box {
    background: linear-gradient(135deg, var(--c1), var(--c2));
    border-left: 4px solid var(--acc);
    border-radius: var(--rad);
    padding: 1.5rem 2rem;
    color: var(--fg);
    box-shadow: var(--shadow1);
  }

  .provider-chip {
    background: var(--c2);
    color: var(--fg);
    border: 1px solid var(--c3);
    border-radius: var(--rad3);
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    display: inline-block;
    margin: 0.25rem;
    font-weight: 500;
  }

  .stat-box {
    text-align: center;
    background: var(--c1);
    border: 1px solid var(--c3);
    border-radius: var(--rad);
    padding: 1.5rem 1rem;
    box-shadow: var(--shadow1);
  }

  .stat-box .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--acc);
    line-height: 1;
  }

  .stat-box .stat-label {
    font-size: 0.9rem;
    color: var(--fg2);
    margin-top: 0.4rem;
  }

  .section-divider {
    border: none;
    border-top: 1px solid var(--c3);
    margin: 2.5rem 0;
  }