/* =========================================================
   MMO HOME
   ========================================================= */

:root {
    --mmo-primary: #6c5ce7;
    --mmo-primary-rgb: 108, 92, 231;

    --mmo-secondary: #00d4ff;
    --mmo-secondary-rgb: 0, 212, 255;

    --mmo-success: #20e3b2;
    --mmo-danger: #ff4d7d;
    --mmo-warning: #ffca3a;

    --mmo-dark: #090d18;
    --mmo-dark-soft: #0f1525;

    --mmo-card: rgba(255, 255, 255, 0.055);
    --mmo-border: rgba(255, 255, 255, 0.10);
    --mmo-text-muted: rgba(255, 255, 255, 0.62);
}


/* =========================================================
   BASE
   ========================================================= */

#mmo-home {
    position: relative;

    min-height: 100vh;

    overflow: hidden;
}


#mmo-home *,
#mmo-home *::before,
#mmo-home *::after {
    box-sizing: border-box;
}


.mmo-page {
    position: relative;

    z-index: 2;
}


/* =========================================================
   BACKGROUND
   ========================================================= */

.mmo-background {
    position: absolute;

    inset: 0;

    z-index: 0;

    overflow: hidden;

    pointer-events: none;
}


.mmo-background::before {
    content: "";

    position: absolute;

    inset: 0;

    opacity: .32;

    background-image:
        linear-gradient(
            rgba(108, 92, 231, .08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(108, 92, 231, .08) 1px,
            transparent 1px
        );

    background-size: 54px 54px;

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.85),
            transparent 70%
        );

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.85),
            transparent 70%
        );
}


.mmo-orb {
    position: absolute;

    border-radius: 999px;

    filter: blur(90px);

    opacity: .20;

    animation:
        mmoFloatOrb
        12s
        ease-in-out
        infinite
        alternate;
}


.mmo-orb-one {
    width: 420px;
    height: 420px;

    left: -150px;
    top: 100px;

    background: var(--mmo-primary);
}


.mmo-orb-two {
    width: 380px;
    height: 380px;

    right: -100px;
    top: 420px;

    background: var(--mmo-secondary);

    animation-delay: -4s;
}


.mmo-orb-three {
    width: 300px;
    height: 300px;

    left: 45%;
    top: 1000px;

    background: #9b5cff;

    animation-delay: -7s;
}


@keyframes mmoFloatOrb {

    from {
        transform:
            translate3d(0, 0, 0)
            scale(1);
    }

    to {
        transform:
            translate3d(40px, 60px, 0)
            scale(1.15);
    }

}


/* =========================================================
   COMMON SECTION
   ========================================================= */

.mmo-section {
    position: relative;

    padding: 30px 0;
}


.mmo-section-header {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    flex-wrap: wrap;

    gap: 20px;

    margin-bottom: 26px;
}


.mmo-section-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 8px;

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.6px;

    color: var(--mmo-primary);
}


.mmo-section-eyebrow::before {
    content: "";

    width: 24px;
    height: 2px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            var(--mmo-primary),
            var(--mmo-secondary)
        );
}


.mmo-section-title {
    margin: 0;

    font-size:
        clamp(
            24px,
            3vw,
            34px
        );

    line-height: 1.18;

    font-weight: 900;

    letter-spacing: -.8px;
}


.mmo-section-desc {
    margin:
        9px
        0
        0;

    color: var(--bs-gray-600);

    font-size: 14px;

    line-height: 1.7;
}


.mmo-glass {
    border:
        1px solid
        rgba(
            var(--mmo-primary-rgb),
            .12
        );

    background:
        rgba(
            255,
            255,
            255,
            .82
        );

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    box-shadow:
        0
        18px
        60px
        rgba(
            27,
            32,
            67,
            .07
        );
}


[data-bs-theme="dark"] .mmo-glass,
.dark-mode .mmo-glass {
    background:
        rgba(
            15,
            21,
            37,
            .76
        );

    border-color:
        rgba(
            255,
            255,
            255,
            .08
        );

    box-shadow:
        0
        20px
        60px
        rgba(
            0,
            0,
            0,
            .20
        );
}


