html {
    overflow-x: hidden;
    overflow-x: clip;
    overflow-y: auto;
    scrollbar-gutter: stable;
}

body {
    overflow-x: hidden;
    overflow-x: clip;
    overflow-y: visible;
    font-family: Kanit, sans-serif;
    background-color: #000000;
    width: 100%;
    margin: 0;
}

.main-menu {
    border-bottom: 1px solid rgba(230, 0, 18, 0.4);
    background: rgba(8, 8, 8, 0.92);
    color: rgb(255, 255, 255);
    position: fixed;
    width: 100%;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 1000;
    padding: 0.75rem 0px;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

.menu-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo img {
    max-height: 50px;
    width: auto;
}

.menu-right {
    flex-shrink: 0;
}

.hamburger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0px;
    border: 1px solid rgb(230, 0, 18);
    border-radius: 0.25rem;
    background: transparent;
    color: rgb(255, 255, 255);
    font-size: 1.5rem;
    line-height: 1;
    transition: 0.25s ease-in-out;
}

.hamburger-btn:hover,
.hamburger-btn[aria-expanded="true"] {
    background-color: rgba(230, 0, 18, 0.15);
    border-color: rgb(255, 51, 68);
    color: rgb(255, 255, 255);
}

.mobile-nav {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(230, 0, 18, 0.25);
}

.mobile-nav .list-menu ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav .list-menu ul li {
    width: 100%;
}

.mobile-nav .list-menu ul li a {
    width: 100%;
}

.list-menu ul li {
    border-radius: 0.25rem;
    border: 1px solid rgb(230, 0, 18);
    transition: 0.25s ease-in-out;

    & a {
        display: block;
        color: rgb(255, 255, 255);
        text-decoration: none;
        font-weight: 600;
        font-size: clamp(0.8rem, 1vw, 0.95rem);
        padding: 0.4rem 1rem;
        white-space: nowrap;
        text-align: center;
    }
}

.list-menu ul li:not(.menu-system):hover {
    background-color: rgba(230, 0, 18, 0.15);
    border-color: rgb(255, 51, 68);
    transform: translateY(-2px);
}

.menu-system {
    background-color: rgb(230, 0, 18);
}

.menu-system:hover {
    background-color: rgb(255, 26, 46);
    border-color: rgb(255, 26, 46);
    transform: translateY(-2px);
    box-shadow: rgba(230, 0, 18, 0.4) 0px 4px 15px;
}

#section-1 {
    background: url("../images/bg-sec-1.jpg") center center / cover no-repeat;
    overflow: hidden;
    padding-top: 9.5rem;
    position: relative;
}


.btn-system,
.btn-product-more {
    position: relative;
    display: inline-block;
    overflow: hidden;
    isolation: isolate;
    transition:
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.35s ease;
}

.btn-system img,
.btn-product-more img {
    display: block;
    position: relative;
    z-index: 1;
}

.btn-system::after,
.btn-product-more::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(105deg,
            transparent 38%,
            rgba(255, 255, 255, 0.08) 44%,
            rgba(255, 255, 255, 0.45) 50%,
            rgba(255, 200, 200, 0.2) 56%,
            transparent 62%);
    transform: translateX(-130%);
    transition: transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-mode: alpha;
    mask-mode: alpha;
}

.btn-system::after {
    -webkit-mask-image: url("../images/btn-system.png");
    mask-image: url("../images/btn-system.png");
}

.btn-product-more::after {
    -webkit-mask-image: url("../images/btn-product-more.png");
    mask-image: url("../images/btn-product-more.png");
}

.btn-system:hover,
.btn-product-more:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 0 12px rgba(230, 0, 18, 0.55)) drop-shadow(0 8px 24px rgba(230, 0, 18, 0.35));
}

.btn-system:hover::after,
.btn-product-more:hover::after {
    transform: translateX(130%);
}

@media (prefers-reduced-motion: reduce) {

    .btn-system,
    .btn-product-more {
        transition: filter 0.2s ease;
    }

    .btn-system::after,
    .btn-product-more::after {
        display: none;
    }

    .btn-system:hover,
    .btn-product-more:hover {
        transform: none;
    }
}

.section-1-content {
    position: relative;
    z-index: 2;
    padding-bottom: 1.5rem;
}

.main-logo-au-rog {
    text-align: center;
}

.character img {
    display: block;
    width: 100%;
    height: auto;
}

@media (min-width: 768px) {
    .main-logo-au-rog {
        text-align: left;
    }

    .section-1-content {
        padding-bottom: 2.5rem;
    }
}

