.section-solution {
    padding-bottom: 30px !important;
}

.animation-dots {
    margin-top: 40px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}
.tax-banner {
    padding-top: 100px;
    padding-bottom: 50px;
    background-repeat: no-repeat;
    background-size: cover;
}
.main-title {
    color: #fbc30b;
    text-align: center;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Inter;
    font-size: 44px;
    font-style: normal;
    font-weight: bold;
    /*line-height: 42px; !* 95.455% *!*/
    /*text-transform: uppercase;*/
}

.subtitle {
    color: #fff;
    text-align: center;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    margin-top: 15px;
    margin-bottom: 40px;
}
.promo-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin: 40px auto;
    max-width: 800px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.promo-card h3 {
    text-align: center;
    color: #ff6b35;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 125% */
    background: var(
        --gradient2,
        linear-gradient(270deg, #eb2805 0%, #fb8f0b 100%)
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.promo-card p {
    color: #1a1d24;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px; /* 130% */
    margin-top: 10px;
}

.rocket-icon {
    position: absolute;
    width: 140px !important;
    height: auto;
    top: -80px;
    left: -46px;
    max-height: inherit;
}
.slots-section {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

/* Custom gradient for the progress bar to match the image */
.progress-gradient {
    background: linear-gradient(
        90deg,
        #f9d423 0%,
        #ff8c1a 35%,
        #f73772 70%,
        #c832e3 100%
    );
    height: 20px;
}
.gift-icon {
    width: 81px;
    max-height: 96px;
    transform: translateY(-50%) !important;
    position: absolute;
    right: -60px;
    top: 0;
    z-index: 1;
}

/* Subtle background pattern for the banner */
.banner-bg-pattern {
    background-color: #10289a; /* Deep blue from the image */
    position: relative;
    overflow: hidden;
}

.banner-bg-pattern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px
        ),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

/* Sparkle animation for the gift box */
@keyframes sparkle {
    0%,
    100% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
}

.sparkle {
    position: absolute;
    background-color: #ffd700;
    border-radius: 50%;
    animation: sparkle 1.8s infinite ease-in-out;
    box-shadow: 0 0 6px #ffd700, 0 0 12px #ffd700;
}
.slots-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.slots-subtitle {
    font-size: 16px;
    margin-bottom: 35px;
    /* line-height: 1.6; */
    color: #fff;
}

.progress-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.custom-progress {
    height: 30px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
}
.progress-container {
    max-width: 450px;
}
.progress-bar-custom {
    height: 25px !important;
    padding: 4px !important;
    border-radius: 20px !important;
}
.progress-bar {
    border-radius: 20px;
    background: linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.15) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0.15) 75%,
            transparent 75%,
            transparent
        ),
        linear-gradient(90deg, #ffae00 0%, #e200f8 98.72%) !important;
    background-size: 20px 20px, 100% 100% !important;
}

.dots-pattern {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.dot-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}
.animation-dots > img {
    animation: dots 0.7s linear 0.2s infinite;
}
@keyframes dots {
    0% {
        opacity: 0.4;
        transform: translateY(-100%);
    }
    to {
        opacity: 0.9;
        transform: translateY(100%);
    }
}

@media (max-width: 768px) {
    .tax-landing {
        padding: 0 !important;
    }
    .main-title {
        font-size: 2.5rem;
    }

    .promo-card {
        margin: 20px;
        padding: 20px;
    }

    .promo-card h3 {
        font-size: 1.8rem;
    }

    .rocket-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .slots-title {
        font-size: 2rem;
    }
}

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
.animate-bounce {
    animation: bounce 1s infinite;
}
@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
.arrow-bounce {
    width: 162px;
    height: 44px;
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(-50%);
    }
    40% {
        transform: translateX(-50%) translateY(-70%);
    }
    60% {
        transform: translateX(-50%) translateY(-60%);
    }
}

