.vip-page {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    max-width: 1100px;
    margin: 0 auto;
    padding: var(--space-md) 0;
    min-width: 0;
    width: 100%;
}

/* <fieldset> has intrinsic min-width: min-content; let it shrink. */
.vip-page fieldset { min-width: 0; }

/* ----- Screen-reader-only utility ----- */
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ----- Hero: full-bleed image + centered CTA ----- */
.vip-hero {
    position: relative;
    border: 1px solid rgba(201, 170, 88, 0.25);
    border-radius: var(--radius-lg);
    background: #0a0712;
    overflow: hidden;
    height: clamp(240px, 30vw, 340px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image fills the entire block (cover) with a top-anchored focal point
   so the artwork's "1X1 RANDOM CUP" headline stays visible. A vignette
   gradient softens the edges so the cropping blends into the dark bg. */
.vip-hero__media {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        radial-gradient(ellipse 75% 90% at center 35%,
            rgba(10, 7, 18, 0) 25%,
            rgba(10, 7, 18, 0.7) 70%,
            rgba(10, 7, 18, 0.98) 100%),
        url("../../images/vip/random-cup-hero.jpg");
    background-size: cover, cover, cover;
    background-position: center, center, center 20%;
    background-repeat: no-repeat, no-repeat, no-repeat;
}

/* Stronger dark halo directly under the CTA so the gold button always pops */
.vip-hero::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(460px, 85%);
    height: 140px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 75%);
    pointer-events: none;
}

.vip-hero__cta {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.4rem;
    background: linear-gradient(180deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
    color: #1a1610;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.25);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
    min-height: 44px;
    white-space: nowrap;
}

.vip-hero__cta:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 8px 24px rgba(201, 170, 88, 0.45);
}

.vip-hero__cta:active {
    transform: translateY(0);
}

/* ----- Purchase block ----- */
.vip-purchase {
    background:
        radial-gradient(140% 200% at 0% 0%, rgba(201, 170, 88, 0.10) 0%, transparent 55%),
        var(--bg-secondary);
    border: 1px solid rgba(201, 170, 88, 0.25);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

.vip-purchase__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(201, 170, 88, 0.18);
}

.vip-purchase__title {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 1rem;
    margin: 0;
}

.vip-purchase__price {
    display: inline-flex;
    align-items: baseline;
    gap: 0.35rem;
}

.vip-purchase__price-amount {
    font-family: var(--font-heading);
    color: var(--accent-gold-light);
    font-size: 1.5rem;
    font-weight: 700;
}