/* =========================================================
   HERO
   ========================================================= */

.mmo-hero {
    position: relative;

    display: flex;

    align-items: center;

    min-height: 535px;

    margin-top: 10px;
    margin-bottom: 20px;

    overflow: hidden;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .08
        );

    border-radius: 30px;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(
                var(--mmo-primary-rgb),
                .23
            ),
            transparent 36%
        ),
        radial-gradient(
            circle at 85% 45%,
            rgba(
                var(--mmo-secondary-rgb),
                .17
            ),
            transparent 33%
        ),
        linear-gradient(
            135deg,
            #0a0e1b 0%,
            #11172c 48%,
            #090d18 100%
        );

    box-shadow:
        0
        30px
        80px
        rgba(
            0,
            0,
            0,
            .26
        ),
        inset
        0
        1px
        0
        rgba(
            255,
            255,
            255,
            .05
        );
}


.mmo-hero::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(
                255,
                255,
                255,
                .025
            )
            1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(
                255,
                255,
                255,
                .025
            )
            1px,
            transparent 1px
        );

    background-size:
        46px
        46px;

    -webkit-mask-image:
        linear-gradient(
            to right,
            rgba(
                0,
                0,
                0,
                .85
            ),
            transparent 92%
        );

    mask-image:
        linear-gradient(
            to right,
            rgba(
                0,
                0,
                0,
                .85
            ),
            transparent 92%
        );
}


.mmo-hero::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -230px;
    bottom: -270px;

    border:
        1px solid
        rgba(
            var(--mmo-secondary-rgb),
            .18
        );

    border-radius: 50%;

    box-shadow:
        0
        0
        0
        55px
        rgba(
            var(--mmo-secondary-rgb),
            .025
        ),
        0
        0
        0
        115px
        rgba(
            var(--mmo-primary-rgb),
            .018
        );
}


.mmo-hero-inner {
    position: relative;

    z-index: 2;

    width: 100%;

    padding:
        60px
        56px;
}


.mmo-hero-grid {
    display: grid;

    grid-template-columns:
        minmax(
            0,
            1.25fr
        )
        minmax(
            340px,
            .75fr
        );

    align-items: center;

    gap: 55px;
}


.mmo-hero-badge {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding:
        8px
        13px;

    margin-bottom: 20px;

    border:
        1px solid
        rgba(
            var(--mmo-primary-rgb),
            .35
        );

    border-radius: 999px;

    background:
        rgba(
            var(--mmo-primary-rgb),
            .11
        );

    color: #d8d4ff;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: .2px;
}


.mmo-status-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        var(--mmo-success);

    box-shadow:
        0
        0
        0
        0
        rgba(
            32,
            227,
            178,
            .5
        );

    animation:
        mmoPulse
        1.8s
        infinite;
}


@keyframes mmoPulse {

    0% {
        box-shadow:
            0
            0
            0
            0
            rgba(
                32,
                227,
                178,
                .48
            );
    }

    70% {
        box-shadow:
            0
            0
            0
            9px
            rgba(
                32,
                227,
                178,
                0
            );
    }

    100% {
        box-shadow:
            0
            0
            0
            0
            rgba(
                32,
                227,
                178,
                0
            );
    }

}


.mmo-hero-title {
    max-width: 760px;

    margin: 0;

    color: #fff;

    font-size:
        clamp(
            37px,
            5.1vw,
            67px
        );

    font-weight: 950;

    line-height: 1.04;

    letter-spacing: -2.3px;
}


.mmo-gradient-text {
    display: inline-block;

    color: transparent;

    background:
        linear-gradient(
            90deg,
            #9c91ff,
            #67e8ff,
            #8e7dff
        );

    background-size:
        200%
        auto;

    -webkit-background-clip:
        text;

    background-clip:
        text;

    animation:
        mmoGradientMove
        5s
        linear
        infinite;
}


@keyframes mmoGradientMove {

    to {
        background-position:
            200%
            center;
    }

}