.arrow-container {
    position: relative;
    margin: 20px 0;
}
.course-detail-title {
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(270deg, #0020ac 0%, #1540ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 50px;
}
.course-detail-desc {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    color: #333;
}
.module-count {
    border-radius: 19.081px;
    border: 1.193px solid #ff2a00;
    background: var(
        --gradient2,
        linear-gradient(270deg, #eb2805 0%, #fb8f0b 100%)
    );
    padding: 5px 12px;
    color: #fff;
    display: flex;
}

/* Section Buy Styles */
.section-buy {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.buy-content {
    color: white;
    padding: 20px 30px;
    border-radius: 15px;
    border: 2px solid #fff;
    background: linear-gradient(180deg, #a600f8 0%, #0020ac 100%);
    position: relative;
    min-height: 200px;
}
.special-tag {
    position: absolute;
    top: -40px;
    left: -38px;
    width: 153px;
}

.price-section {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.original-price {
    font-size: 24px;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.current-price {
    font-size: 42px;
    font-weight: 900;
    color: #fbc30b;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    gap: 10px;
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-icon {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}
.buy-title {
    font-size: 20px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
}

.highlight-text {
    color: #fff;
    font-size: 16px;
}

.cta-section {
    text-align: center;
}

.btn-buy-now {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    color: white;
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    min-width: 280px;
}

.btn-buy-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.5);
}

.btn-buy-now:active {
    transform: translateY(-1px);
}

.btn-text {
    display: block;
    font-size: 20px;
    margin-bottom: 5px;
}

.btn-subtext {
    display: block;
    font-size: 12px;
    opacity: 0.9;
    text-transform: none;
    letter-spacing: 0;
}

.guarantee-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 15px;
}

.course-preview {
    border: 2px solid #fff;
    margin-top: 25px;
    border-radius: 20px;
}

.course-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.course-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 60px;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.course-image-container:hover .play-overlay {
    opacity: 1;
}

.course-image-container:hover .course-image {
    transform: scale(1.05);
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    margin-bottom: 15px;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.preview-text {
    color: white;
    font-weight: 600;
    font-size: 16px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.course-stats {
    display: flex;
    justify-content: space-around;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: 900;
    color: #fbc30b;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.b-box {
    border-radius: 4.588px;
    background: var(
        --gradient2,
        linear-gradient(0deg, #ffc448 0%, #ffec95 100%)
    );
    display: inline-block;
    width: fit-content;
    color: #0020ac !important;
    padding: 2px 12px;
    margin-bottom: 8px;
}

.modal-regis .close-btn {
    position: absolute;
    top: 6px;
    right: 10px;
    background: none;
    border: none;
    font-size: 25px;
    cursor: pointer;
    background: #fff;
    /* padding: 5px; */
    /* border: 1px solid #DC3F2E; */
    border-radius: 50%;
    color: #dc3f2e !important;
    font-weight: normal !important;
    width: 30px;
    z-index: 99999;
    height: 30px;
}

.modal-regis .nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.modal-regis .nav-btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.modal-regis .prev-btn {
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    color: #666;
}

.modal-regis .next-btn {
    background-color: #ffa726;
    border: none;
    color: white;
}

.modal-regis .tab-content {
    display: none;
}

.modal-regis .tab-content.active {
    display: block;
}

.modal-regis .user-info-container {
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #ffd8a8;
    background: linear-gradient(to right, #fffcf5, #fff5eb);
    border-radius: 20px;
    border: 2px solid var(--gradient-2, #eb2805);
    background: #fff;
    box-shadow: 0px 7px 35px 0px rgba(0, 0, 0, 0.15);
}

.user-info-container h6 {
    font-size: 20px;
    color: #333;
}

.modal-regis .user-info-container a {
    color: #fa8128;
    text-decoration: none;
}

.modal-regis .success-container {
    background-color: white;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    /* background: linear-gradient(to right, #fffaf0, #fff5eb);
           */
}

.modal-regis .success-icon {
    width: 65px;
    height: 65px;
    background-color: #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
    font-size: 40px;
}

.modal-regis .success-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.modal-regis .success-text {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.modal-regis .start-course-btn {
    background: linear-gradient(to right, #ff8a00, #ff5722);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(255, 138, 0, 0.2);
    width: 240px;
}

.modal-regis .contact-text {
    color: #666;
    margin-top: 20px;
}

.modal-regis .hotline {
    color: #ff5722;
    font-weight: bold;
}

.modal-regis .coupon-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.modal-regis .coupon-btn {
    background-color: white;
    border: 1px dashed #ff5722;
    border-radius: 30px;
    padding: 6px 15px;
    color: #ff5722;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

.modal-regis .coupon-btn:hover {
    background-color: #fff5f0;
    transform: translateY(-2px);
}

.modal-regis .coupon-tag {
    font-size: 10px;
    color: white;
    background-color: #ff5722;
    padding: 2px 4px;
    border-radius: 2px;
    margin-right: 5px;
}
.regis-content {
    padding: 20px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0px 4.231px 15.44px 0px rgba(0, 0, 0, 0.15);
}
.modal-regis #btn-checkout-regis {
    border-radius: 10px;
    background: var(
        --gradient-2,
        linear-gradient(270deg, #eb2805 0%, #fbc30b 100%)
    );
    border: none;
    display: block;
    width: 100%;
    height: 56px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
}

.form-label {
    margin-bottom: 0.25rem;
    font-size: 16px;
    position: absolute;
    background: transparent;
    top: -12px;
    z-index: 10;
    left: 14px;
    padding: 0 3px;
    color: #333;
}

.modal-auth .form-label {
    margin-bottom: 0.25rem;
    font-size: 16px;
    position: absolute;
    background: transparent;
    top: -12px;
    z-index: 10;
    left: 14px;
    padding: 0 3px;
    color: #333;
}

.modal-regis .phone-group button {
    border: none;
    border-right: 1px solid #dadada;
    border-radius: 0;
    display: flex;
    width: 110px;
    font-size: 16px;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.modal-auth .form-control {
    border-radius: 10px;
    padding: 0.75rem;
    border-radius: 5px;
    border: 1px solid #dadada;
    height: 52px;
}
.form-wrap {
    position: relative;
}

.modal-auth .form-wrap {
    position: relative;
}
.modal-regis .price-info {
    display: flex;
    justify-content: space-between;
    color: #333;
}
.modal-regis input#couponInput {
    color: #dc3f2e;
    padding: 6px 10px;
}

.modal-regis button#applyCoupon {
    border-radius: 5px;
    background: #fa8128;
    width: 110px;
    font-size: 16px;
}
.modal-regis .total-price {
    display: flex;
    justify-content: space-between;
    padding: 20px 15px;
    margin-top: 20px;
    margin-bottom: 15px;
    color: #333;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    font-weight: 600;
}

.modal-regis .price {
    color: rgb(255, 87, 34);
    font-weight: bold;
}

/* Hot Deal Styles - BEM Refactor */
.hot-deal {
    background: linear-gradient(180deg, #ffdd81 0%, #ffc940 100%);
    border-radius: 45px;
    padding: 30px 16px;
    margin-top: 30px;
    position: relative;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.hot-deal__original-price {
    position: absolute;
    top: -22px;
    left: 23%;
    transform: translateX(-50%);
    background: #0240b6;
    color: white;
    font-weight: 700;
    font-size: 20px;
    padding: 10px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 32, 172, 0.4);
    text-decoration: line-through;
}
.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgb(102, 102, 102);
    cursor: pointer;
    background: none;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
}
.hot-deal__promo {
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hot-deal__promo-label {
    font-size: 24px;
    color: #1e293b;
    font-weight: 600;
}

.hot-deal__promo-price {
    font-size: 38px;
    color: #0020ac;
    font-weight: 900;
    font-style: italic;
}

.hot-deal__promo-icon {
    width: 116px;
    height: auto;
    margin-left: 5px;
    position: absolute;
    top: -34px;
    right: -30px;
    max-width: inherit !important;
    max-height: inherit !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hot-deal {
        padding: 30px 15px 15px;
        border-radius: 30px;
    }

    .hot-deal__original-price {
        font-size: 16px;
        padding: 8px 20px;
        top: -18px;
    }

    .hot-deal__promo {
        gap: 8px;
        flex-wrap: wrap; /* Allow wrapping on small screens */
    }

    .hot-deal__promo-price {
        font-size: 32px;
    }

    .hot-deal__promo-icon {
        width: 55px;
    }
}
.modal-regis .phone-group {
    border-width: 1px;
    border-style: solid;
    border-color: rgb(218, 218, 218);
    border-image: initial;
    border-radius: 5px;
}
.modal-regis .phone-group input {
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
}
@media (max-width: 768px) {
    .section-buy {
        padding: 60px 0;
    }

    .buy-title {
        font-size: 28px;
    }

    .current-price {
        font-size: 32px;
    }

    .btn-buy-now {
        padding: 15px 30px;
        font-size: 16px;
        min-width: 250px;
    }

    .course-image,
    .course-placeholder {
        height: 250px;
    }

    .course-stats {
        flex-direction: column;
        gap: 15px;
    }

    .benefit-item {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 556px) {
    .tax-banner {
        padding: 30px 0;
    }

    .main-title {
        font-size: 20px;
    }

    .subtitle {
        font-size: 16px;
    }

    img.rocket-icon {
        width: 120px !important;
        height: auto;
    }

    .promo-card h3 {
        line-height: 26px;
        font-size: 16px;
    }

    .promo-card p {
        font-size: 16px;
    }

    p.slots-subtitle {
        font-size: 17px;
    }

    .progress-container {
        max-width: 290px;
    }

    .buy-content {
        padding: 15px;
        padding-top: 40px;
    }

    h5.buy-title {
        font-size: 18px;
    }

    img.special-tag {
        width: 100px;
        top: -28px;
        left: -27px;
    }

    .regis-content {
        margin-top: 30px;
    }

    .regis-content {
        padding: 10px;
    }

    .module-count {
        font-size: pa;
        /* padding: 0; */
    }

    .course-detail-desc {
        flex-direction: column;
    }
}
/* Checkout Disabled Styles - Clean & Professional */
.checkout-disabled-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #f8fafc;
    padding: 40px 20px;
}

.checkout-disabled-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.image-container {
    margin: 0 auto 30px;
    display: inline-block;
}

.image-container img {
    max-width: 280px;
    height: auto;
    border-radius: 12px;
}

.checkout-disabled-card .title {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
    line-height: 1.3;
}

.checkout-disabled-card .message {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.action-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.action-buttons .btn {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 160px;
    justify-content: center;
}

.action-buttons .btn-primary {
    background: #3b82f6;
    border: 1px solid #3b82f6;
    color: white;
}

.action-buttons .btn-primary:hover {
    background: #2563eb;
    border-color: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.action-buttons .btn-outline-primary {
    background: transparent;
    border: 1px solid #6b7280;
    color: #6b7280;
}

.action-buttons .btn-outline-primary:hover {
    background: #6b7280;
    color: white;
    transform: translateY(-1px);
}

.contact-info {
    border-top: 1px solid #e5e7eb;
    padding-top: 24px;
    margin-top: 16px;
}

.contact-text {
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 16px;
    font-weight: 600;
}

.contact-methods {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
}

.contact-item:hover {
    color: #2563eb;
    transform: translateY(-1px);
}

.contact-item i {
    font-size: 14px;
}

/* Responsive Design for Checkout Disabled */
@media (max-width: 768px) {
    .checkout-disabled-container {
        padding: 20px 16px;
    }

    .checkout-disabled-card {
        padding: 32px 24px;
        margin: 0;
        border-radius: 12px;
    }

    .checkout-disabled-card .title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .checkout-disabled-card .message {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .action-buttons .btn {
        width: 100%;
        max-width: 240px;
        padding: 14px 20px;
    }

    .contact-methods {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .image-container img {
        max-width: 240px;
    }
}
.modal-regis .user-info-container a {
    cursor: pointer;
}

/* Authenticated user styles */
.user-info-container .text-muted {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.user-info-container .text-muted i {
    margin-right: 8px;
}

/* Loading button styles */
#btn-checkout-regis:disabled {
    background: linear-gradient(135deg, #ff6b35, #f7931e) !important;
    opacity: 0.8;
    cursor: not-allowed;
}

#btn-checkout-regis .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Professional loading effect */
#btn-checkout-regis:disabled {
    position: relative;
    overflow: hidden;
}

#btn-checkout-regis:disabled::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Payment methods styling - Compact version for sidebar */
.payment-methods-container {
    background: #fff;
    border: 2px solid #ff6b35;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
}

.payment-methods-container .method-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.payment-methods-container .qr-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.payment-methods-container .qr-section {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 15px;
}

.payment-methods-container .bank-info-section {
    padding-top: 15px;
}

.payment-methods-container .bank-info-row {
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    font-size: 16px;
}

.payment-methods-container .bank-info-row:last-child {
    border-bottom: none;
}

.payment-methods-container .bank-info-label {
    font-weight: 600;
    color: #666;
    min-width: 80px;
}

.payment-methods-container .bank-info-value {
    font-weight: 500;
    color: #333;
    text-align: right;
    flex: 1;
}

.payment-methods-container .copy-value {
    margin-left: 5px;
    cursor: pointer;
    color: #ff6b35 !important;
    transition: color 0.2s ease;
    font-size: 12px;
}

.payment-methods-container .copy-value:hover {
    color: #e55a2b !important;
}

.payment-note {
    background: #fff9e6;
    border: 1px solid #ffd700;
    border-radius: 6px;
    padding: 10px;
    font-size: 12px;
    display: flex;
    align-items: center;
}

.payment-note p {
    margin-bottom: 5px;
    color: #b8860b;
    font-weight: 600;
}

.payment-note ul {
    margin-bottom: 0;
    color: #8b7355;
    padding-left: 8px;
}

.payment-note li {
    line-height: 1.3;
}

/* QR Code styling */
#qrcode {
    border: 2px solid #ff6b35;
    border-radius: 8px;
    padding: 10px;
    background: #fff;
}

#qrcode img {
    border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .payment-methods-container {
        padding: 12px;
    }

    .payment-methods-container .method-title {
        font-size: 13px;
    }

    .payment-methods-container .bank-info-row {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .payment-methods-container .bank-info-value {
        text-align: left;
        margin-top: 2px;
    }
}

/* Payment Tab Styles */
.payment-methods-container {
    padding: 15px;
}

.method-option {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    height: 100%;
}

.method-title {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
}

.qr-container {
    text-align: center;
    position: relative;
}

.border-bank {
    max-width: 200px;
    margin-bottom: 10px;
}

#qrcode {
    position: relative;
    display: inline-block;
    max-width: 200px;
    margin: 0 auto;
}

#qrcode img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.scanner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #007bff;
    border-radius: 8px;
    animation: scan 2s infinite;
}

@keyframes scan {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.bank-info {
    background: white;
    border-radius: 8px;
    padding: 15px;
}

.bank-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.bank-info-row:last-child {
    border-bottom: none;
}

.bank-info-label {
    font-weight: 600;
    color: #666;
    min-width: 120px;
}

.bank-info-value {
    font-weight: 500;
    color: #333;
    text-align: right;
    flex: 1;
}

.copy-value {
    cursor: pointer;
    margin-left: 8px;
    color: #007bff;
    transition: color 0.2s;
}

.copy-value:hover {
    color: #0056b3;
}

.payment-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 6px 15px;
    margin-top: 20px;
}

.payment-note p {
    margin-bottom: 10px;
    font-weight: 600;
    color: #856404;
}

.payment-note ul {
    margin-bottom: 0;
    padding-left: 20px;
}

.payment-note li {
    margin-bottom: 5px;
    color: #856404;
}

/* Pricing Plans Styles */
.pricing-plans-section {
    margin-bottom: 20px;
}

.pricing-summary-section {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.pricing-summary-section .price-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.pricing-summary-section .price-info:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Hot Deal Styles - khi không có giá gốc */
.hot-deal__promo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Khi không có original price, center the promo section */
.hot-deal:not(:has(.hot-deal__original-price)) .hot-deal__promo {
    margin-top: 10px;
}

.pricing-plans-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
    scroll-behavior: smooth;
}

.pricing-plan-option {
    min-width: 200px;
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.pricing-plan-option:hover {
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
}

.pricing-plan-option.selected {
    border-color: #ff6b35;
    background: #fff;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.plan-content {
    text-align: center;
    margin-bottom: 15px;
}

.plan-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.plan-duration {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.plan-price {
    margin-bottom: 10px;
}

.plan-price .original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    display: block;
}

.plan-price .discounted-price,
.plan-price .current-price {
    color: #ff6b35;
    font-size: 20px;
    font-weight: 700;
    display: block;
}

.plan-radio {
    display: flex;
    justify-content: center;
    align-items: center;
}

.plan-radio input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #dee2e6;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-plan-option.selected .radio-custom {
    border-color: #ff6b35;
    background: #ff6b35;
}

.pricing-plan-option.selected .radio-custom::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

/* Price Info Styles */
.price-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 8px;
}

.price-info:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.price-info span:first-child {
    font-weight: 500;
    color: #666;
}

.price-info span:last-child {
    font-weight: 600;
    color: #333;
}

/* Coupon Styles */
.coupon-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.coupon-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.coupon-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

/* Total Price Styles */
.total-price {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
}

/* Video Container Styles */
.video-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    background: #000;
}

.video-container .plyr__video-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container .plyr__video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* Plyr custom styling for checkout */
.plyr--youtube {
    border-radius: 12px;
    overflow: hidden;
}

.plyr__control--overlaid {
    background: rgba(255, 107, 53, 0.9);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.plyr__control--overlaid:hover {
    background: rgba(255, 107, 53, 1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-plans-container {
        gap: 10px;
    }

    .pricing-plan-option {
        min-width: 160px;
        padding: 15px;
    }

    .plan-name {
        font-size: 16px;
    }

    .plan-price .discounted-price,
    .plan-price .current-price {
        font-size: 18px;
    }

    .video-container {
        margin-bottom: 20px;
    }
}

/* Payment Status and Countdown Styles */
.payment-status-section {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid #ffeaa7;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.countdown-timer {
    font-family: "Courier New", monospace;
    font-weight: bold;
    font-size: 20px !important;
    color: #007bff;
    background: white;
    padding: 8px 16px;
    border-radius: 8px;
    border: 2px solid #007bff;
    min-width: 80px;
    text-align: center;
    transition: all 0.3s ease;
}

.countdown-timer.warning {
    color: #fd7e14;
    border-color: #fd7e14;
    animation: pulse 1s infinite;
}

.countdown-timer.danger {
    color: #dc3545;
    border-color: #dc3545;
    animation: pulse 0.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.payment-status-text {
    font-weight: 500;
    color: #6c757d;
    transition: color 0.3s ease;
}

.spinner-border-sm {
    animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

/* Congratulations Section Styles */
.congratulations-section {
    position: relative;
    overflow: hidden;
}

.congratulations-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    50% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
    100% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,
    20%,
    53%,
    80%,
    100% {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translate3d(0, 0, 0);
    }
    40%,
    43% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

.arrow-container {
    margin-top: 10px;
}

/* Gradient text effect */
.gradient-text {
    background: linear-gradient(45deg, #ff6b35, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0 80px;
    background: #fff;
}

.faq-title {
    font-weight: 900;
    font-size: 32px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #1540ff;
    margin-bottom: 50px;
}

.faq-section .accordion {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-section .accordion-item {
    border: 1px solid #e9e9e9;
    border-radius: 12px !important;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}

.faq-section .accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.faq-section .accordion-header {
    margin: 0;
}

.faq-section .accordion-button {
    font-size: 16px;
    font-weight: 600;
    color: #343a40;
    background-color: #fff;
    text-align: left;
    padding: 20px;
    width: 100%;
    border: none;
    border-radius: 12px !important;
    box-shadow: none !important;
    position: relative;
    transition: color 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed) {
    color: #e53935;
    background-color: #fff;
}

.faq-section .accordion-button::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    color: #e53935;
    background-image: none;
    transition: transform 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed)::after {
    content: "−";
}

.faq-section .accordion-body {
    padding: 0 20px 20px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    background-color: #fff;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.faq-section .accordion-collapse {
    border: none;
}

/* Fixed Buy Now Button */
.fixed-buy-button-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
    z-index: 1000;
    pointer-events: none;
}

.btn-buy-now-fixed {
    pointer-events: auto;
    padding: 10px 30px;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse-button 2s infinite ease-in-out;
    border: 3px solid #fff;
    background: linear-gradient(270deg, #ff6c00 0%, #e201f8 100%);
    color: #fff;
    text-align: center;
    text-shadow: 0px 2.213px 2.213px rgba(0, 0, 0, 0.25);
}

.btn-buy-now-fixed:hover {
    animation-play-state: paused;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.btn-buy-now-fixed .animated-arrows {
    display: inline-block;
    animation: move-arrows 1.5s infinite ease-in-out;
    width: 20px;
    height: auto;
}

@keyframes pulse-button {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(255, 91, 44, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }
}

@keyframes move-arrows {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateX(10px);
        opacity: 0;
    }
    51% {
        transform: translateX(-10px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
/* Meter Progress Bar Styles */
.meter {
    box-sizing: content-box;
    height: 17px;
    position: relative;
    margin: 20px 0;
    background: #fff;
    border-radius: 25px;
    padding: 4px;
    box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
    flex: 1;
}
.meter > span {
    display: block;
    height: 100%;
    border-radius: 20px;
    background-color: #fa8128;
    background-image: linear-gradient(90deg, #ffae00 0%, #e200f8 98.72%);
    box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3),
        inset 0 -2px 6px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}
.meter > span:after,
.animate > span > span {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.2) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.2) 75%,
        transparent 75%,
        transparent
    );
    z-index: 1;
    background-size: 50px 50px;
    animation: move 2s linear infinite;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    overflow: hidden;
}

.animate > span:after {
    display: none;
}

@keyframes move {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

.orange > span {
    background-image: linear-gradient(#f1a165, #f36d0a);
}

.red > span {
    background-image: linear-gradient(#f0a3a3, #f42323);
}

.nostripes > span > span,
.nostripes > span::after {
    background-image: none;
}