.vip-purchase__price-period {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.vip-purchase__intro {
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.vip-purchase__intro:empty,
.vip-purchase__intro:has(.vip-empty) {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.vip-purchase__form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.vip-purchase__legal {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    background: var(--bg-tertiary);
    padding: var(--space-md);
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.vip-purchase__legal legend {
    padding: 0 var(--space-xs);
    margin-left: -4px;
}

/* ----- Custom checkbox ----- */
.vip-check {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    user-select: none;
    line-height: 1.4;
    padding: 4px 0;
}

.vip-check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px;
    height: 1px;
}

.vip-check__mark {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    background: var(--bg-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.vip-check__mark::after {
    content: "";
    width: 10px;
    height: 6px;
    border-left: 2px solid #1a1610;
    border-bottom: 2px solid #1a1610;
    transform: rotate(-45deg) translate(1px, -1px) scale(0.6);
    opacity: 0;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.vip-check input:checked + .vip-check__mark {
    background: linear-gradient(180deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
    border-color: var(--accent-gold);
}

.vip-check input:checked + .vip-check__mark::after {
    opacity: 1;
    transform: rotate(-45deg) translate(1px, -1px) scale(1);
}

.vip-check input:focus-visible + .vip-check__mark {
    box-shadow: 0 0 0 3px rgba(201, 170, 88, 0.3);
}

.vip-check:hover .vip-check__mark {
    border-color: rgba(201, 170, 88, 0.6);
}

.vip-check__text {
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.vip-check__text a {
    color: var(--accent-gold-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.vip-check input:checked ~ .vip-check__text { color: var(--text-primary); }

.vip-purchase__field {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.vip-purchase__label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.vip-purchase__form input[type="text"] {
    width: 100%;
    padding: 0.7rem var(--space-md);
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    min-height: 44px;
}

.vip-purchase__form input[type="text"]::placeholder { color: var(--text-muted); }

.vip-purchase__form input[type="text"]:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(201, 170, 88, 0.18);
}

.vip-purchase__hint {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ----- Friend ID row + Verify button ----- */
.vip-purchase__id-row {
    display: flex;
    gap: var(--space-sm);
    align-items: stretch;
}

.vip-purchase__id-row > input[type="text"] {
    flex: 1 1 auto;
}

.vip-purchase__verify {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0 1rem;
    min-height: 44px;
    background: var(--bg-tertiary);
    color: var(--accent-gold-light);
    border: 1px solid rgba(201, 170, 88, 0.45);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.vip-purchase__verify:not(:disabled):hover {
    background: rgba(201, 170, 88, 0.12);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.vip-purchase__verify:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.vip-purchase__verify-spinner {
    display: none;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(201, 170, 88, 0.3);
    border-top-color: var(--accent-gold);
    border-radius: 50%;
    animation: vipSpin 0.7s linear infinite;
}

.vip-purchase__verify.is-loading .vip-purchase__verify-spinner { display: inline-block; }
.vip-purchase__verify.is-loading .vip-purchase__verify-label { opacity: 0.7; }

@keyframes vipSpin { to { transform: rotate(360deg); } }

/* ----- Verification panel (always visible, state-driven) ----- */
.vip-verify {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bg-tertiary);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.vip-verify[data-state="loading"] { border-color: rgba(201, 170, 88, 0.35); }
.vip-verify[data-state="found"]   { border-color: rgba(76, 175, 80, 0.45); }
.vip-verify[data-state="partial"] { border-color: rgba(201, 170, 88, 0.55); background: rgba(201, 170, 88, 0.05); }
.vip-verify[data-state="error"]   { border-color: rgba(194, 60, 42, 0.45); background: rgba(194, 60, 42, 0.06); }

.vip-verify__card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.vip-verify__avatar {
    position: relative;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.vip-verify__avatar--ph {
    background:
        linear-gradient(135deg, var(--bg-secondary), var(--bg-hover));
}

.vip-verify__avatar--ph::after {
    content: "?";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    opacity: 0.6;
}

.vip-verify__avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vip-verify__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    flex: 1 1 auto;
}

.vip-verify__name {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 600;
    word-break: break-word;
}

.vip-verify[data-state="empty"] .vip-verify__name,
.vip-verify[data-state="error"] .vip-verify__name {
    color: var(--text-muted);
    font-weight: 500;
}

.vip-verify__medal {
    width: 28px;
    height: auto;
    flex-shrink: 0;
}

.vip-verify__meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm) var(--space-md);
    color: var(--text-secondary);
    font-size: 0.88rem;
}

.vip-verify__steam {
    color: var(--accent-gold-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.vip-verify__steam:hover { color: var(--accent-gold); }
.vip-verify__steam.is-disabled {
    pointer-events: none;
    color: var(--text-muted);
    text-decoration: none;
}

.vip-verify__status {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.45;
}

.vip-verify[data-state="error"]   .vip-verify__status { color: var(--accent-red-light); }
.vip-verify[data-state="found"]   .vip-verify__status { color: var(--accent-green); }
.vip-verify[data-state="partial"] .vip-verify__status { color: var(--accent-gold-light); }

.vip-verify__confirm {
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: var(--space-md);
    margin-top: 0;
}

.vip-verify__confirm input[type="checkbox"]:disabled ~ .vip-check__mark {
    opacity: 0.4;
    cursor: not-allowed;
}

.vip-verify__confirm:has(input[type="checkbox"]:disabled) {
    cursor: not-allowed;
    opacity: 0.7;
}

.vip-purchase__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.85rem 1.4rem;
    background: linear-gradient(180deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
    color: #1a1610;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    cursor: pointer;
    min-height: 48px;
    transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.vip-purchase__cta:not(:disabled):hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 6px 18px rgba(201, 170, 88, 0.25);
}

.vip-purchase__cta:disabled {
    cursor: not-allowed;
    opacity: 0.55;
    filter: grayscale(0.2);
}

.vip-purchase__note {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.vip-purchase__note a {
    color: var(--accent-gold-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.vip-purchase__note strong { color: var(--text-secondary); }

/* ----- Generic card / VIP block ----- */
.vip-block,
.vip-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.vip-block {
    padding: var(--space-lg);
}

.vip-block__header {
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(201, 170, 88, 0.18);
}

.vip-block__title {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 1rem;
    margin: 0;
}

/* ----- Legal cards (collapsible) ----- */
.vip-legal {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.vip-card[open] {
    box-shadow: 0 1px 0 rgba(201, 170, 88, 0.12) inset;
}

.vip-card__summary {
    list-style: none;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    transition: background 0.15s ease;
    min-height: 52px;
}

.vip-card__summary::-webkit-details-marker { display: none; }

.vip-card__summary:hover {
    background: rgba(201, 170, 88, 0.05);
}

.vip-card__title {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.95rem;
    line-height: 1.3;
}

.vip-card__chevron {
    color: var(--text-secondary);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.vip-card[open] .vip-card__chevron {
    transform: rotate(180deg);
    color: var(--accent-gold);
}

.vip-card__body {
    padding: 0 var(--space-lg) var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: var(--space-md);
    max-height: 480px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(201, 170, 88, 0.4) transparent;
}

.vip-card__body::-webkit-scrollbar { width: 8px; }
.vip-card__body::-webkit-scrollbar-track { background: transparent; }
.vip-card__body::-webkit-scrollbar-thumb {
    background: rgba(201, 170, 88, 0.35);
    border-radius: 4px;
}

.vip-block__body {
    color: var(--text-primary);
}

/* ----- Trusted-HTML resets so admin paste looks consistent ----- */
.vip-html {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.65;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.vip-html p { margin: 0 0 var(--space-md); }
.vip-html p:last-child { margin-bottom: 0; }
.vip-html h1, .vip-html h2, .vip-html h3, .vip-html h4 {
    color: var(--text-primary);
    margin-top: var(--space-md);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}
.vip-html h1 { font-size: 1.4rem; }
.vip-html h2 { font-size: 1.2rem; }
.vip-html h3 { font-size: 1.05rem; }
.vip-html h4 { font-size: 1rem; }

.vip-html ul, .vip-html ol {
    margin: 0 0 var(--space-md);
    padding-left: 1.4rem;
}
.vip-html li { margin-bottom: var(--space-xs); }

.vip-html a {
    color: var(--accent-gold-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.vip-html a:hover { color: var(--accent-gold); }

.vip-html strong { color: var(--text-primary); }
.vip-html em { color: var(--text-secondary); }

.vip-html img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
}

.vip-html table {
    display: block;
    overflow-x: auto;
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 var(--space-md);
}
.vip-html th, .vip-html td {
    padding: var(--space-xs) var(--space-sm);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
}
.vip-html th {
    background: rgba(201, 170, 88, 0.08);
    color: var(--accent-gold);
}

.vip-html pre, .vip-html code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
}
.vip-html code { padding: 0.1rem 0.35rem; font-size: 0.9em; }
.vip-html pre {
    padding: var(--space-sm) var(--space-md);
    overflow-x: auto;
    margin: 0 0 var(--space-md);
}

.vip-html hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: var(--space-md) 0;
}

/* ----- Footer (compact) ----- */
.vip-footer {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: var(--space-sm) var(--space-md);
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.5;
    text-align: center;
}

.vip-footer p { margin: 0 0 2px; }
.vip-footer p:last-child { margin-bottom: 0; }
.vip-footer strong { color: var(--text-secondary); font-weight: 600; }
.vip-footer a { color: var(--accent-gold-light); }

.vip-footer .vip-empty,
.vip-empty {
    color: var(--text-muted);
    font-style: italic;
    margin: 0;
}

/* Smooth in-page navigation from purchase form to legal cards */
.vip-card { scroll-margin-top: 80px; }

/* ----- Tablet ----- */
@media (max-width: 1023px) {
    .vip-page { padding: var(--space-sm) var(--space-md); }
    .vip-card__body { max-height: 560px; }
}

/* ----- Mobile ----- */
@media (max-width: 768px) {
    .vip-page {
        gap: var(--space-md);
        padding: var(--space-sm);
    }

    .vip-hero {
        border-radius: var(--radius-md);
        height: clamp(200px, 55vw, 260px);
    }
    .vip-hero__cta {
        padding: 0.7rem 1.1rem;
        font-size: 0.95rem;
    }

    .vip-purchase { padding: var(--space-md); }
    .vip-purchase__header { flex-direction: column; align-items: flex-start; gap: var(--space-xs); }
    .vip-purchase__price-amount { font-size: 1.35rem; }
    .vip-purchase__legal { padding: var(--space-sm) var(--space-md); }
    .vip-purchase__cta {
        width: 100%;
    }

    .vip-purchase__id-row { flex-direction: column; }
    .vip-purchase__verify { width: 100%; }

    .vip-verify__card { flex-wrap: wrap; }
    .vip-verify__avatar { width: 56px; height: 56px; }
    .vip-verify__name { font-size: 1rem; }
    .vip-verify__meta { font-size: 0.85rem; gap: 4px var(--space-sm); }

    .vip-card__summary {
        padding: var(--space-md);
        min-height: 56px;
    }
    .vip-card__title { font-size: 0.85rem; letter-spacing: 0.04em; }

    .vip-card__body {
        padding: var(--space-sm) var(--space-md) var(--space-md);
        max-height: none;
        overflow: visible;
    }

    .vip-html { font-size: 0.92rem; line-height: 1.6; }
    .vip-html h1 { font-size: 1.2rem; }
    .vip-html h2 { font-size: 1.1rem; }
    .vip-html h3 { font-size: 1rem; }
    .vip-html ul, .vip-html ol { padding-left: 1.2rem; }

    .vip-footer {
        font-size: 0.75rem;
        padding: var(--space-xs) var(--space-sm);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .vip-hero__cta { padding: 0.65rem 0.9rem; font-size: 0.9rem; }
    .vip-check__text { font-size: 0.88rem; }
}

.vip-plans {
    border: 0;
    padding: 0;
    margin: 0 0 var(--space-md);
}
.vip-plans__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-sm);
    margin-top: var(--space-xs, 0.5rem);
}
.vip-plan {
    position: relative;
    display: block;
    cursor: pointer;
    border: 1px solid rgba(201, 170, 88, 0.25);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
    padding: 0.85rem 1rem;
    transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
}
.vip-plan:hover {
    border-color: rgba(201, 170, 88, 0.55);
    background: rgba(201, 170, 88, 0.05);
}
.vip-plan__input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    margin: 0;
    cursor: pointer;
}
.vip-plan__input:focus-visible + .vip-plan__body {
    outline: 2px solid var(--accent-gold, #c9aa58);
    outline-offset: 3px;
    border-radius: var(--radius-sm, 6px);
}
.vip-plan__body {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.85);
    padding-right: 4.5rem;
}
.vip-plan__price {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold-light, #e8d49a);
}
.vip-plan__perks {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.vip-plan__perk {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    line-height: 1;
}
.vip-plan__icon {
    flex: 0 0 auto;
    display: block;
    color: var(--accent-gold-light, #e8d49a);
}
.vip-plan__perk-sub {
    color: rgba(255, 255, 255, 0.6);
    margin-left: 0.2rem;
    font-size: 0.85em;
}
.vip-plan__note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
}
.vip-plan:has(.vip-plan__input:checked) {
    border-color: var(--accent-gold, #c9aa58);
    background: linear-gradient(180deg, rgba(201, 170, 88, 0.14) 0%, rgba(201, 170, 88, 0.06) 100%);
    box-shadow: 0 0 0 1px rgba(201, 170, 88, 0.4) inset;
}
.vip-plan--featured::after {
    content: "Выгоднее";
    position: absolute;
    top: -10px;
    right: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent-gold-light, #e8d49a) 0%, var(--accent-gold, #c9aa58) 100%);
    color: #1a1610;
}

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