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

  .bg-light {
    background-color: #1a1a2e !important;
    color: var(--fg, #fff) !important;
  }

  .vip-hero {
    background: linear-gradient(135deg, var(--c1, #6c3fc5) 0%, var(--c2, #a259e6) 100%);
    border-radius: var(--rad, 12px);
    padding: 2.5rem 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
  }

  .vip-hero::after {
    content: '';
    position: absolute;
    top: -40px;
    right: 30px;
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
  }

  .vip-badge {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50px;
    padding: 0.3rem 1.1rem;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
  }

  .level-card {
    border-radius: var(--rad, 12px);
    padding: 1.6rem 1.2rem;
    margin-bottom: 1.2rem;
    transition: var(--transition, transform 0.2s);
    border: 1px solid rgba(255,255,255,0.08);
  }

  .level-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow2, 0 8px 32px rgba(0,0,0,0.3));
  }

  .level-icon {
    font-size: 2rem;
    margin-bottom: 0.6rem;
    display: block;
  }

  .level-bronze { border-top: 3px solid #cd7f32; }
  .level-silver { border-top: 3px solid #c0c0c0; }
  .level-gold   { border-top: 3px solid #ffd700; }
  .level-platinum { border-top: 3px solid #e5e4e2; }
  .level-diamond { border-top: 3px solid #b9f2ff; }

  .benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c1, #6c3fc5), var(--c2, #a259e6));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
  }

  .table {
    color: var(--fg, #fff);
    border-color: rgba(255,255,255,0.1);
  }

  .table thead {
    background: linear-gradient(90deg, var(--c1, #6c3fc5), var(--c2, #a259e6));
    color: #fff;
    border-bottom: 2px solid rgba(255,255,255,0.15);
  }

  .table thead th {
    border-color: rgba(255,255,255,0.15);
    font-weight: 700;
    letter-spacing: 0.04em;
  }

  .table tbody tr {
    background-color: rgba(255,255,255,0.03);
  }

  .table tbody tr:hover {
    background-color: rgba(255,255,255,0.07);
  }

  .table tbody td {
    border-color: rgba(255,255,255,0.07);
    vertical-align: middle;
  }

  .table-striped > tbody > tr:nth-of-type(odd) > * {
    background-color: rgba(255,255,255,0.06);
    color: var(--fg, #fff);
  }

  .check-icon {
    color: #a259e6;
    font-weight: 900;
  }

  .step-number {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--c1, #6c3fc5), var(--c2, #a259e6));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
  }

  .step-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.4rem;
  }

  .highlight-box {
    border-left: 4px solid var(--c2, #a259e6);
    background: rgba(162, 89, 230, 0.1);
    border-radius: 0 var(--rad, 12px) var(--rad, 12px) 0;
    padding: 1.2rem 1.4rem;
    margin-bottom: 1.5rem;
  }

  .cta-section {
    background: linear-gradient(135deg, var(--c1, #6c3fc5) 0%, var(--c2, #a259e6) 100%);
    border-radius: var(--rad, 12px);
    padding: 2.5rem 2rem;
    text-align: center;
    margin-top: 2.5rem;
  }

  @media (max-width: 576px) {
    .vip-hero { padding: 1.5rem 1rem; }
    .cta-section { padding: 1.5rem 1rem; }
  }