[v-cloak] {
    display: none;
}

/* Prevent Tawk widget from shifting page layout */
html, body {
    overflow-x: hidden;
    width: 100%;
}

:root {
    --primary-color: rgb(168, 25, 85);
}

#rechargeLevelBox {
    margin-top: 55px;
    width: 100%;
}

.section-title,
#rechargeLevelBox .content_title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.4;
}

#rechargeLevelBox .rechargeLevelList_ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.rechargeLevelList_ul li {
    width: calc(33.33% - 10px);
    background-color: #F7F6FB;
    margin-bottom: 10px;
    height: 45px;
    margin-left: 10px;
    box-sizing: border-box;
    text-align: center;
    line-height: 45px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid #F7F6FB;
    position: relative;
}

.inputMoney .el-input__inner {
    border: none;
    outline: none;
    background: transparent;
    font-size: 18px;
    font-weight: bold;
    padding: 0;
    text-align: left;
}

.rechargeLevelList_ul li.active .inputMoney .el-input__inner {
    background: #FCF0F2;
    color: #D30044;
}

.rechargeLevelList_ul li.active {
    background: #FCF0F2;
    border: 1px solid #EF92AD;
    color: #D30044;
}

.priority-badge {
    display: inline-block;
    background: #fff;
    color: var(--primary-color);
    font-size: 11px;
    padding: 1px 7px;
    border-radius: 4px;
    margin-right: 12px;
    vertical-align: middle;
    font-weight: 800;
    box-shadow: 0 2px 4px rgba(168, 25, 85, 0.1);
    line-height: 1.4;
    border: 1.5px solid var(--primary-color);
    animation: pulse-badge-subtle 2.5s infinite;
}

.vip-btn-wrapper {
    margin-bottom: 20px;
    width: 100%;
}

.vip-purchase-btn {
    width: 100%;
    background-color: var(--primary-color) !important;
    color: white !important;
    font-weight: 700;
    border: none;
    height: 60px;
    border-radius: 8px;
}

.vip-purchase-btn:hover {
    background-color: rgb(180, 40, 100) !important;
}

.btn-inner-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.text-select {
    font-size: 20px;
    margin-right: 6px;
}

.price-actual {
    font-size: 24px;
    margin-right: 8px;
}

.price-original {
    font-size: 16px;
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 0;
}

.text-cycle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-left: 8px;
}

.creator_profile_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 8px 0 14px;
    padding: 10px 16px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(168, 25, 85, 0.1), rgba(168, 25, 85, 0.03));
    border: 1px solid rgba(168, 25, 85, 0.14);
    box-shadow: 0 10px 24px rgba(168, 25, 85, 0.08);
}

.creator_profile_label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(168, 25, 85, 0.7);
}

.creator_profile_name {
    font-weight: 800;
    line-height: 1.2;
    color: #2f2430;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    max-width: 100%;
    transition: font-size 0.3s ease;
}

.creator_profile_hint {
    font-size: 12px;
    color: #7f7380;
}

@keyframes pulse-badge-subtle {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.03);
        opacity: 0.9;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}