.mmo-hero-desc {
    max-width: 650px;

    margin:
        20px
        0
        0;

    color:
        rgba(
            255,
            255,
            255,
            .62
        );

    font-size: 15px;

    line-height: 1.85;
}


.mmo-hero-actions {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}


.mmo-btn {
    position: relative;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 48px;

    padding:
        11px
        20px;

    overflow: hidden;

    border-radius: 13px;

    text-decoration:
        none
        !important;

    font-size: 13px;
    font-weight: 800;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


.mmo-btn:hover {
    transform:
        translateY(-3px);
}


.mmo-btn-primary {
    color:
        #fff
        !important;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .12
        );

    background:
        linear-gradient(
            135deg,
            var(--mmo-primary),
            #806aff
        );

    box-shadow:
        0
        13px
        32px
        rgba(
            var(--mmo-primary-rgb),
            .28
        );
}


.mmo-btn-primary::before {
    content: "";

    position: absolute;

    top: -50%;
    left: -100%;

    width: 70px;
    height: 200%;

    transform:
        rotate(22deg);

    background:
        rgba(
            255,
            255,
            255,
            .20
        );

    transition:
        left .55s ease;
}


.mmo-btn-primary:hover::before {
    left: 130%;
}


.mmo-btn-outline {
    color:
        rgba(
            255,
            255,
            255,
            .84
        )
        !important;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .14
        );

    background:
        rgba(
            255,
            255,
            255,
            .045
        );
}


.mmo-btn-outline:hover {
    border-color:
        rgba(
            var(--mmo-secondary-rgb),
            .45
        );

    background:
        rgba(
            var(--mmo-secondary-rgb),
            .08
        );
}


/* =========================================================
   HERO TERMINAL
   ========================================================= */

.mmo-hero-visual {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 330px;
}


.mmo-terminal {
    position: relative;

    width: 100%;
    max-width: 390px;

    overflow: hidden;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .11
        );

    border-radius: 22px;

    background:
        rgba(
            12,
            17,
            32,
            .79
        );

    box-shadow:
        0
        35px
        70px
        rgba(
            0,
            0,
            0,
            .35
        ),
        0
        0
        55px
        rgba(
            var(--mmo-primary-rgb),
            .10
        );

    backdrop-filter:
        blur(18px);

    transform:
        rotate(1.2deg);

    animation:
        mmoTerminalFloat
        5s
        ease-in-out
        infinite;
}


@keyframes mmoTerminalFloat {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(1.2deg);
    }

    50% {
        transform:
            translateY(-12px)
            rotate(.2deg);
    }

}


.mmo-terminal-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    min-height: 48px;

    padding:
        0
        16px;

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            .07
        );

    background:
        rgba(
            255,
            255,
            255,
            .025
        );
}


.mmo-terminal-dots {
    display: flex;

    gap: 6px;
}


.mmo-terminal-dots span {
    display: block;

    width: 8px;
    height: 8px;

    border-radius: 50%;
}


.mmo-terminal-dots span:nth-child(1) {
    background: #ff5f57;
}


.mmo-terminal-dots span:nth-child(2) {
    background: #febc2e;
}


.mmo-terminal-dots span:nth-child(3) {
    background: #28c840;
}


.mmo-terminal-label {
    color:
        rgba(
            255,
            255,
            255,
            .40
        );

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .8px;
}


.mmo-terminal-body {
    padding: 22px;
}


.mmo-code-line {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 13px;

    font-family:
        Consolas,
        Monaco,
        monospace;

    font-size: 11px;

    color:
        rgba(
            255,
            255,
            255,
            .55
        );
}


.mmo-code-prefix {
    color:
        var(--mmo-secondary);
}


.mmo-code-success {
    color:
        var(--mmo-success);
}


.mmo-terminal-product {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 18px;

    padding: 14px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .07
        );

    border-radius: 15px;

    background:
        rgba(
            255,
            255,
            255,
            .035
        );
}


