/* Darsoone VIP — aligned with Android VIP palette */
:root {
    --vip-hero-start: #4AA6EA;
    --vip-hero-end: #3E74D6;
    --vip-purple: #6B1FB7;
    --vip-purple-light: #8A3FE0;
    --vip-offer-start: #7B2FF7;
    --vip-offer-end: #9B4DFF;
    --vip-icon-bg: #F0E7FB;
    --vip-card-inner: #F7F4FC;
    --vip-card-stroke: #ECE3F8;
    --vip-subtitle: #9AA0AE;
    --vip-dash-bg: #F4F6FA;
    --vip-dash-cta: #2F7FE0;
    --vip-badge: #7A2FD0;
    --vip-discount: #168A56;
    --vip-strike: #D07183;
    --vip-price: #6925BC;
    --vip-lock: #B39DDB;
}

.vip-nav-badge {
    background: linear-gradient(135deg, var(--vip-offer-start), var(--vip-hero-start));
    color: #fff !important;
    font-size: 10px;
    vertical-align: middle;
    padding: 3px 7px;
}

.vip-page {
    background: var(--vip-dash-bg);
    min-height: 60vh;
    direction: rtl;
    text-align: right;
    padding-bottom: 3rem;
}

.vip-alert {
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 1rem;
    font-size: 14px;
}
.vip-alert-error { background: #fde8ec; color: #a33; }
.vip-alert-success { background: #e8f8ef; color: #168A56; }

/* ===== Marketing top + Android-like hero ===== */
.vip-mkt {
    max-width: 1100px;
    margin: 0 auto 1.5rem;
}
.vip-mkt-main {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.vip-mkt-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    direction: ltr;
    margin-bottom: 14px;
    gap: 12px;
}
.vip-mkt-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--vip-icon-bg);
    color: var(--vip-purple);
    border-radius: 999px;
    padding: 7px 14px;
    font-weight: 800;
    font-size: 13px;
}
.vip-mkt-chip i { font-size: 14px; }
.vip-mkt-title {
    font-size: 17px;
    font-weight: 800;
    color: #2F3446;
    margin: 0;
    direction: rtl;
}

/* Hero = 16:9 promo video card (Android CardView) */
.vip-hero-media {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    background: #2A1650;
    aspect-ratio: 16 / 9;
    box-shadow: 0 2px 10px rgba(42, 22, 80, .18);
    cursor: pointer;
}
.vip-hero-media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    z-index: 2;
    background: #2A1650;
}
.vip-hero-cover {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 18% 12%, rgba(255,255,255,.22), transparent 34%),
        radial-gradient(circle at 88% 78%, rgba(154, 77, 255, .35), transparent 40%),
        linear-gradient(160deg, #4AA6EA 0%, #3E74D6 42%, #5520A6 100%);
}
.vip-hero-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .22;
    background-image:
        linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
    background-size: 28px 28px;
}
.vip-hero-cover::after {
    content: "VIP";
    position: absolute;
    left: 50%;
    top: 42%;
    transform: translate(-50%, -50%);
    font-size: clamp(2.8rem, 10vw, 4.5rem);
    font-weight: 900;
    letter-spacing: .08em;
    color: rgba(255,255,255,.18);
    pointer-events: none;
}
.vip-hero-play {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
}
.vip-hero-play-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0,0,0,.6);
    border: 1.5px solid rgba(255,255,255,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    padding-left: 3px;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    transition: transform .15s ease, background .15s ease;
}
.vip-hero-media:hover .vip-hero-play-circle {
    transform: scale(1.06);
    background: rgba(0,0,0,.72);
}
.vip-hero-media.is-playing .vip-hero-cover,
.vip-hero-media.is-playing .vip-hero-play { display: none; }
.vip-hero-media.is-playing video { display: block; }