@media (min-width: 992px) {
    .character {
        position: absolute;
        /* bottom: -28%; */
        right: -2%;
        width: min(90%, 656px);
        z-index: 1;
        pointer-events: none;
    }
}

@media (min-width: 1200px) {
    .character {
        bottom: -41%;
        right: -7%;
        width: min(78%, 1036px);
    }
}

.reward-block-sec-1 {
    border-radius: 10px;
    border: 1px solid rgb(207, 53, 59);
    margin-top: 1.75rem;
    background: linear-gradient(90deg, rgb(5, 1, 2) 0%, rgb(70, 10, 12) 51.44%, rgb(5, 1, 2) 100%);
    position: relative;
    z-index: 2;
}

.inner-reward-block-sec-1 {
    border-radius: 10px;
    border: 1px solid rgb(207, 53, 59);
    margin: 1.25rem;
    padding: 1rem;
}

.inner-reward-block-sec-1 img {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 768px) {
    .row-cols-md-8>* {
        flex: 0 0 auto;
        width: 12.5%;
    }
}

#section-2 {
    background: url(../images/bg-sec-2.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
}

#section-2 .row.row-cols-md-2>.col {
    display: flex;
}

.title-section {
    font-family: "Rajdhani", sans-serif;
    color: #E60012;
    font-size: 0.95625rem;
    font-weight: 600;
    line-height: 1.43438rem;
    letter-spacing: 0.23906rem;
    text-transform: uppercase;
    padding-top: 5.75rem;
}

.sub-title-section,
.span-title-section {
    font-size: 2.7rem;
    font-weight: 700;
    line-height: 3.24rem;
    color: #E60012;
}

.card-rw-sec-2 {
    background: #141414;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.card-img-top {
    border-radius: 16px;
}

.card-rw-sec-2 .card-img-top {
    flex-shrink: 0;
}

.card-body h5 {
    font-size: 1.35rem;
    font-style: normal;
    font-weight: 700;
}

.card-rw-sec-2 .card-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

/* .card-rw-sec-2 .card-body > * {
    margin: 0;
} */

.text-rw-sec-2 {
    color: #C8C8C8;
    font-size: 0.99rem;
    font-weight: 400;
    line-height: 1.683rem;
}

.alert-rw-red {
    width: fit-content;
    color: #E60012;
    font-size: 0.73125rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.09688rem;
    letter-spacing: 0.10969rem;
    padding: 0.25rem 0.75rem;
    border-radius: 0.1875rem;
    border: 1px solid rgba(230, 0, 18, 0.40);
    background: rgba(230, 0, 18, 0.15);
}

.alert-rw-yellow {
    width: fit-content;
    color: #C9A227;
    font-size: 0.73125rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.09688rem;
    letter-spacing: 0.10969rem;
    padding: 0.25rem 0.75rem;
    border-radius: 0.1875rem;
    border: 1px solid rgba(201, 162, 39, 0.30);
    background: rgba(201, 162, 39, 0.12);
}

.span-rw-red {
    color: #E60012;
    font-size: 0.99rem;
    font-weight: 300;
    line-height: 1.683rem;
}

.icon-check {
    color: #E60012;
}

.span-title-rw-2 {
    color: #C9A227;
}

#section-3 {
    background: url(../images/bg-sec-3.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
}

.badges-bg {
    border-radius: 6.25rem;
    border: 1px solid rgba(230, 0, 18, 0.40);
    background: rgba(230, 0, 18, 0.10);
    padding: 0.5rem 1rem;
    width: fit-content;
    margin: 0 auto;
    color: #E8E8E8;
    font-weight: 600;
    font-size: 1.0125rem;
}

.span-title {
    color: #E60012;
    font-size: 1.0125rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.51875rem;
}

.step-item-mid {
    gap: 0.75rem;
}

.line-step {
    flex-shrink: 0;
    /* width: 3.5rem; */
    height: auto;
}