.mmo-terminal-product-icon {
    flex:
        0
        0
        45px;

    display: grid;

    place-items: center;

    width: 45px;
    height: 45px;

    border-radius: 13px;

    color: #fff;

    font-size: 20px;

    background:
        linear-gradient(
            135deg,
            rgba(
                var(--mmo-primary-rgb),
                .9
            ),
            rgba(
                var(--mmo-secondary-rgb),
                .75
            )
        );

    box-shadow:
        0
        9px
        25px
        rgba(
            var(--mmo-primary-rgb),
            .18
        );
}


.mmo-terminal-product-title {
    margin-bottom: 4px;

    color: #fff;

    font-size: 12px;
    font-weight: 800;
}


.mmo-terminal-product-subtitle {
    color:
        rgba(
            255,
            255,
            255,
            .40
        );

    font-size: 10px;
}


.mmo-terminal-product-status {
    margin-left: auto;

    color:
        var(--mmo-success);

    font-size: 10px;
    font-weight: 800;
}


.mmo-floating-chip {
    position: absolute;

    z-index: 3;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding:
        10px
        13px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .10
        );

    border-radius: 13px;

    background:
        rgba(
            10,
            14,
            27,
            .85
        );

    color:
        rgba(
            255,
            255,
            255,
            .77
        );

    font-size: 10px;
    font-weight: 800;

    box-shadow:
        0
        18px
        35px
        rgba(
            0,
            0,
            0,
            .25
        );

    backdrop-filter:
        blur(10px);
}


.mmo-floating-chip-one {
    top: 22px;
    right: -5px;

    animation:
        mmoChip
        4s
        ease-in-out
        infinite;
}


.mmo-floating-chip-two {
    left: -5px;
    bottom: 34px;

    animation:
        mmoChip
        4.5s
        ease-in-out
        infinite
        reverse;
}


@keyframes mmoChip {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-8px);
    }

}


/* =========================================================
   QUICK CATEGORY
   ========================================================= */

.mmo-category-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(
                0,
                1fr
            )
        );

    gap: 15px;
}


.mmo-category-card {
    position: relative;

    display: flex;

    align-items: center;

    gap: 14px;

    min-height: 90px;

    padding: 17px;

    overflow: hidden;

    border:
        1px solid
        rgba(
            var(--mmo-primary-rgb),
            .10
        );

    border-radius: 18px;

    background:
        var(--bs-body-bg);

    color:
        inherit
        !important;

    text-decoration:
        none
        !important;

    box-shadow:
        0
        12px
        40px
        rgba(
            27,
            32,
            67,
            .05
        );

    transition:
        transform .28s ease,
        border-color .28s ease,
        box-shadow .28s ease;
}


.mmo-category-card::after {
    content: "";

    position: absolute;

    width: 90px;
    height: 90px;

    top: -45px;
    right: -45px;

    border-radius: 50%;

    background:
        rgba(
            var(--mmo-primary-rgb),
            .08
        );

    transition:
        transform .35s ease;
}


.mmo-category-card:hover {
    transform:
        translateY(-6px);

    border-color:
        rgba(
            var(--mmo-primary-rgb),
            .30
        );

    box-shadow:
        0
        20px
        45px
        rgba(
            var(--mmo-primary-rgb),
            .10
        );
}


.mmo-category-card:hover::after {
    transform:
        scale(1.8);
}


.mmo-category-icon {
    position: relative;

    z-index: 2;

    flex:
        0
        0
        50px;

    display: grid;

    place-items: center;

    width: 50px;
    height: 50px;

    border-radius: 15px;

    color:
        var(--mmo-primary);

    font-size: 23px;

    background:
        rgba(
            var(--mmo-primary-rgb),
            .09
        );
}


.mmo-category-name {
    position: relative;

    z-index: 2;

    margin:
        0
        0
        4px;

    font-size: 13px;
    font-weight: 850;
}


.mmo-category-desc {
    position: relative;

    z-index: 2;

    margin: 0;

    color:
        var(--bs-gray-600);

    font-size: 11px;

    line-height: 1.45;
}