/* Subscription card (Android white plan card) */
.vip-sub-card {
    margin-top: 0;
    background: #fff;
    border: 1px solid #E3E4EA;
    border-radius: 30px;
    padding: 20px 18px 18px;
    box-shadow: 0 3px 14px rgba(47, 52, 70, .06);
}
.vip-sub-card > h2 {
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    color: #2F3446;
    margin: 0 0 8px;
}
.vip-sub-card > .vip-sub-desc {
    text-align: center;
    font-size: 13px;
    color: #9A9CAB;
    line-height: 1.8;
    margin: 0 0 18px;
}
.vip-grade-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.vip-btn-change-grade {
    flex-shrink: 0;
    height: 48px;
    padding: 0 15px;
    border-radius: 16px;
    border: 1px solid #E7E2ED;
    background: #fff;
    color: #555866;
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
}
.vip-grade-selected {
    flex: 1;
    min-width: 0;
    height: 48px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 12px 0 14px;
    border-radius: 16px;
    border: 1px solid #EADCF8;
    background: linear-gradient(135deg, #FAF7FF, #F2E8FF);
}
.vip-grade-check {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8E3BEA, #6824BD);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}
.vip-grade-selected-title {
    flex: 1;
    min-width: 0;
    font-weight: 800;
    font-size: 14px;
    color: #6824BD;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.vip-grade-selected-caption {
    font-size: 10px;
    font-weight: 800;
    color: #9693A1;
    flex-shrink: 0;
}

.vip-price-box {
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(145deg, rgba(113,43,204,.45), rgba(242,255,255,.95), rgba(140,197,154,.6));
    box-shadow: 0 6px 18px rgba(104, 36, 189, .12);
    overflow: hidden;
}
.vip-offer-header {
    position: relative;
    overflow: hidden;
    min-height: 112px;
    padding: 18px 20px 30px;
    color: #fff;
    background:
        radial-gradient(circle at 12% 8%, rgba(255,255,255,.22), transparent 42%),
        linear-gradient(135deg, #5520A6 0%, #7430C8 48%, #9952EB 100%);
    border-radius: 27px 27px 22px 22px;
}
.vip-offer-header-orbit {
    position: absolute;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.38);
    top: 18px;
    right: -48px;
    opacity: .35;
    pointer-events: none;
}
.vip-offer-header-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 14px;
}
.vip-offer-copy { flex: 1; min-width: 0; text-align: right; }
.vip-offer-badge {
    display: inline-flex;
    align-items: center;
    height: 25px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.24);
    font-size: 10px;
    font-weight: 800;
    color: rgba(255,255,255,.94);
}
.vip-offer-grade {
    display: block;
    margin-top: 5px;
    font-size: 20px;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.vip-offer-full {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,.76);
}
.vip-orbit {
    position: relative;
    width: 68px;
    height: 68px;
    flex-shrink: 0;
}
.vip-orbit::before,
.vip-orbit::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.38);
    left: 50%;
    top: 50%;
}
.vip-orbit::before {
    width: 78px;
    height: 54px;
    transform: translate(-50%, -50%) rotate(-24deg);
}
.vip-orbit::after {
    width: 52px;
    height: 78px;
    opacity: .55;
    transform: translate(-50%, -50%) rotate(40deg);
}
.vip-orbit-core {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 17px;
    letter-spacing: .02em;
    background: linear-gradient(145deg, rgba(61,255,255,.24), rgba(20,255,255,.08));
    border: 1px solid rgba(255,255,255,.35);
}

.vip-price-panel {
    position: relative;
    margin: -18px 12px 12px;
    background: rgba(255,255,255,.98);
    border-radius: 22px;
    padding: 40px 18px 17px;
    box-shadow: 0 4px 14px rgba(47, 52, 70, .08);
    text-align: center;
}
.vip-discount-float {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 108px;
    height: 31px;
    padding: 0 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #D9EBDF;
    color: var(--vip-discount);
    font-size: 11px;
    font-weight: 800;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(22, 138, 86, .12);
    white-space: nowrap;
}
.vip-discount-float.is-visible { display: inline-flex; }
.vip-price-caption {
    font-size: 12px;
    font-weight: 800;
    color: #9698A5;
}
.vip-price-value {
    margin-top: 6px;
    font-size: 28px;
    font-weight: 800;
    color: var(--vip-price);
    line-height: 1.2;
}
.vip-price-original {
    margin-top: 7px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 11px;
    color: #A0A2AB;
}
.vip-price-original.is-visible { display: flex; }
.vip-price-strike {
    position: relative;
    font-weight: 800;
    font-size: 13px;
    color: #A5A7B0;
    padding: 0 3px;
}
.vip-price-strike::after {
    content: "";
    position: absolute;
    left: -3px;
    right: -3px;
    top: 50%;
    height: 2px;
    background: var(--vip-strike);
    transform: rotate(-12deg);
}
.vip-price-divider {
    height: 1px;
    background: #ECE7F2;
    margin: 15px 0 12px;
}
.vip-feature-pills {
    display: flex;
    gap: 8px;
}
.vip-feature-pill {
    flex: 1;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 12px;
    background: #FAF8FD;
    border: 1px solid #EDE8F3;
    color: #66616E;
    font-size: 10px;
    font-weight: 800;
}
.vip-feature-pill i { color: #7A2ED3; font-size: 12px; }

.vip-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    border: 0;
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 700;
    text-decoration: none !important;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease;
}
.vip-btn:hover { transform: translateY(-1px); text-decoration: none !important; }
.vip-btn-buy {
    display: flex;
    width: 100%;
    height: 58px;
    margin-top: 16px;
    border-radius: 18px;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #fff !important;
    text-decoration: none !important;
    background: linear-gradient(90deg, #6824BD, #9745F2);
    box-shadow: 0 4px 14px rgba(104, 36, 189, .28);
}
.vip-btn-buy:hover { color: #fff !important; }
.vip-btn-solid {
    background: linear-gradient(135deg, var(--vip-purple), var(--vip-purple-light));
    color: #fff !important;
}
.vip-btn-solid:hover { color: #fff !important; }
.vip-btn-ghost {
    background: #fff;
    color: var(--vip-dash-cta) !important;
    border: 1px solid #d7e6f8;
}
.vip-btn-sm { padding: 8px 14px; font-size: 13px; width: auto; }

@media (max-width: 575px) {
    .vip-grade-row { flex-wrap: wrap; }
    .vip-btn-change-grade { width: 100%; }
    .vip-price-value { font-size: 24px; }
    .vip-feature-pill { font-size: 9px; padding: 0 4px; }
}

@media (min-width: 768px) {
    .vip-mkt-main {
        flex-direction: row;
        align-items: stretch;
        gap: 22px;
    }
    .vip-hero-media {
        flex: 1 1 48%;
        min-width: 0;
        align-self: stretch;
        aspect-ratio: auto;
        min-height: 320px;
        height: auto;
    }
    .vip-sub-card {
        flex: 1 1 52%;
        min-width: 0;
        display: flex;
        flex-direction: column;
    }
    .vip-price-box { margin-top: auto; }
    .vip-btn-buy { margin-top: 14px; }
}

@media (min-width: 992px) {
    .vip-hero-media { min-height: 380px; }
    .vip-sub-card { padding: 22px 22px 20px; }
}

/* Feature cards */
.vip-section-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #222;
    margin: 1.5rem 0 .85rem;
}
.vip-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}
.vip-feature-card {
    background: #fff;
    border: 1px solid var(--vip-card-stroke);
    border-radius: 16px;
    padding: 1rem;
    position: relative;
    text-decoration: none !important;
    color: inherit;
    transition: box-shadow .2s ease, transform .15s ease;
    display: block;
}
.vip-feature-card:hover {
    box-shadow: 0 8px 20px rgba(107, 31, 183, .1);
    transform: translateY(-2px);
    color: inherit;
}
.vip-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--vip-icon-bg);
    color: var(--vip-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: .65rem;
}
.vip-feature-card h3 {
    font-size: .95rem;
    font-weight: 700;
    margin: 0 0 .25rem;
}
.vip-feature-card p {
    margin: 0;
    font-size: 12.5px;
    color: var(--vip-subtitle);
    line-height: 1.7;
}
.vip-lock {
    position: absolute;
    top: 12px;
    left: 12px;
    color: var(--vip-lock);
    font-size: 14px;
}

