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

  .bg-light {
    background-color: #1a1a2e !important;
    color: var(--text-primary) !important;
  }

  .vip-hero {
    background: var(--color-gradient-1, linear-gradient(135deg, #1a1a2e 0%, #16213e 100%));
    border-radius: var(--radius-3, 16px);
    padding: var(--space-7, 3rem) var(--space-5, 2rem);
    margin-bottom: var(--space-6, 2.5rem);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
  }

  .vip-hero::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255,200,50,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .tier-card {
    border-radius: var(--radius-3, 16px);
    padding: var(--space-5, 2rem) var(--space-4, 1.5rem);
    margin-bottom: var(--space-4, 1.5rem);
    border: 2px solid transparent;
    transition: var(--transition-1, 0.3s ease);
    position: relative;
    overflow: hidden;
  }

  .tier-card.bronze {
    background: linear-gradient(135deg, #1e1510 0%, #2a1e14 100%);
    border-color: #cd7f32;
    color: #e8d5c0;
  }

  .tier-card.silver {
    background: linear-gradient(135deg, #141418 0%, #1e1e26 100%);
    border-color: #c0c0c0;
    color: #e0e0f0;
  }

  .tier-card.gold {
    background: linear-gradient(135deg, #1a1600 0%, #252000 100%);
    border-color: #ffd700;
    color: #fff8d6;
  }

  .tier-card.platinum {
    background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 100%);
    border-color: #e5e4e2;
    color: #f0f0ff;
  }

  .tier-card.diamond {
    background: linear-gradient(135deg, #0a0f1a 0%, #0e1a2e 100%);
    border-color: #b9f2ff;
    color: #dff9ff;
  }

  .tier-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 0.75rem;
  }

  .tier-badge.bronze { background: #cd7f32; color: #fff; }
  .tier-badge.silver { background: #c0c0c0; color: #222; }
  .tier-badge.gold   { background: #ffd700; color: #222; }
  .tier-badge.platinum { background: #e5e4e2; color: #222; }
  .tier-badge.diamond  { background: linear-gradient(90deg, #b9f2ff, #7ec8e3); color: #05161f; }

  .perk-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    background: rgba(255,255,255,0.07);
    flex-shrink: 0;
  }

  .perk-card {
    border-radius: var(--radius-3, 16px);
    padding: var(--space-4, 1.5rem);
    height: 100%;
    border: 1px solid rgba(255,255,255,0.1);
    background: #12121e;
    color: var(--text-primary, #fff);
    display: flex;
    flex-direction: column;
  }

  .table {
    color: var(--text-primary, #eee);
    border-color: rgba(255,255,255,0.1);
  }

  .table thead {
    background: #1a1a2e;
    border-bottom: 2px solid rgba(255,215,0,0.3);
    color: #ffd700;
  }

  .table-striped > tbody > tr:nth-of-type(odd) > * {
    background-color: rgba(255,255,255,0.04);
    color: var(--text-primary, #eee);
  }

  .table-striped > tbody > tr:nth-of-type(even) > * {
    background-color: rgba(0,0,0,0.2);
    color: var(--text-primary, #eee);
  }

  .table > :not(caption) > * > * {
    border-color: rgba(255,255,255,0.08);
  }

  .how-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 1.75rem;
  }

  .step-num {
    min-width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-gradient-1, linear-gradient(135deg, #ffd700, #ff9900));
    color: #1a1a2e;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(255,200,0,0.25);
  }

  .step-body h3 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary, #fff);
  }

  .step-body p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
  }

  .vip-cta-box {
    border-radius: var(--radius-3, 16px);
    background: linear-gradient(135deg, #1c1500 0%, #2a2000 50%, #1a1600 100%);
    border: 2px solid #ffd700;
    padding: var(--space-7, 3rem) var(--space-5, 2rem);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .vip-cta-box::before {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255,215,0,0.10) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .highlight-chip {
    display: inline-block;
    background: rgba(255,215,0,0.12);
    border: 1px solid rgba(255,215,0,0.35);
    color: #ffd700;
    border-radius: 50px;
    padding: 4px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  .check-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .check-list li {
    padding: 0.4rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.97rem;
    color: rgba(255,255,255,0.85);
  }

  .check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: 700;
  }

  @media (max-width: 576px) {
    .vip-hero { padding: 2rem 1.25rem; }
    .vip-cta-box { padding: 2rem 1.25rem; }
  }