/* =========================================================
   DOMAIN
   ========================================================= */

.mmo-domain-shell {
    position: relative;

    padding: 20px;

    border:
        1px solid
        rgba(
            var(--mmo-primary-rgb),
            .10
        );

    border-radius: 22px;

    background:
        var(--bs-body-bg);

    box-shadow:
        0
        14px
        45px
        rgba(
            27,
            32,
            67,
            .05
        );
}


.mmo-domain-card {
    position: relative;

    display:
        flex
        !important;

    flex-direction:
        column
        !important;

    justify-content:
        space-between;

    min-height: 105px;

    padding:
        18px
        !important;

    overflow: hidden;

    border:
        1px solid
        rgba(
            var(--mmo-primary-rgb),
            .10
        )
        !important;

    border-radius:
        17px
        !important;

    background:
        rgba(
            var(--mmo-primary-rgb),
            .025
        )
        !important;

    text-decoration:
        none
        !important;

    box-shadow:
        none
        !important;

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease
        !important;
}


.mmo-domain-card:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(
            var(--mmo-primary-rgb),
            .34
        )
        !important;

    box-shadow:
        0
        14px
        35px
        rgba(
            var(--mmo-primary-rgb),
            .09
        )
        !important;
}


.mmo-domain-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 8px;
}


.mmo-domain-name {
    margin: 0;

    color:
        var(--bs-heading-color);

    font-size: 18px;
    font-weight: 900;
}


.mmo-domain-sale {
    padding:
        4px
        8px;

    border-radius: 999px;

    background:
        rgba(
            255,
            77,
            125,
            .10
        );

    color:
        var(--mmo-danger);

    font-size: 9px;
    font-weight: 900;
}


.mmo-domain-price {
    display: flex;

    align-items: baseline;

    flex-wrap: wrap;

    gap: 6px;

    margin-top: 10px;
}


.mmo-domain-price-current {
    color:
        var(--mmo-primary);

    font-size: 15px;
    font-weight: 900;
}


.mmo-domain-price-old {
    color:
        var(--bs-gray-500);

    text-decoration:
        line-through;

    font-size: 10px;
}


.mmo-domain-period {
    color:
        var(--bs-gray-500);

    font-size: 10px;
}


.mmo-slider-controls {
    display: flex;

    justify-content: center;

    gap: 8px;

    margin-top: 15px;
}


.mmo-slider-btn {
    display:
        grid
        !important;

    place-items:
        center
        !important;

    width:
        39px
        !important;

    height:
        39px
        !important;

    border:
        1px solid
        rgba(
            var(--mmo-primary-rgb),
            .12
        )
        !important;

    border-radius:
        12px
        !important;

    background:
        rgba(
            var(--mmo-primary-rgb),
            .05
        )
        !important;
}


/* =========================================================
   PRODUCT SECTION BASE
   ========================================================= */

.mmo-product-section {
    padding-top: 40px;
}


.mmo-product-header {
    padding-bottom: 2px;
}


.mmo-filter-wrap {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    padding: 6px;

    border:
        1px solid
        rgba(
            var(--mmo-primary-rgb),
            .10
        );

    border-radius: 14px;

    background:
        var(--bs-body-bg);
}


.mmo-filter-btn {
    min-height: 38px;

    padding:
        8px
        14px
        !important;

    border:
        0
        !important;

    border-radius:
        10px
        !important;

    background:
        transparent
        !important;

    color:
        var(--bs-gray-700)
        !important;

    font-size:
        11px
        !important;

    font-weight:
        800
        !important;

    box-shadow:
        none
        !important;

    transition:
        all
        .22s
        ease
        !important;
}


.mmo-filter-btn:hover {
    color:
        var(--mmo-primary)
        !important;

    background:
        rgba(
            var(--mmo-primary-rgb),
            .07
        )
        !important;
}


.mmo-filter-btn.active,
.mmo-filter-btn.mixitup-control-active {
    color:
        #fff
        !important;

    background:
        linear-gradient(
            135deg,
            var(--mmo-primary),
            #806aff
        )
        !important;

    box-shadow:
        0
        7px
        18px
        rgba(
            var(--mmo-primary-rgb),
            .20
        )
        !important;
}