/* Steps */
.vip-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.vip-step {
    background: #fff;
    border-radius: 16px;
    padding: 1rem;
    border: 1px solid var(--vip-card-stroke);
    text-align: center;
}
.vip-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--vip-icon-bg);
    color: var(--vip-purple);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: .5rem;
}
.vip-step h4 { font-size: .9rem; margin: 0 0 .25rem; }
.vip-step p { margin: 0; font-size: 12px; color: var(--vip-subtitle); }

/* Dashboard */
.vip-dash-hero {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: linear-gradient(90deg, #3B82E6, #5BB8F0);
    border-radius: 22px;
    padding: 20px 18px 18px;
    margin-bottom: 1rem;
    color: #fff;
}
.vip-dash-hero-main { flex: 1; min-width: 0; }
.vip-dash-hero h1 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
    text-align: right;
}
.vip-dash-hero p {
    margin: 8px 0 0;
    color: #E8F3FF;
    font-size: 12.5px;
    line-height: 1.7;
    text-align: right;
}
.vip-dash-grade-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    background: rgba(255,255,255,.2);
    border: 1px solid rgba(255,255,255,.35);
    color: #fff;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}
.vip-dash-expire {
    margin-top: 8px;
    font-size: 12px;
    color: rgba(255,255,255,.82);
}
.vip-dash-start {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.35);
    color: #fff !important;
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
}
.vip-dash-hero-sparkle {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255,255,255,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.vip-dash-welcome {
    background: #fff;
    border-radius: 20px;
    padding: 1.35rem 1.25rem;
    border: 1px solid var(--vip-card-stroke);
    margin-bottom: 1rem;
}
.vip-dash-welcome h1 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 .35rem;
}
.vip-dash-welcome p {
    margin: 0;
    color: var(--vip-subtitle);
    font-size: .9rem;
    line-height: 1.7;
}
.vip-grade-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--vip-card-inner);
    color: var(--vip-purple) !important;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    margin-top: .75rem;
}

