:root {
    --orange-1: rgba(252, 128, 45, 1);
    --orange-2: rgba(252, 128, 45, 1);
    --bg-gradient-orange: linear-gradient(90deg,
            rgba(252, 128, 45, 1) 50%,
            rgba(255, 157, 92, 1) 100%);
    --bg-gradient-orange-1: linear-gradient(360deg,
            rgba(252, 128, 45, 1) 0%,
            rgba(255, 157, 92, 1) 100%);
    --bg-gradient-blue: linear-gradient(90deg,
            rgba(42, 19, 125, 1) 50%,
            rgba(109, 29, 255, 1) 100%);
}

.main-payment {
    background: linear-gradient(180deg, #181f3a 0%, #232b4a 100%);
    min-height: 100vh;
    padding: 0 0 40px 0;
    align-items: center;
    display: flex;
    position: relative;
}

.title-payment {
    text-align: center;
    margin-top: 32px;
    margin-bottom: 32px;
}

.title-payment h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.support-payment {
    text-align: center;
    color: white;
}

.support-payment a {
    font-weight: 600;
    color: white;
    text-decoration: none;
}

.support-payment a:hover {
    color: #e58341;
}

.title-payment p {
    color: white;
    font-style: italic;
}

.payment-feature-list {
    display: flex;
    justify-content: center;
    gap: 62px;
    color: #b5b8d3;
    font-size: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.feature-icon {
    border-radius: 20px;
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.payment-feature-list .icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-feature-list span i {
    margin-right: 6px;
    color: #a5b4fc;
}

.payment-plan-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.option-payment {
    width: 25%;
    padding: 12px;
    text-align: center;
}

.option-payment button {
    display: block;
    width: 100%;
    background-color: #6778a3;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    font-size: 28px;
    padding: 24px 0;
    border: 1px solid transparent
}

.option-payment button:hover {
    border-color: #e58341;
    color: #e58341;
}

.payment-plan {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 6px 32px 0 rgba(24,31,58,0.13);
    padding: 32px 10px 20px 10px;
    width: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.payment-plan:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 36px 0 rgba(24,31,58,0.18);
}

.plan-badge {
    position: absolute;
    top: 0px;
    left: 0px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 13px 18px;
    border-radius: 20px 0px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

.plan-title {
    font-size: 38px;
    font-weight: 700;
    color: #232b4a;
    margin-top: 10px;
    margin-bottom: 6px;
}

.plan-title small {
    font-size: 14px;
    color: #888;
    font-weight: 400;
}
.w-full {
    width: 100%;
}

.plan-price {
    font-size: 58px;
    font-weight: 800;
    color: #f59e42;
    margin-bottom: 2px;
}

.plan-old-price {
    font-size: 22px;
    color: #b5b8d3;
    text-decoration: line-through;
    margin-bottom: 10px;
}

.btn-choose-plan {
    background: #ffc72c;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    padding: 12px 0;
    width: 100%;
    margin: 12px 0 10px 0;
    box-shadow: 0 2px 8px rgba(255,199,44,0.13);
    transition: background 0.2s, color 0.2s;
    letter-spacing: 1px;
}

.btn-choose-plan:hover {
    background: #f59e42;
    color: #fff;
}

.plan-discount {
    background: #fef9c3;
    color: #d97706;
    font-size: 14px;
    border-radius: 8px;
    padding: 6px 10px;
    margin-bottom: 8px;
    font-weight: 500;
    text-align: center;
}

.plan-benefit {
    width: 100%;
    list-style: none;
    padding: 0 0 0 5px;
    margin: 0;
    margin-top: 8px;
}

.plan-benefit li {
    color: #232b4a;
    font-size: 14px;
    margin-bottom: 7px;
    display: flex;
    align-items: center;
}

.plan-benefit li i {
    color: #22c55e;
    font-size: 18px;
}

.payment-method-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 24px 0;
}

.option-payment {
    width: 25%;
    padding: 12px;
    text-align: center;
}

.option-payment button {
    display: block;
    width: 100%;
    background-color: #6778a3;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    font-size: 28px;
    padding: 24px 0;
    border: 1px solid transparent
}

.option-payment button:hover {
    border-color: #e58341;
    color: #e58341;
}

.over-payment-method {
    margin: auto;
}

.payment-method-list a {
    margin-bottom: 16px;
    display: block;
    text-decoration: none;
}

.handle-amount {
    position: relative;
}

#amount {
    color: transparent;
    background-color: transparent;
    position: relative;
    z-index: 2;
}

#format-amount {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 1;
    padding: .375rem .75rem;
    color: #000;
}

.payment-method-item {
    position: relative;
    padding: 16px 24px;
    border: 2px solid var(--orange-2);
    /* border-image: linear-gradient(to right, var(--orange-1) 0%, var(--orange-2) 100%) 1; */
    border-radius: 8px;
    display: flex;
    gap: 12px;
    align-items: center;
    color: black;
    cursor: pointer;
}

.payment-method-item:hover {
    background: var(--orange-2);
}
.btn-current-plan {
    background-color: #22c55e; color: #fff; cursor: default;
    font-size: 26px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    padding: 12px 0;
    width: 100%;
    margin: 12px 0 10px 0;
    box-shadow: 0 2px 8px rgba(255,199,44,0.13);
    transition: background 0.2s, color 0.2s;
    letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
    .option-payment {
        width: 50%;
    }
}

@media screen and (max-width:540px) {
    .option-payment {
        width: 100%;
    }
    .main-payment {
        min-height: unset !important;
        padding: 30px 0;
    }
}

@media (max-width: 1100px) {
    .payment-plan-list {
        gap: 18px;
    }
    .payment-plan {
        width: 100%;
        padding: 32px 12px 20px 10px;
    }
    .payment-feature-list span i {
        font-size: 16px;
    }
    .payment-feature-list {
        gap: 18px;
        justify-content: space-between;
        padding: 20px;
    }
}

@media (max-width: 700px) {
    .payment-plan-list {
        flex-direction: column;
        align-items: center;
    }
    .title-payment h2 {
        font-size: 20px;
    }
}