.mmo-product-container {
    position: relative;

    min-height: 240px;
}


#product-list {
    position: relative;
}


.loading-indicator {
    display: none;

    align-items: center;
    justify-content: center;

    min-height: 80px;
}


.loading-indicator.show {
    display: flex;
}


.spinner {
    width: 34px;
    height: 34px;

    border:
        3px solid
        rgba(
            var(--mmo-primary-rgb),
            .10
        );

    border-top-color:
        var(--mmo-primary);

    border-radius: 50%;

    animation:
        mmoSpin
        .7s
        linear
        infinite;
}


@keyframes mmoSpin {

    to {
        transform:
            rotate(360deg);
    }

}


.hk-loader-main {
    width: 100%;

    padding:
        50px
        20px;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.mmo-benefits {
    margin-top: 20px;

    padding-bottom: 40px;
}


.mmo-benefit-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(
                0,
                1fr
            )
        );

    gap: 15px;
}


.mmo-benefit-card {
    position: relative;

    min-height: 190px;

    padding: 23px;

    overflow: hidden;

    border:
        1px solid
        rgba(
            var(--mmo-primary-rgb),
            .09
        );

    border-radius: 19px;

    background:
        var(--bs-body-bg);

    box-shadow:
        0
        12px
        40px
        rgba(
            27,
            32,
            67,
            .05
        );

    transition:
        transform .28s ease,
        box-shadow .28s ease,
        border-color .28s ease;
}


.mmo-benefit-card:hover {
    transform:
        translateY(-6px);

    border-color:
        rgba(
            var(--mmo-primary-rgb),
            .26
        );

    box-shadow:
        0
        20px
        46px
        rgba(
            var(--mmo-primary-rgb),
            .09
        );
}


.mmo-benefit-number {
    position: absolute;

    right: 14px;
    top: 8px;

    color:
        rgba(
            var(--mmo-primary-rgb),
            .07
        );

    font-size: 62px;
    font-weight: 950;

    line-height: 1;
}


.mmo-benefit-icon {
    display: grid;

    place-items: center;

    width: 48px;
    height: 48px;

    margin-bottom: 18px;

    border-radius: 14px;

    color:
        var(--mmo-primary);

    font-size: 21px;

    background:
        rgba(
            var(--mmo-primary-rgb),
            .08
        );
}


.mmo-benefit-card h5 {
    position: relative;

    z-index: 2;

    margin-bottom: 8px;

    font-size: 14px;
    font-weight: 850;
}


.mmo-benefit-card p {
    position: relative;

    z-index: 2;

    margin: 0;

    color:
        var(--bs-gray-600);

    font-size: 11px;

    line-height: 1.7;
}


/* =========================================================
   BOTTOM CTA
   ========================================================= */

.mmo-bottom-cta {
    position: relative;

    margin:
        5px
        0
        10px;

    padding: 38px;

    overflow: hidden;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .08
        );

    border-radius: 25px;

    color: #fff;

    background:
        radial-gradient(
            circle at 90% 0%,
            rgba(
                var(--mmo-secondary-rgb),
                .23
            ),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #11172b,
            #0a0e1a
        );
}


.mmo-bottom-cta::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    right: -80px;
    bottom: -170px;

    border:
        1px solid
        rgba(
            var(--mmo-secondary-rgb),
            .20
        );

    border-radius: 50%;

    box-shadow:
        0
        0
        0
        40px
        rgba(
            var(--mmo-secondary-rgb),
            .025
        ),
        0
        0
        0
        80px
        rgba(
            var(--mmo-primary-rgb),
            .018
        );
}


.mmo-bottom-cta-content {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;
}


.mmo-bottom-cta h3 {
    margin:
        0
        0
        8px;

    color: #fff;

    font-size: 23px;
    font-weight: 900;
}


