body[data-page="vip"] {
    background:
        radial-gradient(circle at 20% 10%, rgba(124, 58, 237, 0.22), transparent 45%),
        radial-gradient(circle at 80% 0%, rgba(79, 140, 255, 0.18), transparent 40%),
        var(--bg);
    background-attachment: fixed;
}

.vip-hero {
    margin-top: 72px;
    text-align: center;
}

.vip-hero .section-label {
    display: inline-block;
    margin: 0 0 14px;
    padding: 4px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.vip-hero h1 {
    margin: 0 auto 16px;
    max-width: 720px;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.vip-hero-lead {
    margin: 0 auto;
    max-width: 640px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.vip-plans-section {
    margin-top: 56px;
}

.vip-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.vip-plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    transition: border-color 220ms ease, transform 220ms ease;
}

.vip-plan-card:hover {
    border-color: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

.vip-plan-card-featured {
    border-color: rgba(124, 58, 237, 0.5);
    background: linear-gradient(
        180deg,
        rgba(124, 58, 237, 0.12),
        rgba(255, 255, 255, 0.03) 60%
    );
}

.vip-plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, #7c3aed, #4f8cff);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 22px rgba(124, 58, 237, 0.35);
}

.vip-plan-head {
    margin-bottom: 20px;
}

.vip-plan-tag {
    display: inline-block;
    margin-bottom: 8px;
    padding: 2px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.76rem;
    color: var(--text-secondary);
}

.vip-plan-head h2 {
    margin: 0 0 12px;
    font-size: 1.6rem;
    font-weight: 700;
}

.vip-plan-price {
    margin: 0 0 8px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.vip-plan-price strong {
    font-size: 2rem;
    font-weight: 700;
}

.vip-plan-price span {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.vip-plan-tagline {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.vip-plan-features {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--text-secondary);
}

.vip-plan-features li {
    position: relative;
    padding-left: 22px;
    font-size: 0.92rem;
    line-height: 1.55;
}

.vip-plan-features li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(79, 140, 255, 0.9);
    box-shadow: 0 0 0 3px rgba(79, 140, 255, 0.22);
}

.vip-plan-features strong {
    color: var(--text);
}

.vip-plan-cta {
    margin-top: auto;
    text-align: center;
}

.vip-details-section {
    margin-top: 100px;
}

.vip-compare-wrap {
    margin-top: 32px;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.02);
}

.vip-compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

.vip-compare-table th,
.vip-compare-table td {
    padding: 14px 18px;
    text-align: left;
    font-size: 0.92rem;
    border-bottom: 1px solid var(--line);
}

.vip-compare-table th {
    font-weight: 600;
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

.vip-compare-table tr:last-child td {
    border-bottom: 0;
}

.vip-compare-table td {
    color: var(--text-secondary);
}

.vip-compare-table td:first-child {
    color: var(--text);
    font-weight: 500;
}

.vip-faq-section {
    margin: 100px 0 60px;
}

.vip-faq-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.vip-faq-item {
    padding: 22px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
}

.vip-faq-item h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    font-weight: 600;
}

.vip-faq-item p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 960px) {
    .vip-plans-grid {
        grid-template-columns: 1fr;
    }

    .vip-faq-grid {
        grid-template-columns: 1fr;
    }
}