/* Account switcher */
.vip-accounts-page {
    max-width: 560px;
    margin: 0 auto;
}
.vip-accounts-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    direction: ltr;
    margin-bottom: 10px;
    gap: 12px;
}
.vip-accounts-top h1 {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: #2F3446;
    direction: rtl;
}
.vip-accounts-back {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2F3446 !important;
    text-decoration: none !important;
    font-size: 16px;
}
.vip-accounts-desc {
    text-align: right;
    color: var(--vip-subtitle);
    font-size: 12.5px;
    line-height: 1.8;
    margin: 0 0 14px;
}
.vip-accounts-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}
.vip-account-switch-form { margin: 0; }
.vip-account-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: right;
    background: #fff;
    border: 1px solid var(--vip-card-stroke);
    border-radius: 16px;
    padding: 14px;
    cursor: pointer;
    transition: box-shadow .15s ease, border-color .15s ease;
    color: inherit;
}
button.vip-account-item {
    font: inherit;
}
.vip-account-item:hover {
    box-shadow: 0 6px 16px rgba(107, 31, 183, .08);
    border-color: #EADCF8;
}
.vip-account-item.is-selected {
    cursor: default;
    background: #FCF9FF;
    border-color: #EADCF8;
}
.vip-account-item-body { flex: 1; min-width: 0; }
.vip-account-item-head {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}
.vip-account-title {
    font-size: 14px;
    font-weight: 800;
    color: #2F3446;
}
.vip-account-subtitle {
    margin-top: 3px;
    font-size: 12px;
    color: var(--vip-subtitle);
}
.vip-account-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #F1E6FB;
    border: 1px solid #EADCF8;
    color: var(--vip-purple);
    border-radius: 999px;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 800;
}
.vip-account-badge i { font-size: 10px; }
.vip-account-select-hint {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 700;
    color: var(--vip-purple);
}
.vip-accounts-add {
    height: 48px;
    font-size: 14px;
    margin-top: 0;
}
.vip-account-modal { max-width: 480px; }

.vip-dash-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vip-dash-row {
    display: flex;
    align-items: center;
    direction: rtl;
    gap: 0;
    background: #fff;
    border: 1px solid var(--vip-card-stroke);
    border-radius: 18px;
    padding: 14px;
    margin-bottom: 0;
    text-decoration: none !important;
    color: inherit;
    box-shadow: 0 2px 8px rgba(47, 52, 70, .04);
    transition: box-shadow .15s ease;
    cursor: pointer;
}
.vip-dash-row:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,.06);
    color: inherit;
}
.vip-dash-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--vip-icon-bg);
    flex-shrink: 0;
    position: relative;
}
.vip-dash-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 24px;
    height: 24px;
    background-color: var(--vip-purple);
    -webkit-mask: var(--vip-dash-icon) center / contain no-repeat;
    mask: var(--vip-dash-icon) center / contain no-repeat;
}
.vip-dash-row .body {
    flex: 1;
    min-width: 0;
    margin: 0 12px;
    text-align: right;
}
.vip-dash-row .body h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 800;
    color: #2F3446;
    line-height: 1.4;
}
.vip-dash-row .body p {
    margin: 2px 0 0;
    font-size: 11px;
    color: var(--vip-subtitle);
    line-height: 1.5;
}
.vip-dash-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    background: #F4ECFB;
    color: #7A2FD0;
    border: 1px solid #D9C4F0;
    border-radius: 20px;
    padding: 0 10px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}
.vip-dash-chevron {
    width: 18px;
    height: 18px;
    margin: 0 6px;
    flex-shrink: 0;
    background-color: #C5CAD3;
    -webkit-mask: url(/assets/img/vip/ic_vip_chevron_left.svg) center / contain no-repeat;
    mask: url(/assets/img/vip/ic_vip_chevron_left.svg) center / contain no-repeat;
}

/* Subpage chrome */
.vip-subhead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.vip-subhead h1 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
}
.vip-back {
    color: var(--vip-purple) !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 600;
}
.vip-card {
    background: #fff;
    border: 1px solid var(--vip-card-stroke);
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 12px;
}
.vip-card h3 { font-size: .95rem; margin: 0 0 .35rem; font-weight: 700; }
.vip-card .meta { font-size: 12px; color: var(--vip-subtitle); }
.vip-progress {
    height: 6px;
    background: #eee;
    border-radius: 999px;
    overflow: hidden;
    margin-top: 8px;
}
.vip-progress > span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--vip-hero-start), var(--vip-purple));
}
.vip-empty {
    text-align: center;
    padding: 2.5rem 1rem;
    color: var(--vip-subtitle);
    background: #fff;
    border-radius: 16px;
    border: 1px dashed var(--vip-card-stroke);
}

.vip-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}
.vip-input, .vip-select {
    width: 100%;
    border: 1px solid #e4e4ea;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    background: #fff;
    margin-bottom: 12px;
}
.vip-grade-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
    margin-bottom: 1rem;
}
.vip-grade-option {
    border: 2px solid var(--vip-card-stroke);
    border-radius: 14px;
    padding: 14px 10px;
    text-align: center;
    cursor: pointer;
    background: #fff;
    transition: .15s ease;
}
.vip-grade-option input { display: none; }
.vip-grade-option.active,
.vip-grade-option:has(input:checked) {
    border-color: var(--vip-purple);
    background: #F3EBFF;
}

/* Activation steps (Android-like) */
.vip-act-subtitle {
    margin: 4px 0 0;
    font-size: 12.5px;
    color: var(--vip-subtitle);
}
.vip-act-card {
    background: #fff;
    border: 1px solid var(--vip-card-stroke);
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 4px 16px rgba(47, 52, 70, .05);
}
.vip-act-step-title {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: #2F3446;
    text-align: right;
}
.vip-act-step-title.is-center { text-align: center; }
.vip-act-step-desc {
    margin: 8px 0 0;
    font-size: 13px;
    color: var(--vip-subtitle);
    line-height: 1.7;
    text-align: right;
}
.vip-act-step-desc.is-center { text-align: center; }
.vip-act-grade-icon {
    display: block;
    margin: 0 auto 8px;
    color: var(--vip-purple);
    font-size: 18px;
}
.vip-act-continue {
    width: 100%;
    height: 52px;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.vip-act-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}