.mmo-bottom-cta p {
    max-width: 620px;

    margin: 0;

    color:
        rgba(
            255,
            255,
            255,
            .56
        );

    font-size: 12px;

    line-height: 1.65;
}


/* =========================================================
   REVEAL
   ========================================================= */

.mmo-reveal {
    opacity: 0;

    transform:
        translateY(24px);

    transition:
        opacity .65s ease,
        transform .65s cubic-bezier(.2,.7,.2,1);
}


.mmo-reveal.is-visible {
    opacity: 1;

    transform:
        translateY(0);
}


/*
 * Fallback:
 * nếu JS reveal chưa chạy thì vẫn hiện nội dung sau một lúc
 */
.mmo-reveal:not(.is-visible) {
    will-change:
        opacity,
        transform;
}


/* =========================================================
   MODAL
   ========================================================= */

.mmo-modal .modal-content {
    overflow: hidden;

    border:
        1px solid
        rgba(
            var(--mmo-primary-rgb),
            .12
        );

    border-radius: 20px;
}


/* =========================================================
   COMPACT PRODUCT ONLY
   Chỉ tác động bên trong #mmo-products
   ========================================================= */

#mmo-products #product-list {
    align-items: stretch;
}


#mmo-products #product-list > [class*="col-"] {
    transition:
        transform
        .22s
        ease;
}


#mmo-products .posts-item {
    width: 100%;
    height: 100%;

    margin-bottom: 0 !important;

    overflow: hidden;

    border:
        1px solid
        rgba(
            var(--mmo-primary-rgb),
            .10
        );

    border-radius: 10px;

    background:
        var(--bs-body-bg);

    box-shadow:
        0
        8px
        24px
        rgba(
            27,
            32,
            67,
            .055
        );

    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}


#mmo-products .posts-item:hover {
    transform:
        translateY(-4px);

    border-color:
        rgba(
            var(--mmo-primary-rgb),
            .24
        );

    box-shadow:
        0
        14px
        30px
        rgba(
            var(--mmo-primary-rgb),
            .09
        );
}


#mmo-products .posts-item > .w-100 {
    padding:
        12px
        !important;
}


#mmo-products .compact-product-image {
    display: block;

    width: 100%;
    height: 135px;

    object-fit: cover;

    border-radius: 7px;

    background:
        var(--bs-gray-100);

    transition:
        transform
        .35s
        ease;
}


#mmo-products .posts-item:hover .compact-product-image {
    transform:
        scale(1.025);
}


#mmo-products .compact-product-title {
    display:
        -webkit-box;

    min-height: 36px;

    overflow: hidden;

    color:
        var(--bs-gray-900);

    font-size:
        12px
        !important;

    font-weight:
        700
        !important;

    line-height:
        18px
        !important;

    text-decoration:
        none;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


#mmo-products .compact-product-title:hover {
    color:
        var(--mmo-primary)
        !important;
}


#mmo-products .symbol-25px {
    width:
        25px
        !important;

    height:
        25px
        !important;

    flex:
        0
        0
        25px;
}


#mmo-products .symbol-25px img {
    width:
        25px
        !important;

    height:
        25px
        !important;

    object-fit: cover;

    border-radius: 50%;
}


#mmo-products .compact-product-time {
    font-size: 9px;

    line-height: 1.3;
}


#mmo-products .compact-product-btn {
    padding:
        5px
        9px
        !important;

    min-height: 28px;

    border-radius:
        6px
        !important;

    font-size:
        10px
        !important;

    white-space: nowrap;
}


#mmo-products .badge {
    font-size:
        11px
        !important;
}


#mmo-products .separator {
    margin-top:
        10px
        !important;

    margin-bottom:
        10px
        !important;
}


/* =========================================================
   RESPONSIVE - HOMEPAGE
   ========================================================= */

@media (max-width: 1199.98px) {

    .mmo-hero-grid {
        grid-template-columns:
            minmax(
                0,
                1fr
            )
            330px;

        gap: 25px;
    }


    .mmo-hero-inner {
        padding:
            50px
            40px;
    }


    .mmo-category-grid,
    .mmo-benefit-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(
                    0,
                    1fr
                )
            );
    }

}


