.vip-main-section {
    padding: 4rem 0;
}

.vip-banner-card {
    background: linear-gradient(135deg, #231e35 0%, #3b2f5a 50%, #fd3147 120%);
    border-radius: 18px;
    padding: 2.8rem 2.2rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(253, 49, 71, 0.15);
    /* border: 1px solid rgba(255, 255, 255, 0.06); */
}

.vip-banner-card::before {
    content: '';
    position: absolute;
    right: -12%;
    bottom: -25%;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(253, 49, 71, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.vip-banner-card::after {
    content: '';
    position: absolute;
    left: -10%;
    top: -20%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 75%);
    border-radius: 50%;
    z-index: 0;
}

.user-avatar {
    width: 90px;
    height: 90px;
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.user-avatar i {
    color: rgba(255, 255, 255, 0.85);
}

.login-prompt h5 {
    margin: 1.5rem 0 1rem;
}

.btn-login {
    background-color: #fd3147;
    border: none;
    color: white;
    padding: .8rem 2.2rem;
    border-radius: 50px;
    transition: all .25s ease;
    box-shadow: 0 6px 18px rgba(253, 49, 71, 0.3);
}
.btn-login:active {
    text-decoration: none;
}

.btn-login:hover {
    background-color: #e0203a;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(253, 49, 71, 0.4);
    color: #fff;
    text-decoration: none;
}

.vip-progress-container {
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.vip-level-ticks {
    display: flex;
    margin-bottom: 6rem;
    justify-content: space-between;
}

.vip-tick-item {
    text-align: center;
    position: absolute;
    transform: translateX(-50%);
    width: 80px;
}

.vip-tick-item.v1 {
    left: 0%;
}

/* 0/5000 */
.vip-tick-item.v2 {
    left: 10%;
}

/* 500/5000 */
.vip-tick-item.v3 {
    left: 30%;
}

/* 1500/5000 */
.vip-tick-item.v4 {
    left: 60%;
}

/* 3000/5000 */
.vip-tick-item.v5 {
    left: 100%;
}

/* 5000/5000 */
.vip-tick-item .crown-icon {
    margin-bottom: .25rem;
    color: #6c757d;
    transition: color 0.3s ease;
}

.vip-tick-item.active .crown-icon {
    color: #fd3147;
}

.vip-tick-item .discount-text {
    white-space: nowrap;
}

.vip-tick-item .spending-text {
    opacity: 0.85;
}

.progress-track {
    height: 26px;
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 13px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #fd3147 0%, #ff5a6e 100%);
    width: 0%;
    border-radius: 13px;
    transition: width 1.1s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 12px rgba(253, 49, 71, 0.4);
}

.vip-description {
    margin-top: 2rem;
    line-height: 1.7;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.vip-illustration {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    max-width: 200px;
    opacity: 0.92;
    z-index: 1;
}

@media (max-width: 991px) {
    .vip-illustration {
        display: none;
    }
}

.vip-rules-section {
    margin-top: 3.5rem;
}

.vip-rules-section h2 {
    margin-bottom: 2rem;
    color: #fff;
}

.vip-rule-card {
    background-color: #2b2542;
    border-radius: 14px;
    padding: 1.6rem;
    margin-bottom: 1rem;
    border-left: 4px solid #fd3147;
    transition: transform .25s ease, box-shadow .25s ease;
}

.vip-rule-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(253, 49, 71, 0.1);
}

.vip-rule-card h4 {
    color: #fff;
    margin-bottom: .5rem;
}

.vip-rule-card p {
    margin: 0;
    color: #cbd5e1;
    line-height: 1.6;
}

.vip-contact-info {
    margin-top: 2rem;
    color: #fd3147;
}

.discount-guide-section {
    margin-top: 4rem;
}

.discount-guide-card {
    background-color: #2b2542;
    border-radius: 18px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.discount-guide-card h3 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.guide-list {
    list-style: none;
    padding-left: 3rem;
    position: relative;
    counter-reset: step-counter;
}

.guide-list li {
    margin-bottom: 1.8rem;
    line-height: 1.7;
    color: #cbd5e1;
    position: relative;
    padding-bottom: 0.5rem;
    counter-increment: step-counter;
}

.guide-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: -3rem;
    top: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: #fd3147;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(253, 49, 71, 0.4);
}

.guide-list li:not(:last-child)::after {
    content: '';
    position: absolute;
    left: -2rem;
    top: 2rem;
    bottom: -1.3rem;
    width: 2px;
    background: linear-gradient(to bottom, #fd3147 0%, rgba(253, 49, 71, 0.3) 100%);
    z-index: -1;
}

.guide-image {
    border-radius: 12px;
    overflow: hidden;
    /* border: 1px solid rgba(253, 49, 71, 0.2); */
    max-width: 100%;
    height: auto;
}

@media (max-width: 767px) {
    .discount-guide-card .row {
        flex-direction: column;
    }

    .discount-guide-card .row>div {
        margin-bottom: 1.5rem;
    }

    .discount-guide-card .row>div:last-child {
        margin-bottom: 0;
    }

    .guide-reverse {
        flex-direction: column-reverse !important;
    }

    .vip-tick-item {
        width: 60px;
    }

    .vip-tick-item .discount-text {
        
    }

    .vip-tick-item .spending-text {
       
    }
}