.vip-act-back {
    width: 100%;
    height: 48px;
}
.vip-act-grade-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    direction: rtl;
    margin: 16px 0 20px;
    padding: 12px 14px;
    border-radius: 14px;
    background: var(--vip-icon-bg);
    border: 1px solid var(--vip-card-stroke);
}
.vip-act-grade-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--vip-purple);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}
.vip-act-grade-summary-body {
    flex: 1;
    min-width: 0;
    text-align: right;
}
.vip-act-grade-summary-label {
    display: block;
    font-size: 11px;
    color: #9693A1;
}
.vip-act-grade-summary-body strong {
    display: block;
    margin-top: 2px;
    font-size: 14px;
    color: #4B2A8A;
}
.vip-act-grade-summary-price {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    font-weight: 800;
    color: var(--vip-purple);
}

.vip-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.vip-tab {
    border-radius: 999px;
    padding: 7px 14px;
    background: #fff;
    border: 1px solid var(--vip-card-stroke);
    color: #555;
    text-decoration: none !important;
    font-size: 13px;
}
.vip-tab.active {
    background: var(--vip-purple);
    border-color: var(--vip-purple);
    color: #fff !important;
}

.vip-exam-option {
    display: block;
    border: 1px solid var(--vip-card-stroke);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 8px;
    cursor: pointer;
    background: #fff;
}
.vip-exam-option:has(input:checked) {
    border-color: var(--vip-purple);
    background: #F3EBFF;
}
.vip-exam-option input { margin-left: 8px; }

.vip-score-ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 8px solid var(--vip-icon-bg);
    border-top-color: var(--vip-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--vip-purple);
}

.vip-bar {
    height: 10px;
    background: #eee;
    border-radius: 999px;
    overflow: hidden;
}
.vip-bar > span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--vip-hero-start), var(--vip-purple));
}

.vip-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(20, 16, 40, .45);
    z-index: 1050;
    display: none;
    align-items: flex-end;
    justify-content: center;
}
.vip-modal-backdrop.open { display: flex; }
.vip-modal {
    background: #fff;
    border-radius: 20px 20px 0 0;
    width: 100%;
    max-width: 520px;
    max-height: 80vh;
    overflow: auto;
    padding: 1.25rem;
}
@media (min-width: 768px) {
    .vip-modal-backdrop { align-items: center; }
    .vip-modal { border-radius: 20px; }
}
@media (max-width: 767px) {
    .vip-steps { grid-template-columns: 1fr; }
    .vip-hero-title { font-size: 1.4rem; }
}

/* Sample questions list (Android-like) */
.vip-q-subtitle {
    margin: 4px 0 0;
    font-size: 12.5px;
    color: var(--vip-subtitle);
    line-height: 1.7;
}
.vip-q-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}
.vip-q-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 44px;
    padding: 8px 10px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--vip-card-stroke);
    color: #2F3446 !important;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 700;
}
.vip-q-tab i { color: var(--vip-purple); }
.vip-q-tab.is-active {
    background: var(--vip-purple);
    border-color: var(--vip-purple);
    color: #fff !important;
}
.vip-q-tab.is-active i { color: #fff; }
.vip-q-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.vip-q-search-wrap {
    position: relative;
    flex: 1;
    min-width: 180px;
}
.vip-q-search-wrap i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #A0A2AB;
    font-size: 13px;
}
.vip-q-search {
    width: 100%;
    height: 44px;
    border: 1px solid #E4E4EA;
    border-radius: 12px;
    padding: 0 36px 0 12px;
    background: #fff;
    font-size: 13px;
}
.vip-q-subject {
    height: 44px;
    border: 1px solid #E4E4EA;
    border-radius: 12px;
    padding: 0 12px;
    background: #fff;
    min-width: 140px;
    font-size: 13px;
}
.vip-q-filter-btn {
    height: 44px;
    border: 0;
    border-radius: 12px;
    padding: 0 16px;
    background: var(--vip-purple);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
}
.vip-q-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.vip-q-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    direction: rtl;
    background: #fff;
    border: 1px solid var(--vip-card-stroke);
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 2px 8px rgba(47, 52, 70, .04);
}
.vip-q-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--vip-icon-bg);
    color: var(--vip-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.vip-q-body {
    flex: 1;
    min-width: 0;
    text-align: right;
}
.vip-q-body h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 800;
    color: #2F3446;
    line-height: 1.55;
}
.vip-q-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 6px;
    font-size: 12px;
    color: var(--vip-subtitle);
}
.vip-q-subject-tag {
    color: var(--vip-purple);
    font-weight: 800;
}
.vip-q-actions {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-shrink: 0;
    direction: ltr;
}
.vip-q-action {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--vip-icon-bg);
    color: var(--vip-purple) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    font-size: 15px;
}
.vip-q-action:hover { filter: brightness(.97); }
.vip-q-action.is-disabled,
.vip-q-play-btn.is-disabled {
    opacity: .4;
    pointer-events: none;
}
.vip-q-play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    background: var(--vip-icon-bg);
    color: var(--vip-purple) !important;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
}
.vip-q-item-video .vip-q-icon i {
    margin-left: 2px;
}
@media (max-width: 575px) {
    .vip-q-tab span { font-size: 11px; }
    .vip-q-tab { gap: 4px; padding: 8px 6px; }
    .vip-q-body h3 { font-size: 13.5px; }
}