@media (max-width: 991.98px) {

    .mmo-hero {
        min-height: auto;
    }


    .mmo-hero-grid {
        grid-template-columns: 1fr;
    }


    .mmo-hero-visual {
        min-height: 280px;
    }


    .mmo-terminal {
        max-width: 470px;
    }


    .mmo-bottom-cta-content {
        align-items: flex-start;

        flex-direction: column;
    }


    #mmo-products .compact-product-image {
        height: 120px;
    }

}


@media (max-width: 767.98px) {

    .mmo-section {
        padding:
            22px
            0;
    }


    .mmo-hero {
        border-radius: 22px;
    }


    .mmo-hero-inner {
        padding:
            37px
            22px;
    }


    .mmo-hero-title {
        letter-spacing: -1.4px;
    }


    .mmo-hero-desc {
        margin-top: 15px;

        font-size: 13px;
    }


    .mmo-hero-actions {
        margin-top: 23px;
    }


    .mmo-btn {
        min-height: 45px;
    }


    .mmo-hero-visual {
        min-height: 245px;
    }


    .mmo-floating-chip {
        display: none;
    }


    .mmo-category-grid,
    .mmo-benefit-grid {
        grid-template-columns:
            1fr
            1fr;

        gap: 10px;
    }


    .mmo-category-card {
        min-height: 114px;

        align-items: flex-start;

        flex-direction: column;
    }


    .mmo-category-icon {
        width: 43px;
        height: 43px;

        flex-basis: 43px;
    }


    .mmo-filter-wrap {
        width: 100%;

        overflow-x: auto;

        flex-wrap: nowrap;

        padding-bottom: 7px;

        scrollbar-width: none;
    }


    .mmo-filter-wrap::-webkit-scrollbar {
        display: none;
    }


    .mmo-filter-btn {
        white-space: nowrap;
    }


    .mmo-bottom-cta {
        padding:
            28px
            23px;
    }


    /* PRODUCT MOBILE */

    #mmo-products #product-list {
        --bs-gutter-x: 10px;
        --bs-gutter-y: 10px;
    }


    #mmo-products .dvr-item {
        margin-bottom:
            0
            !important;
    }


    #mmo-products .posts-item > .w-100 {
        padding:
            8px
            !important;
    }


    #mmo-products .compact-product-image {
        height: 100px;
    }


    #mmo-products .compact-product-title {
        min-height: 32px;

        font-size:
            10px
            !important;

        line-height:
            16px
            !important;
    }


    #mmo-products .symbol-25px {
        width:
            22px
            !important;

        height:
            22px
            !important;

        flex:
            0
            0
            22px;
    }


    #mmo-products .symbol-25px img {
        width:
            22px
            !important;

        height:
            22px
            !important;
    }


    #mmo-products .compact-product-time {
        font-size: 8px;
    }


    #mmo-products .compact-product-btn {
        min-height: 25px;

        padding:
            4px
            6px
            !important;

        font-size:
            9px
            !important;
    }


    #mmo-products .badge {
        padding:
            5px
            6px
            !important;

        font-size:
            9px
            !important;
    }

}


@media (max-width: 575.98px) {

    .mmo-category-grid,
    .mmo-benefit-grid {
        grid-template-columns: 1fr;
    }


    .mmo-category-card {
        min-height: 82px;

        flex-direction: row;

        align-items: center;
    }


    .mmo-benefit-card {
        min-height: auto;
    }


    .mmo-hero-actions .mmo-btn {
        width: 100%;
    }


    .mmo-terminal-body {
        padding: 18px;
    }


    .mmo-terminal-product {
        padding: 11px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    #mmo-home *,
    #mmo-home *::before,
    #mmo-home *::after {
        scroll-behavior:
            auto
            !important;

        animation-duration:
            .001ms
            !important;

        animation-iteration-count:
            1
            !important;

        transition-duration:
            .001ms
            !important;
    }


    .mmo-reveal {
        opacity: 1;

        transform: none;
    }

}