.vip-phone {
    background: var(--app-phone-bg);
    color: var(--phone-text);
}

.vip-phone a,
.vip-phone a:hover,
.vip-phone a:active,
.vip-phone a:visited,
.vip-phone a:focus {
    text-decoration: none;
}

.vip-header {
    height: 52px;
    display: flex;
    align-items: center;
    padding: 0 14px;
}

.vip-close {
    width: 24px;
    height: 24px;
    color: var(--phone-text);
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.vip-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--phone-text);
}

.vip-content {
    padding: 10px 12px 0;
}

.vip-switch-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.vip-switch {
    border-radius: 999px;
    padding: 0;
    display: inline-flex;
    gap: 0;
    overflow: hidden;
}

.switch-btn {
    padding: 0 24px;
    height: 38px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: var(--phone-text);
    opacity: .5;
    transition: all .15s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.12);
}

.switch-btn.active {
    background: rgba(255, 255, 255, 0.22);
    opacity: 1;
    font-weight: 700;
}

.switch-btn:first-child.active {
    border-radius: 999px 0 0 999px;
}

.switch-btn:last-child.active {
    border-radius: 0 999px 999px 0;
}

.vip-user-meta {
    font-size: 13px;
    color: var(--muted-text);
    white-space: nowrap;
    margin-right: 10px;
}

.vip-user-meta span {
    color: var(--accent);
}

.plan-list {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
}

.plan-list::-webkit-scrollbar {
    display: none;
}

.plan-card {
    width: 111px;
    min-width: 111px;
    height: 164px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background-color: var(--surface);
    box-sizing: border-box;
    text-align: center;
    cursor: pointer;
}

.plan-card.active {
    border: 2px solid var(--accent);
    background: var(--accent-weak);
}

.plan-name {
    font-size: 14px;
    color: var(--phone-text);
    font-weight: 500;
}

.plan-price {
    margin-top: 8px;
    font-size: 34px;
    line-height: 1;
    font-weight: 700;
    color: var(--phone-text);
}

.plan-price small {
    font-size: 16px;
    margin-right: 1px;
}

.plan-old {
    margin-top: 8px;
    font-size: 12px;
    color: var(--muted-text);
    text-decoration: line-through;
}

.plan-card.active .plan-name,
.plan-card.active .plan-price,
.plan-card.active .plan-old {
    color: var(--accent);
}

.pay-bar {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    width: 540px;
    max-width: 100vw;
    padding: 0 24px;
    z-index: 1001;
}

.pay-btn {
    width: 100%;
    height: 44px;
    border: 0;
    border-radius: 22px;
    background: var(--accent);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
}