.row-steps::before {
    content: "";
    background: url(../images/line-step.png) center / contain no-repeat;
    width: 140px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

@media (max-width: 1024px) {
    .row-steps::before {
        display: none;
    }
}

.how-text-title {
    color: #E8E8E8;
    font-size: 1.40625rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.6875rem;
}

.how-text-list {
    list-style: none;
    counter-reset: how-step;
    padding: 0 1.5rem 1.5rem;
    margin-bottom: 0;
}

.how-text-list li {
    counter-increment: how-step;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #CCC;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.8rem;
}

.how-text-list li+li {
    margin-top: 1rem;
}

.how-text-list li::before {
    content: counter(how-step);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50px;
    background: #E60012;
    /* border: 1px solid rgba(230, 0, 18, 0.40); */
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1;
}

.span-how-text-list {
    color: #E60012;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8rem;
}

.how-alert-yellow {
    padding: 1.1875rem;
    align-items: center;
    gap: 0.1875rem;
    border-radius: 0.42188rem;
    border: 1px solid rgba(201, 162, 39, 0.20);
    background: rgba(201, 162, 39, 0.06);
    color: #BBB;
    margin: 0 1.5rem 1.5rem;
}

.icon-how-alert-yellow {
    color: #C9A227;
}

.number-accordion {
    border-radius: 10px;
    border-radius: 0.25rem;
    border: 1px solid rgba(230, 0, 18, 0.40);
    background: rgba(230, 0, 18, 0.15);
    color: #E60012;
    font-size: 0.875rem;
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-button-bg {
    background: #141414 !important;
}

.accordion-button-bg:not(.collapsed),
.accordion-button-bg {
    color: #E8E8E8 !important;
    font-size: 1.0125rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.51875rem;
    box-shadow: none !important;
    border-radius: 0.42188rem;
}

.accordion-button-bg:not(.collapsed) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.accordion-button-bg::after {
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E60012'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-image: var(--bs-accordion-btn-icon) !important;
}

.accordion-button-bg:not(.collapsed)::after {
    transform: var(--bs-accordion-btn-icon-transform);
}

.accordion-text-list {
    color: #C8C8C8;
    font-size: 1.06875rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.92375rem;
}

#accordionExample {
    --bs-accordion-border-width: 0;
    --bs-accordion-border-radius: 0;
    --bs-accordion-inner-border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.accordion-bg {
    border-radius: 0.42188rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
    background: #141414;
}

.accordion-bg .accordion-body {
    padding: 1rem 1.25rem;
    background: #141414;
}

.btn-join-now {
    border-radius: 0.5rem;
    background: #E60012;
    padding: 1rem 3rem;
    color: #FFF;
    text-align: center;
    font-size: 1.2375rem;
    font-style: normal;
    font-weight: 600;
    text-decoration: none;
    display: block;
    width: fit-content;
    margin: 0 auto;
    transition: 0.25s ease-in-out;
    border: 1px solid rgb(230, 0, 18);
    box-shadow: rgba(230, 0, 18, 0.4) 0px 4px 15px;
}

.btn-join-now:hover {
    border-radius: 0.5rem;
    background: transparent;
    border: 1px solid rgb(230, 0, 18);
    transition: 0.25s ease-in-out;
    box-shadow: rgba(230, 0, 18, 0.4) 0px 4px 15px;
}

.span-btn-join-now {
    color: #BBB;
    text-align: center;
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.35rem;
}

#section-4 {
    background: url(../images/bg-sec-4.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
}

.section-4-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-bottom: 3rem;
}

#section-4 .row-product>.col {
    display: flex;
}

.product-info {
    color: #E0E0E0;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.6875rem;
}

.product-info-gift {
    margin-top: auto;
    color: #C9A227;
    font-size: 0.99rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.485rem;
}

/* .product-link {
    color: #E60012;
    font-size: 0.9225rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.38375rem;
    text-decoration: none;
    transition: 0.25s ease-in-out;
}

.product-link:hover {
    color: #E0E0E0;
    transition: 0.25s ease-in-out;
} */

.product-link-2 {
    color: #fff;
    border: 1px solid rgba(230, 0, 18, 0.30);
    background-color: rgb(230, 0, 18);
    font-size: 0.9225rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.38375rem;
    text-decoration: none;
    transition: 0.25s ease-in-out;
    width: 100%;
    text-align: center;
    padding: 0.4rem 1rem;
    border-radius: 0.5rem;
    margin: 0 auto;
    display: block;
    box-shadow: rgba(230, 0, 18, 0.4) 0px 4px 15px;
}

.product-link-2:hover {
    border: 1px solid rgba(230, 0, 18, 0.30);
    background: rgba(230, 0, 18, 0.10);
    transition: 0.25s ease-in-out;
    box-shadow: rgba(230, 0, 18, 0.4) 0px 4px 15px;
}