/* Notes list (Android-like) */
.vip-n-subtitle {
    margin: 4px 0 0;
    font-size: 12.5px;
    color: var(--vip-subtitle);
    line-height: 1.7;
}
.vip-n-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.vip-n-search-wrap {
    position: relative;
    flex: 1;
    min-width: 180px;
}
.vip-n-search-wrap i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #A0A2AB;
    font-size: 13px;
}
.vip-n-search {
    width: 100%;
    height: 50px;
    border: 1px solid #E4E4EA;
    border-radius: 12px;
    padding: 0 36px 0 12px;
    background: #fff;
    font-size: 13px;
}
.vip-n-subject {
    height: 50px;
    border: 1px solid #E4E4EA;
    border-radius: 12px;
    padding: 0 12px;
    background: #fff;
    min-width: 140px;
    font-size: 13px;
}
.vip-n-filter-btn {
    height: 50px;
    border: 0;
    border-radius: 12px;
    padding: 0 16px;
    background: var(--vip-purple);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
}
.vip-n-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.vip-n-item {
    direction: rtl;
    background: #fff;
    border: 1px solid var(--vip-card-stroke);
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(47, 52, 70, .04);
}
.vip-n-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.vip-n-chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 100px;
    background: var(--vip-icon-bg);
    color: var(--vip-purple);
    font-size: 12px;
    font-weight: 800;
}
.vip-n-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--vip-icon-bg);
    color: var(--vip-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.vip-n-title {
    margin: 14px 0 0;
    font-size: 16px;
    font-weight: 800;
    color: #2F3446;
    line-height: 1.55;
    text-align: right;
}
.vip-n-desc {
    margin: 6px 0 0;
    font-size: 13px;
    color: var(--vip-subtitle);
    line-height: 1.7;
    text-align: right;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.vip-n-pages {
    margin-top: 8px;
    font-size: 12px;
    color: var(--vip-subtitle);
    text-align: right;
}
.vip-n-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    direction: ltr;
}
.vip-n-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 46px;
    border-radius: 14px;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 800;
    padding: 0 16px;
}
.vip-n-btn.is-disabled {
    opacity: .45;
    pointer-events: none;
}
.vip-n-btn-download {
    background: #fff;
    border: 1px solid var(--vip-card-stroke);
    color: #2F3446 !important;
    flex-shrink: 0;
}
.vip-n-btn-download:hover { background: #fafafa; }
.vip-n-btn-view {
    flex: 1;
    background: var(--vip-icon-bg);
    border: 1px solid transparent;
    color: var(--vip-purple) !important;
    font-size: 14px;
}
.vip-n-btn-view:hover { filter: brightness(.97); }
@media (max-width: 420px) {
    .vip-n-btn span { font-size: 12px; }
    .vip-n-btn { padding: 0 12px; gap: 6px; }
}

/* Night exams (Android-like) */
.vip-ne-subtitle {
    margin: 4px 0 0;
    font-size: 12.5px;
    color: var(--vip-subtitle);
    line-height: 1.7;
}
.vip-ne-packs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.vip-ne-pack {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(47, 52, 70, .06);
    border: 1px solid var(--vip-card-stroke);
}
.vip-ne-pack-header {
    text-align: center;
    color: #fff;
    padding: 28px 20px 26px;
}
.vip-ne-pack.is-term1 .vip-ne-pack-header {
    background: linear-gradient(135deg, #4A90E2, #5032B6);
}
.vip-ne-pack.is-term2 .vip-ne-pack-header {
    background: linear-gradient(135deg, #56AB2F, #0B8793);
}
.vip-ne-pack-icon {
    font-size: 28px;
    opacity: .95;
}
.vip-ne-pack-header h2 {
    margin: 12px 0 0;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}
.vip-ne-pack-header p {
    margin: 4px 0 0;
    font-size: 14px;
    color: #E8F3FF;
}
.vip-ne-subjects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 14px 14px 6px;
}
.vip-ne-subject-cell {
    display: block;
    background: #F4F6F8;
    border-radius: 14px;
    padding: 14px 12px;
    text-decoration: none !important;
    text-align: right;
}
.vip-ne-subject-cell strong {
    display: block;
    color: #2F3446;
    font-size: 14px;
    font-weight: 800;
}
.vip-ne-subject-cell span {
    display: block;
    margin-top: 4px;
    color: var(--vip-subtitle);
    font-size: 12px;
}
.vip-ne-start-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px 14px 16px;
    height: 48px;
    border-radius: 14px;
    background: var(--vip-icon-bg);
    color: var(--vip-purple) !important;
    text-decoration: none !important;
    font-weight: 800;
    font-size: 14px;
}
.vip-ne-start-btn:hover { filter: brightness(.97); }
.vip-ne-detail-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.vip-ne-subject-card {
    background: #fff;
    border: 1px solid var(--vip-card-stroke);
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 2px 8px rgba(47, 52, 70, .04);
}
.vip-ne-subject-card > h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: #2F3446;
    text-align: right;
}
.vip-ne-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 12px;
}
.vip-ne-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border-radius: 12px;
    padding: 12px 10px;
    direction: rtl;
}
.vip-ne-stat strong {
    display: block;
    font-size: 13px;
    font-weight: 800;
}
.vip-ne-stat span {
    display: block;
    margin-top: 2px;
    font-size: 11px;
}
.vip-ne-stat i { font-size: 16px; }
.vip-ne-stat-video { background: #EEF5FF; color: #2F6FED; }
.vip-ne-stat-note { background: #F3EEFF; color: #6B1FB7; }
.vip-ne-stat-question { background: #FFF4E8; color: #D97706; }
.vip-ne-stat-answer { background: #EAF8F1; color: #0F9F6E; }
.vip-ne-stat.is-muted { opacity: .45; }
.vip-ne-card-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    flex-wrap: wrap;
}
.vip-ne-btn-primary,
.vip-ne-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 42px;
    border-radius: 12px;
    padding: 0 10px;
    text-decoration: none !important;
    font-weight: 800;
    font-size: 12px;
}
.vip-ne-btn-primary {
    flex: 1.2;
    min-width: 110px;
    background: var(--vip-purple);
    color: #fff !important;
}
.vip-ne-btn-outline {
    flex: 1;
    min-width: 90px;
    background: #fff;
    border: 1px solid var(--vip-card-stroke);
    color: #58616E !important;
}
.vip-ne-btn-primary.is-disabled,
.vip-ne-btn-outline.is-disabled,
.vip-ne-play.is-disabled {
    opacity: .45;
    pointer-events: none;
}
.vip-ne-content,
.vip-ne-lessons {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #F0EEF6;
    text-align: right;
}
.vip-ne-content-head {
    text-align: center;
    font-weight: 800;
    color: #2F3446;
    margin-bottom: 8px;
}
.vip-ne-content h4,
.vip-ne-lessons h4 {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 800;
    color: #2F3446;
}
.vip-ne-content h5 {
    margin: 12px 0 6px;
    font-size: 13px;
    font-weight: 800;
}
.vip-ne-content-meta,
.vip-ne-content-intro {
    font-size: 12px;
    color: var(--vip-subtitle);
    line-height: 1.7;
    margin: 0 0 8px;
}
.vip-ne-content ul {
    margin: 0;
    padding-right: 18px;
    font-size: 13px;
    line-height: 1.9;
    color: #2F3446;
}
.vip-ne-lesson {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 0;
    border-top: 1px solid #F0EEF6;
    direction: rtl;
}
.vip-ne-lesson:first-of-type { border-top: 0; }
.vip-ne-lesson strong {
    display: block;
    font-size: 13.5px;
    color: #2F3446;
}
.vip-ne-lesson span {
    display: block;
    margin-top: 3px;
    font-size: 12px;
    color: var(--vip-subtitle);
}
.vip-ne-play {
    flex-shrink: 0;
    height: 36px;
    padding: 0 14px;
    border-radius: 10px;
    background: var(--vip-purple);
    color: #fff !important;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
}
@media (max-width: 575px) {
    .vip-ne-card-actions { gap: 8px; }
    .vip-ne-btn-primary,
    .vip-ne-btn-outline { flex: 1 1 calc(50% - 8px); font-size: 11px; }
}

/* Report / stats (Android-like) */
.vip-r-subtitle {
    margin: 4px 0 0;
    font-size: 12.5px;
    color: var(--vip-subtitle);
    line-height: 1.7;
}
.vip-r-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}
.vip-r-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 52px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--vip-card-stroke);
    color: #2F3446 !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 800;
}
.vip-r-tab i { color: var(--vip-purple); }
.vip-r-tab.is-active {
    background: var(--vip-purple);
    border-color: var(--vip-purple);
    color: #fff !important;
}
.vip-r-tab.is-active i { color: #fff; }
.vip-r-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}
.vip-r-stat {
    background: #fff;
    border: 1px solid var(--vip-card-stroke);
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(47, 52, 70, .04);
    text-align: right;
}
.vip-r-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--vip-icon-bg);
    color: var(--vip-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline-start: auto;
    font-size: 18px;
}
.vip-r-stat-icon.is-amber {
    background: #FDF1DE;
    color: #F5A623;
}
.vip-r-stat-icon.is-green {
    background: #E5F6ED;
    color: #2FB673;
}
.vip-r-stat-value {
    margin-top: 12px;
    font-size: 24px;
    font-weight: 800;
    color: #2F3446;
    line-height: 1.2;
}
.vip-r-stat-label {
    margin-top: 2px;
    font-size: 12px;
    color: var(--vip-subtitle);
}
.vip-r-card {
    background: #fff;
    border: 1px solid var(--vip-card-stroke);
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(47, 52, 70, .04);
}
.vip-r-card-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row-reverse;
    gap: 8px;
    font-size: 16px;
    font-weight: 800;
    color: #2F3446;
    margin-bottom: 4px;
}
.vip-r-card-title i { color: var(--vip-purple); }
.vip-r-card-title.is-plain {
    flex-direction: row;
    justify-content: flex-end;
}
.vip-r-icon-green { color: #2FB673 !important; }
.vip-r-icon-amber { color: #F5A623 !important; }
.vip-r-empty {
    margin-top: 16px;
    text-align: center;
    color: var(--vip-subtitle);
    font-size: 13px;
}
.vip-r-chart {
    display: flex;
    gap: 8px;
    margin-top: 18px;
    align-items: stretch;
}
.vip-r-chart-axis {
    width: 32px;
    height: 200px;
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 10px;
    color: var(--vip-subtitle);
    text-align: right;
    padding-right: 4px;
    flex-shrink: 0;
}
.vip-r-chart-scroll {
    flex: 1;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.vip-r-chart-plot {
    position: relative;
    min-width: 240px;
    height: 248px;
}
.vip-r-chart-grid {
    position: absolute;
    left: 0;
    right: 0;
    top: 22px;
    height: 160px;
    background-image: repeating-linear-gradient(
        to bottom,
        #EDEDF2 0,
        #EDEDF2 1px,
        transparent 1px,
        transparent 40px
    );
}
.vip-r-chart-bars {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    height: 100%;
    min-width: 100%;
    padding-bottom: 0;
}
.vip-r-bar-col {
    flex: 1 0 64px;
    min-width: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 0 4px;
    height: 100%;
}
.vip-r-bar-score {
    font-size: 11px;
    font-weight: 800;
    color: var(--vip-purple);
    margin-bottom: 4px;
}
.vip-r-bar-slot {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border-bottom: 1px solid #EDEDF2;
}
.vip-r-bar {
    width: 28px;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(180deg, var(--vip-purple-light), var(--vip-purple));
}
.vip-r-bar-label {
    margin-top: 8px;
    min-height: 32px;
    font-size: 10px;
    color: var(--vip-subtitle);
    text-align: center;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.vip-r-progress-row { margin-top: 16px; }
.vip-r-progress-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    direction: rtl;
}
.vip-r-progress-head strong {
    font-size: 13px;
    font-weight: 800;
    color: #2F3446;
}
.vip-r-progress-score {
    font-size: 12px;
    color: var(--vip-subtitle);
}
.vip-r-progress-track {
    margin-top: 6px;
    height: 9px;
    border-radius: 100px;
    background: #ECEAF1;
    overflow: hidden;
    direction: rtl;
}
.vip-r-progress-track span {
    display: block;
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--vip-purple), var(--vip-purple-light));
}
.vip-r-banner {
    margin-bottom: 16px;
    border-radius: 22px;
    padding: 20px;
    background: linear-gradient(90deg, #4B39D8, #7A2FD0);
    color: #fff;
    text-align: right;
}
.vip-r-banner h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}
.vip-r-banner p {
    margin: 3px 0 0;
    font-size: 13px;
    color: rgba(255, 255, 255, .85);
}
.vip-r-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 14px;
}
.vip-r-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 100px;
    background: rgba(255, 255, 255, .18);
    font-size: 12px;
}
.vip-r-strength,
.vip-r-weak {
    margin-top: 10px;
    padding: 14px;
    border-radius: 12px;
    font-size: 13px;
    text-align: right;
}
.vip-r-strength:first-of-type,
.vip-r-weak:first-of-type { margin-top: 14px; }
.vip-r-strength {
    background: #EAF7F0;
    color: #2E9E63;
}
.vip-r-weak {
    background: #FCF3E1;
    color: #B5791A;
}
.vip-r-suggestion {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 12px;
    border-radius: 12px;
    background: var(--vip-icon-bg);
    direction: rtl;
}
.vip-r-suggestion:first-of-type { margin-top: 14px; }
.vip-r-suggestion p {
    flex: 1;
    margin: 0;
    font-size: 13px;
    color: var(--vip-purple);
    text-align: right;
}
.vip-r-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--vip-purple);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
}
.vip-r-send {
    width: 100%;
    height: 56px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--vip-purple), var(--vip-purple-light));
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    margin-bottom: 8px;
}
.vip-r-send:hover { filter: brightness(1.03); }
@media (max-width: 420px) {
    .vip-r-stat-value { font-size: 20px; }
    .vip-r-tab { font-size: 13px; }
}
