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

  .vsWrap {
    --c-1: #0a0118;
    --c-2: #1a0b35;
    --c-3: #ff2e9a;
    --c-4: #ffd23f;
    --c-5: #00f0ff;
    --c-6: #ffffff;
    --c-7: rgba(255,255,255,0.08);
    --sp-1: 1rem;
    --sp-2: 2rem;
    --sp-3: 3.5rem;
    --rad-1: 14px;
    --rad-2: 28px;
    --grad-1: linear-gradient(135deg, #ff2e9a 0%, #ffd23f 100%);
    --grad-2: linear-gradient(135deg, #00f0ff 0%, #ff2e9a 100%);
    --grad-3: linear-gradient(180deg, #1a0b35 0%, #0a0118 100%);
    --shdw-1: 0 20px 60px rgba(255,46,154,0.25);
    --shdw-2: 0 10px 40px rgba(0,0,0,0.5);

    color: var(--c-6);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.65;
  }

  .vsHero {
    position: relative;
    padding: var(--sp-3) var(--sp-2);
    margin-bottom: var(--sp-3);
    background: radial-gradient(ellipse at top right, rgba(255,46,154,0.25), transparent 60%), radial-gradient(ellipse at bottom left, rgba(0,240,255,0.18), transparent 60%), var(--grad-3);
    border-radius: var(--rad-2);
    overflow: hidden;
    border: 1px solid var(--c-7);
  }

  .vsHeroBadge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    background: rgba(255,210,63,0.12);
    border: 1px solid rgba(255,210,63,0.4);
    border-radius: 100px;
    color: var(--c-4);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .vsHeroBadge::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--c-4);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--c-4);
    animation: vsPulse 1.8s infinite;
  }
  @keyframes vsPulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
  }

  .vsHero h1 {
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1.1;
    margin: 0 0 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
  }
  .vsHero h1 span {
    background: var(--grad-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .vsHeroLead {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    max-width: 720px;
    color: rgba(255,255,255,0.78);
    margin-bottom: 2rem;
  }

  .vsStats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--sp-1);
    margin-bottom: 2rem;
  }
  .vsStatItem {
    padding: 1rem 1.2rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--c-7);
    border-radius: var(--rad-1);
    backdrop-filter: blur(10px);
  }
  .vsStatNum {
    display: block;
    font-size: 1.7rem;
    font-weight: 800;
    background: var(--grad-2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .vsStatLabel {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .vsHeroCta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1.1rem 2.2rem;
    background: var(--grad-1);
    color: #0a0118;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    box-shadow: var(--shdw-1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .vsHeroCta:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 70px rgba(255,46,154,0.45);
  }
  .vsHeroCta::after {
    content: '→';
    font-size: 1.2rem;
  }

  .vsSection { margin-bottom: var(--sp-3); padding: 0; }

  .vsH2 {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    margin: 0 0 1.5rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    position: relative;
    padding-left: 1.2rem;
  }
  .vsH2::before {
    content: '';
    position: absolute;
    left: 0; top: 12%;
    width: 5px; height: 76%;
    background: var(--grad-1);
    border-radius: 4px;
  }

  .vsH3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
    font-weight: 700;
    color: var(--c-4);
  }

  .vsIntroText {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.78);
    margin-bottom: 1.5rem;
  }

  .vsCardsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--sp-1);
  }
  .vsCard {
    padding: 1.4rem;
    background: linear-gradient(160deg, rgba(255,46,154,0.08), rgba(0,240,255,0.04));
    border: 1px solid var(--c-7);
    border-radius: var(--rad-1);
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .vsCard:hover {
    transform: translateY(-4px);
    border-color: rgba(255,46,154,0.5);
  }
  .vsCardIcon {
    display: inline-flex;
    width: 44px; height: 44px;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
    background: var(--grad-1);
    border-radius: 12px;
    font-weight: 800;
    color: #0a0118;
    font-size: 1.2rem;
  }
  .vsCard h4 {
    font-size: 1.05rem;
    margin: 0 0 0.4rem;
    font-weight: 700;
  }
  .vsCard p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
  }

  .vsProviderGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--sp-1);
  }
  .vsProvider {
    padding: 1.5rem;
    background: var(--grad-3);
    border: 1px solid var(--c-7);
    border-radius: var(--rad-1);
    box-shadow: var(--shdw-2);
    transition: transform 0.3s ease;
  }
  .vsProvider:hover { transform: translateY(-5px) scale(1.01); }
  .vsProviderHead {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--c-7);
  }
  .vsProviderName {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-6);
  }
  .vsProviderTag {
    padding: 0.25rem 0.7rem;
    background: rgba(0,240,255,0.12);
    border: 1px solid rgba(0,240,255,0.3);
    border-radius: 100px;
    font-size: 0.72rem;
    color: var(--c-5);
    font-weight: 600;
    text-transform: uppercase;
  }
  .vsProviderTitles {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.72);
  }

  .table-responsive {
    overflow-x: auto;
    border-radius: var(--rad-1);
    border: 1px solid var(--c-7);
    background: rgba(255,255,255,0.02);
  }
  .vsTable {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
  }
  .vsTable th {
    padding: 1rem;
    text-align: left;
    background: var(--grad-1);
    color: #0a0118;
    font-weight: 700;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .vsTable td {
    padding: 0.95rem 1rem;
    border-top: 1px solid var(--c-7);
    font-size: 0.95rem;
  }
  .vsTable tr:hover td { background: rgba(255,46,154,0.06); }
  .vsRtp {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    background: rgba(255,210,63,0.15);
    color: var(--c-4);
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.88rem;
  }

  .vsHighlight {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255,46,154,0.12), rgba(0,240,255,0.08));
    border: 1px solid rgba(255,46,154,0.3);
    border-radius: var(--rad-2);
    margin: 1.5rem 0;
  }
  .vsHighlight p { margin: 0; color: rgba(255,255,255,0.85); }

  .vsMobileSplit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-2);
    align-items: center;
    padding: var(--sp-2);
    background: var(--grad-3);
    border: 1px solid var(--c-7);
    border-radius: var(--rad-2);
  }
  .vsMobileBadges {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .vsMobileBadge {
    padding: 1rem 1.2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--c-7);
    border-radius: var(--rad-1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .vsMobileBadge strong { color: var(--c-5); }
  @media (max-width: 768px) {
    .vsMobileSplit { grid-template-columns: 1fr; }
  }

  .vsFaq { display: flex; flex-direction: column; gap: 0.8rem; }
  .vsFaqItem {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--c-7);
    border-radius: var(--rad-1);
    overflow: hidden;
    transition: border-color 0.3s ease;
  }
  .vsFaqItem[open] { border-color: rgba(255,46,154,0.4); }
  .vsFaqItem summary {
    cursor: pointer;
    padding: 1.1rem 1.3rem;
    font-weight: 600;
    font-size: 1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  .vsFaqItem summary::-webkit-details-marker { display: none; }
  .vsFaqItem summary::after {
    content: '+';
    width: 28px; height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-1);
    color: #0a0118;
    border-radius: 50%;
    font-weight: 800;
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }
  .vsFaqItem[open] summary::after { transform: rotate(45deg); }
  .vsFaqBody {
    padding: 0 1.3rem 1.2rem;
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
  }

  .vsFinalCta {
    text-align: center;
    padding: var(--sp-3) var(--sp-2);
    background: radial-gradient(ellipse at center, rgba(255,46,154,0.25), transparent 70%), var(--grad-3);
    border-radius: var(--rad-2);
    border: 1px solid var(--c-7);
    margin-top: var(--sp-3);
  }
  .vsFinalCta h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 0 0 0.8rem;
    color: var(--c-6);
  }
  .vsFinalCta p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.8rem;
  }

  @media (max-width: 768px) {
    .vsHero { padding: 2rem 1.3rem; }
    .vsStats { grid-template-columns: repeat(2, 1fr); }
  }