.card-product-highlight-1 {
    border-radius: 0.875rem;
    border: 1px solid rgba(230, 0, 18, 0.30);
    background: linear-gradient(135deg, #180A0A 0%, #1E0C0C 50%, #140808 100%);
}

.card-product-highlight-2 {
    border-radius: 0.875rem;
    border: 1px solid rgba(201, 162, 39, 0.30);
    background: #201A07;
}

.card-product-highlight-3 {
    border-radius: 0.875rem;
    border: 1px solid rgba(180, 180, 255, 0.30);
    background: linear-gradient(135deg, #0A0A1A 0%, #0D0D25 50%, #070710 100%);
}

.card-product-highlight-1,
.card-product-highlight-2,
.card-product-highlight-3 {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.card-product-highlight-1 .card-body,
.card-product-highlight-2 .card-body,
.card-product-highlight-3 .card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 1rem;
}

.card-product-highlight-1 .card-body .product-link-2,
.card-product-highlight-2 .card-body .product-link-2,
.card-product-highlight-3 .card-body .product-link-2 {
    margin-top: auto;
}

.span-product-pack-red {
    border-radius: 0.1875rem;
    background: #E60012;
    padding: 0.1875rem 0.75rem;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    color: #FFF;
    font-size: 0.73125rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.09688rem;
    letter-spacing: 0.10969rem;
    text-transform: uppercase;
}

.span-product-pack-yellow {
    border-radius: 0.1875rem;
    background: #C9A227;
    padding: 0.1875rem 0.75rem;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    color: #FFF;
    font-size: 0.73125rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.09688rem;
    letter-spacing: 0.10969rem;
    text-transform: uppercase;
}

.span-product-highlight {
    position: absolute;
    top: 5%;
    left: 2%;
}

.logo-rog {
    position: absolute;
    bottom: 7%;
    right: 4%;
    width: 11%;
}

.product-info-price-1,
.product-table>tbody>tr>td.product-info-price-1,
.product-table>tbody>tr>td.product-info-price-2 {
    color: #F0C840;
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.25rem;
    letter-spacing: 0.045rem;
}

.product-info-price-2,
.product-table>tbody>tr>td.product-info-price-3 {
    color: #C0C0FF;
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.25rem;
    /* 100% */
    letter-spacing: 0.045rem;
}

.product-table tbody tr th,
.product-table tbody tr td {
    background: transparent !important;
}

.product-table th {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9225rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.38375rem;
    letter-spacing: 0.03688rem;
}

.product-table td {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9225rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.38375rem;
}

footer {
    border-top: 1px solid rgba(230, 0, 18, 0.40);
    background: #050505;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.footer-content {
    color: #BBB;
    font-size: 0.8775rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5795rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links li {
    display: flex;
    /* justify-content: flex-end; */
}

.footer-link {
    color: #BBB;
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.35rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
}

.footer-link i {
    transition: transform 0.3s ease, color 0.3s ease;

}

.footer-link:hover {
    color: #E60012;
    transform: translateX(0.35rem);
    text-shadow: 0 0 1rem rgba(230, 0, 18, 0.25);
}

.footer-link:hover i {
    transform: translateX(0.15rem);
    color: #FF3344;
}

.pdpa-link {
    color: #BBB;
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.35rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
}

.pdpa-link:hover {
    color: #E60012;
    /* transform: translateX(0.35rem); */
    text-shadow: 0 0 1rem rgba(230, 0, 18, 0.25);
}

.modal-alert-yellow {
    padding: 1.1875rem;
    align-items: center;
    gap: 0.1875rem;
    border-radius: 0.42188rem;
    border: 1px solid rgba(201, 162, 39, 0.20);
    background: rgba(201, 162, 39, 0.06);
    color: #BBB;
}

.modal-button {
    border-radius: 0.25rem;
    border: 1px solid rgb(230, 0, 18);
    transition: 0.25s ease-in-out;
    font-weight: 400;
    font-size: clamp(0.8rem, 1vw, 0.95rem);
    padding: 0.4rem 1rem;
    white-space: nowrap;
    text-align: center;
    font-size: 1.125rem;

    a {
        color: #E60012;
    }
}

.modal-button-system {
    border-radius: 0.25rem;
    border: 1px solid rgb(230, 0, 18);
    transition: 0.25s ease-in-out;
    font-weight: 400;
    font-size: clamp(0.8rem, 1vw, 0.95rem);
    padding: 0.4rem 1rem;
    white-space: nowrap;
    text-align: center;
    font-size: 1.125rem;
    background-color: rgb(230, 0, 18);

    a {
        color: #fff;
    }
}

.span-additional {
    color: #CCC;
    font-size: 0.95625rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.53rem;
}

/* td.text-price-highlight {
    color: #F0C840;
    font-size: 2.025rem;
    font-style: normal;
    font-weight: 700;
    line-height: 3.24rem;
} */