* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {

    --navy: #02243e;
    --navy-dark: #011827;

    --blue: #006ec5;
    --blue-2: #0798e8;
    --cyan: #39c9ff;

    --white: #f3f6f7;
    --white-soft: #e5ecef;

    --text: #061b2a;
    --muted: #6f8594;

    --border: #b8cfda;
}


html {

    scroll-behavior: smooth;

}


body {

    font-family:
        "Inter",
        Arial,
        sans-serif;

    color:
        var(--text);

    background:
        var(--white);

    overflow-x:
        hidden;

}


button,
input {

    font-family:
        inherit;

}


button {

    cursor:
        pointer;

}


a {

    color:
        inherit;

    text-decoration:
        none;

}


img {

    display:
        block;

}


/* =====================================================
   HEADER
===================================================== */

.header {

    height:
        66px;

    padding:
        0 4%;

    position:
        fixed;

    top:
        0;

    left:
        0;

    right:
        0;

    z-index:
        1000;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    background:
        rgba(1, 27, 47, .82);

    backdrop-filter:
        blur(16px);

    border-bottom:
        1px solid
        rgba(255,255,255,.1);

}


.brand {

    display:
        flex;

    align-items:
        center;

    gap:
        8px;

}


.header-logo {

    width:
        82px;

    max-height:
        38px;

    object-fit:
        contain;

}


.brand strong {

    color:
        white;

    font-size:
        13px;

    letter-spacing:
        4px;

}


.header-actions {

    display:
        flex;

    align-items:
        center;

    gap:
        8px;

}


.wallet-top {

    min-height:
        40px;

    padding:
        0 13px;

    border:
        1px solid
        rgba(255,255,255,.22);

    border-radius:
        50px;

    color:
        white;

    background:
        rgba(255,255,255,.08);

}


.wallet-top span {

    display:
        block;

    color:
        #8ebbd3;

    font-size:
        6px;

}


.wallet-top b {

    display:
        block;

    margin-top:
        1px;

    font-size:
        10px;

}


.account-top {

    min-height:
        40px;

    padding:
        0 15px;

    border:
        0;

    border-radius:
        50px;

    color:
        white;

    background:
        var(--blue-2);

    font-size:
        8px;

    font-weight:
        800;

}


/* =====================================================
   HERO
===================================================== */

.hero {

    min-height:
        100svh;

    position:
        relative;

    overflow:
        hidden;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        105px 20px
        85px;

}


/* =====================================================
   OCEAN
===================================================== */

.ocean {

    position:
        absolute;

    inset:
        0;

    overflow:
        hidden;

    background:

        radial-gradient(
            ellipse at 50% -10%,
            #78d6ff 0%,
            #249edc 20%,
            #0871b6 45%,
            #04518a 67%,
            #022f51 100%
        );

}


.ocean::after {

    content:
        "";

    position:
        absolute;

    inset:
        0;

    background:

        linear-gradient(
            90deg,
            rgba(0,28,53,.18),
            transparent 25%,
            transparent 75%,
            rgba(0,28,53,.18)
        ),

        linear-gradient(
            180deg,
            transparent 55%,
            rgba(0,17,33,.24)
        );

}


.ocean-top-light {

    position:
        absolute;

    width:
        min(850px,130vw);

    height:
        320px;

    top:
        -180px;

    left:
        50%;

    transform:
        translateX(-50%);

    border-radius:
        50%;

    background:
        rgba(224,248,255,.55);

    filter:
        blur(65px);

}


/* WATER */

.water-line {

    position:
        absolute;

    top:
        -15px;

    left:
        -10%;

    width:
        120%;

    height:
        100px;

    background:

        repeating-radial-gradient(
            ellipse at 50% 0%,
            transparent 0 13px,
            rgba(255,255,255,.32) 14px 16px,
            transparent 17px 30px
        );

    opacity:
        .25;

    transform:
        perspective(500px)
        rotateX(67deg);

}


.water-line-1 {

    animation:
        waterOne
        9s linear infinite;

}


.water-line-2 {

    opacity:
        .14;

    top:
        12px;

    animation:
        waterTwo
        12s linear infinite;

}


@keyframes waterOne {

    to {

        transform:
            perspective(500px)
            rotateX(67deg)
            translateX(80px);

    }

}


@keyframes waterTwo {

    to {

        transform:
            perspective(500px)
            rotateX(67deg)
            translateX(-90px);

    }

}


/* RAYS */

.ray {

    position:
        absolute;

    top:
        -130px;

    width:
        140px;

    height:
        760px;

    opacity:
        .07;

    background:

        linear-gradient(
            to bottom,
            rgba(255,255,255,.9),
            rgba(170,230,255,.18) 50%,
            transparent
        );

    transform-origin:
        top center;

}


.ray-1 {

    left:
        15%;

    transform:
        rotate(11deg);

    animation:
        rayOne
        11s ease-in-out
        infinite alternate;

}


.ray-2 {

    left:
        46%;

    width:
        190px;

    transform:
        rotate(-3deg);

    animation:
        rayTwo
        14s ease-in-out
        infinite alternate;

}


.ray-3 {

    right:
        14%;

    transform:
        rotate(-12deg);

    animation:
        rayThree
        12s ease-in-out
        infinite alternate;

}


@keyframes rayOne {

    to {

        transform:
            rotate(16deg)
            translateX(25px);

    }

}


@keyframes rayTwo {

    to {

        transform:
            rotate(2deg)
            translateX(-25px);

    }

}


@keyframes rayThree {

    to {

        transform:
            rotate(-17deg)
            translateX(-20px);

    }

}


/* LOGO FOCUS */

.hero-focus {

    position:
        absolute;

    left:
        50%;

    top:
        48%;

    width:
        min(680px,95vw);

    height:
        430px;

    transform:
        translate(-50%,-50%);

    border-radius:
        50%;

    background:

        radial-gradient(
            ellipse at center,
            rgba(108,216,255,.28),
            rgba(0,95,160,.08) 47%,
            transparent 73%
        );

}


/* =====================================================
   FISH
===================================================== */

.fish {

    position:
        absolute;

    width:
        65px;

    height:
        20px;

    opacity:
        .12;

    background:
        #001c33;

    border-radius:
        70% 35% 35% 70%;

}


.fish::after {

    content:
        "";

    position:
        absolute;

    right:
        -18px;

    top:
        -8px;

    border-top:
        18px solid transparent;

    border-bottom:
        18px solid transparent;

    border-left:
        22px solid #001c33;

}


.fish-1 {

    left:
        -100px;

    top:
        27%;

    animation:
        fishRight
        20s linear infinite;

}


.fish-2 {

    right:
        -120px;

    top:
        22%;

    transform:
        scale(.7)
        rotateY(180deg);

    animation:
        fishLeft
        24s linear infinite;

}


.fish-3 {

    left:
        -100px;

    bottom:
        24%;

    transform:
        scale(.45);

    animation:
        fishRightSmall
        28s linear infinite;

}


.fish-4 {

    right:
        -100px;

    bottom:
        31%;

    transform:
        scale(.35)
        rotateY(180deg);

    animation:
        fishLeftSmall
        25s linear infinite;

}


@keyframes fishRight {

    to {

        transform:
            translateX(
                calc(100vw + 250px)
            );

    }

}


@keyframes fishLeft {

    to {

        transform:
            scale(.7)
            rotateY(180deg)
            translateX(
                calc(100vw + 260px)
            );

    }

}


@keyframes fishRightSmall {

    to {

        transform:
            scale(.45)
            translateX(
                calc(100vw + 250px)
            );

    }

}


@keyframes fishLeftSmall {

    to {

        transform:
            scale(.35)
            rotateY(180deg)
            translateX(
                calc(100vw + 250px)
            );

    }

}


/* =====================================================
   BUBBLES
===================================================== */

.bubble {

    position:
        absolute;

    bottom:
        -50px;

    border:
        1px solid
        rgba(235,250,255,.4);

    border-radius:
        50%;

    background:

        radial-gradient(
            circle at 30% 25%,
            rgba(255,255,255,.23),
            transparent 50%
        );

    animation:
        bubbleUp linear infinite;

}


.b1 {

    width: 10px;
    height: 10px;

    left: 6%;

    animation-duration: 9s;

}


.b2 {

    width: 25px;
    height: 25px;

    left: 18%;

    animation-duration: 13s;
    animation-delay: 1s;

}


.b3 {

    width: 14px;
    height: 14px;

    left: 35%;

    animation-duration: 11s;
    animation-delay: 4s;

}


.b4 {

    width: 36px;
    height: 36px;

    left: 55%;

    animation-duration: 16s;
    animation-delay: 2s;

}


.b5 {

    width: 13px;
    height: 13px;

    right: 28%;

    animation-duration: 10s;

}


.b6 {

    width: 45px;
    height: 45px;

    right: 8%;

    animation-duration: 18s;
    animation-delay: 4s;

}


.b7 {

    width: 18px;
    height: 18px;

    right: 18%;

    animation-duration: 12s;
    animation-delay: 7s;

}


.b8 {

    width: 28px;
    height: 28px;

    left: 73%;

    animation-duration: 14s;
    animation-delay: 6s;

}


@keyframes bubbleUp {

    0% {

        transform:
            translateY(0)
            translateX(0);

        opacity:
            0;

    }

    10% {

        opacity:
            1;

    }

    50% {

        transform:
            translateY(-55vh)
            translateX(12px);

    }

    100% {

        transform:
            translateY(-115vh)
            translateX(-10px);

        opacity:
            0;

    }

}


/* =====================================================
   FLOOR
===================================================== */

.sea-floor {

    position:
        absolute;

    bottom:
        -15px;

    left:
        -5%;

    width:
        110%;

    background:
        #011d32;

}


.floor-back {

    height:
        135px;

    opacity:
        .45;

    clip-path:

        polygon(
            0 70%,
            10% 48%,
            20% 67%,
            31% 44%,
            43% 62%,
            55% 38%,
            68% 60%,
            80% 45%,
            91% 62%,
            100% 48%,
            100% 100%,
            0 100%
        );

}


.floor-front {

    height:
        90px;

    opacity:
        .9;

    clip-path:

        polygon(
            0 58%,
            13% 42%,
            25% 63%,
            38% 50%,
            49% 70%,
            63% 45%,
            75% 65%,
            87% 43%,
            100% 61%,
            100% 100%,
            0 100%
        );

}


/* =====================================================
   HERO CONTENT
===================================================== */

.hero-content {

    width:
        100%;

    max-width:
        790px;

    position:
        relative;

    z-index:
        10;

    text-align:
        center;

}


.hero-kicker {

    color:
        #e1f7ff;

    font-size:
        8px;

    font-weight:
        800;

    letter-spacing:
        6px;

}


.hero-brand {

    margin-top:
        28px;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

}


.hero-logo {

    width:
        min(520px,88vw);

    height:
        auto;

    object-fit:
        contain;

    filter:

        drop-shadow(
            0 8px 18px
            rgba(0,26,48,.22)
        )

        drop-shadow(
            0 0 10px
            rgba(135,220,255,.18)
        );

}


.hero-box {

    margin-top:
        -5px;

    color:
        white;

    font-size:
        clamp(
            72px,
            11vw,
            130px
        );

    line-height:
        .8;

    font-weight:
        900;

    letter-spacing:
        -7px;

    text-shadow:
        0 8px 20px
        rgba(0,25,45,.28);

}


.hero-desc {

    max-width:
        520px;

    margin:
        35px auto 0;

    color:
        #e1f0f7;

    font-size:
        13px;

    line-height:
        1.7;

}


.hero-button {

    margin-top:
        28px;

    padding:
        15px 24px;

    border:
        1px solid
        rgba(255,255,255,.65);

    border-radius:
        50px;

    color:
        white;

    background:

        linear-gradient(
            135deg,
            #057acb,
            #16b9fa
        );

    font-size:
        8px;

    font-weight:
        800;

    letter-spacing:
        2px;

    box-shadow:
        0 10px 30px
        rgba(0,79,140,.32);

    transition:
        .2s;

}


.hero-button:hover {

    transform:
        translateY(-3px);

}


.hero-button:active {

    transform:
        scale(.95);

}


.hero-button span {

    margin-left:
        10px;

}


/* SCROLL */

.scroll-down {
    position: absolute;

    left: 50%;
    bottom: 20px;

    top: auto;

    z-index: 30;

    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    margin: 0;

    color: white;

    pointer-events: none;
}


.scroll-down span {

    display:
        block;

    width:
        19px;

    height:
        29px;

    margin:
        auto;

    border:
        1px solid
        rgba(255,255,255,.7);

    border-radius:
        20px;

}


.scroll-down b {

    display:
        block;

    margin-top:
        5px;

    animation:
        arrowMove
        1.3s ease-in-out infinite;

}


@keyframes arrowMove {

    50% {

        transform:
            translateY(5px);

    }

}


/* =====================================================
   GENERAL
===================================================== */

.section-container {

    width:
        min(1160px,92%);

    margin:
        auto;

}


.section-title span {

    color:
        var(--blue);

    font-size:
        7px;

    font-weight:
        800;

    letter-spacing:
        3px;

}


.section-title h2 {

    margin-top:
        8px;

    color:
        var(--navy);

    font-size:
        clamp(36px,5vw,54px);

    letter-spacing:
        -3px;

}


.section-title p {

    margin-top:
        8px;

    color:
        var(--muted);

    font-size:
        10px;

}


/* =====================================================
   BOX SECTION
===================================================== */

.box-section {

    padding:
        75px 0
        90px;

    background:
        var(--white);

}


/* =====================================================
   PRODUCTS
===================================================== */

.products {

    margin-top:
        30px;

    display:
        grid;

    grid-template-columns:
        repeat(2,1fr);

    gap:
        22px;

}


.product-card {

    overflow:
        hidden;

    border:
        1px solid
        var(--border);

    border-radius:
        26px;

    background:
        #edf2f4;

    transition:
        transform .25s,
        box-shadow .25s;

}


.product-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        0 25px 60px
        rgba(0,71,120,.12);

}


.product-head {

    padding:
        20px 22px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    color:
        #7393a5;

    font-size:
        7px;

    letter-spacing:
        3px;

}


.product-image-area {

    height:
        330px;

    position:
        relative;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    overflow:
        hidden;

    background:

        linear-gradient(
            145deg,
            #d8e9f0,
            #b6dae9
        );

}


.vip-area {

    background:

        linear-gradient(
            145deg,
            #d6eaf2,
            #8bcfea
        );

}


.image-ring {

    position:
        absolute;

    width:
        255px;

    height:
        255px;

    border:
        1px solid
        rgba(0,110,190,.18);

    border-radius:
        50%;

}


/* GAME IMAGE */

.game-image-card {
    width: calc(100% - 48px);
    max-width: 320px;
    aspect-ratio: 16 / 10;

    /* CĂN GIỮA */
    margin: 22px auto 0;

    position: relative;
    overflow: hidden;

    border-radius: 22px;
    background: #082f4d;

    box-shadow: 0 18px 40px rgba(0, 55, 95, .15);
}


.product-card:hover
.game-image-card {

    transform:
        scale(1.035);

}


.game-image {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

}


.image-gradient {

    position:
        absolute;

    inset:
        0;

    background:

        linear-gradient(
            180deg,
            transparent 45%,
            rgba(0,19,35,.85)
        );

}


.image-badge {

    position:
        absolute;

    left:
        18px;

    right:
        18px;

    bottom:
        16px;

    display:
        flex;

    align-items:
        end;

    justify-content:
        space-between;

}


.image-badge small {

    color:
        #c9e9f8;

    font-size:
        6px;

    letter-spacing:
        2px;

}


.image-badge strong {

    color:
        white;

    font-size:
        26px;

    font-weight:
        900;

}


.vip-game-card {

    border:
        1px solid
        rgba(77,200,255,.7);

}


/* PRODUCT INFO */

.product-content {

    padding:
        24px;

}


.product-content > small {

    color:
        #7391a2;

    font-size:
        7px;

    letter-spacing:
        2px;

}


.product-content h3 {

    margin-top:
        8px;

    color:
        var(--navy);

    font-size:
        26px;

}


.product-content h3 span {

    color:
        var(--blue);

}


.product-content p {

    margin-top:
        8px;

    color:
        var(--muted);

    font-size:
        10px;

    line-height:
        1.6;

}


.product-bottom {

    margin-top:
        22px;

    padding-top:
        18px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    border-top:
        1px solid
        #bed2dc;

}


.product-bottom > strong {

    color:
        var(--navy);

    font-size:
        19px;

}


.open-box-btn {

    padding:
        12px 17px;

    border:
        0;

    border-radius:
        50px;

    color:
        white;

    background:
        var(--blue);

    font-size:
        8px;

    font-weight:
        800;

    letter-spacing:
        2px;

    transition:
        transform .15s,
        background .15s;

}


.open-box-btn span {

    margin-left:
        7px;

}


.open-box-btn:hover {

    background:
        var(--blue-2);

}


.open-box-btn:active {

    transform:
        scale(.92);

}


/* =====================================================
   ACCOUNT
===================================================== */

.account-section {

    padding:
        75px 0
        90px;

    background:

        linear-gradient(
            135deg,
            var(--navy),
            var(--blue)
        );

}


.section-title-light span {

    color:
        #6dd4ff;

}


.section-title-light h2 {

    color:
        white;

}


.account-grid {

    margin-top:
        30px;

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        22px;

}


.wallet-card,
.profile-card {

    min-height:
        230px;

    padding:
        28px;

    border:
        1px solid
        rgba(255,255,255,.23);

    border-radius:
        24px;

    background:
        rgba(255,255,255,.08);

}


.account-label {

    display:
        block;

    margin-bottom:
        25px;

    color:
        #71d2ff;

    font-size:
        8px;

    font-weight:
        800;

    letter-spacing:
        3px;

}


.wallet-card small,
.profile-card small {

    color:
        #bad8e8;

    font-size:
        7px;

    letter-spacing:
        3px;

}


.wallet-card > strong {
    display: block;
    margin-top: 12px;

    color: white;

    font-size: 40px;
    font-weight: 800;

    font-variant-numeric: tabular-nums;

    letter-spacing: -1.5px;

    text-shadow:
        0 0 25px rgba(255,255,255,.08);
}

.white-btn {

    margin-top:
        25px;

    padding:
        13px 20px;

    border:
        0;

    border-radius:
        50px;

    color:
        var(--blue);

    background:
        white;

    font-size:
        8px;

    font-weight:
        800;

}


.profile-logo {

    width:
        115px;

    height:
        65px;

    margin-bottom:
        14px;

    display:
        flex;

    align-items:
        center;

}


.profile-logo img {

    width:
        100%;

    max-height:
        65px;

    object-fit:
        contain;

}


.profile-card h3 {

    margin-top:
        8px;

    color:
        white;

    font-size:
        24px;

}


.profile-card p {

    margin-top:
        8px;

    color:
        #c4dae6;

    font-size:
        10px;

}


.outline-btn {

    margin-top:
        20px;

    padding:
        12px 18px;

    border:
        1px solid
        rgba(255,255,255,.55);

    border-radius:
        50px;

    color:
        white;

    background:
        transparent;

    font-size:
        8px;

    font-weight:
        800;

}


/* =====================================================
   HISTORY
===================================================== */

.history-section {

    padding:
        75px 0
        90px;

    background:
        var(--white);

}


.history-list {

    margin-top:
        28px;

    overflow:
        hidden;

    border:
        1px solid
        var(--border);

    border-radius:
        22px;

    background:
        #edf2f4;

}


.empty-history {

    padding:
        60px 20px;

    text-align:
        center;

}


.empty-history div {

    color:
        var(--blue);

    font-size:
        30px;

}


.empty-history strong {

    display:
        block;

    margin-top:
        13px;

    color:
        var(--navy);

    font-size:
        9px;

    letter-spacing:
        3px;

}


.empty-history p {

    margin-top:
        8px;

    color:
        var(--muted);

    font-size:
        9px;

}


.history-item {

    padding:
        18px 20px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        15px;

    border-bottom:
        1px solid
        #bfd2db;

}


.history-item:last-child {

    border-bottom:
        0;

}


.history-name {

    color:
        var(--navy);

    font-size:
        11px;

    font-weight:
        700;

}


.history-time {

    margin-top:
        5px;

    color:
        #78909f;

    font-size:
        8px;

}


.history-reward {

    margin-top:
        4px;

    color:
        var(--blue);

    font-size:
        8px;

}


.history-price {

    color:
        var(--blue);

    font-size:
        11px;

    font-weight:
        800;

    white-space:
        nowrap;

}


/* =====================================================
   FOOTER
===================================================== */

footer {

    min-height:
        110px;

    padding:
        25px 5%;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    background:
        var(--navy-dark);

    color:
        white;

}


.footer-brand {

    display:
        flex;

    align-items:
        center;

    gap:
        9px;

}


.footer-brand img {

    width:
        85px;

    max-height:
        45px;

    object-fit:
        contain;

}


.footer-brand strong {

    letter-spacing:
        3px;

}


footer > span {

    color:
        #82a8bd;

    font-size:
        8px;

}


/* =====================================================
   MODAL
===================================================== */

.modal {

    position:
        fixed;

    inset:
        0;

    z-index:
        5000;

    display:
        none;

    align-items:
        center;

    justify-content:
        center;

    padding:
        20px;

    background:
        rgba(1,18,31,.75);

    backdrop-filter:
        blur(10px);

}


.modal.active {

    display:
        flex;

}


.modal-card {

    width:
        min(410px,100%);

    padding:
        28px;

    position:
        relative;

    border:
        1px solid
        #a0c2d2;

    border-radius:
        22px;

    background:
        #edf3f5;

    animation:
        modalIn .25s ease;

}


@keyframes modalIn {

    from {

        opacity:
            0;

        transform:
            translateY(15px)
            scale(.95);

    }

}


.modal-close {

    position:
        absolute;

    top:
        9px;

    right:
        15px;

    border:
        0;

    color:
        #6f8795;

    background:
        transparent;

    font-size:
        27px;

}


.modal-label {

    color:
        var(--blue);

    font-size:
        7px;

    font-weight:
        800;

    letter-spacing:
        3px;

}


.modal-card h2 {

    margin-top:
        10px;

    color:
        var(--navy);

    font-size:
        27px;

}


.modal-card p {

    margin:
        12px 0
        16px;

    color:
        var(--muted);

    font-size:
        10px;

    line-height:
        1.6;

}


.modal-card input {

    width:
        100%;

    height:
        47px;

    margin-top:
        9px;

    padding:
        0 12px;

    border:
        1px solid
        #b0cad6;

    border-radius:
        11px;

    color:
        var(--navy);

    background:
        white;

    outline:
        none;

}


.modal-card input:focus {

    border-color:
        var(--blue);

}


.modal-action {

    width:
        100%;

    height:
        47px;

    margin-top:
        12px;

    border:
        0;

    border-radius:
        50px;

    color:
        white;

    background:
        var(--blue);

    font-size:
        8px;

    font-weight:
        800;

    letter-spacing:
        2px;

}


/* =====================================================
   OPENING SCREEN
===================================================== */

.opening-screen {

    position:
        fixed;

    inset:
        0;

    z-index:
        6000;

    display:
        none;

    align-items:
        center;

    justify-content:
        center;

    overflow:
        hidden;

    background:

        radial-gradient(
            circle at 50% 40%,
            #0869a7,
            #022b4b 58%,
            #010f1b
        );

}


.opening-screen.active {

    display:
        flex;

}


.opening-background span {

    position:
        absolute;

    border:
        1px solid
        rgba(95,208,255,.18);

    border-radius:
        50%;

}


.opening-background span:nth-child(1) {

    width:
        400px;

    height:
        400px;

    left:
        calc(50% - 200px);

    top:
        calc(50% - 200px);

}


.opening-background span:nth-child(2) {

    width:
        550px;

    height:
        550px;

    left:
        calc(50% - 275px);

    top:
        calc(50% - 275px);

}


.opening-background span:nth-child(3) {

    width:
        700px;

    height:
        700px;

    left:
        calc(50% - 350px);

    top:
        calc(50% - 350px);

}


.opening-content {

    width:
        90%;

    position:
        relative;

    z-index:
        5;

    text-align:
        center;

}


.opening-logo {

    width:
        180px;

    max-height:
        90px;

    margin:
        0 auto 24px;

    object-fit:
        contain;

    animation:
        sharkOpening
        1s ease-in-out
        infinite alternate;

}


@keyframes sharkOpening {

    from {

        transform:
            translateX(-22px);

    }

    to {

        transform:
            translateX(22px);

    }

}


.opening-card {

    width:
        180px;

    height:
        220px;

    margin:
        auto;

    overflow:
        hidden;

    border:
        2px solid
        rgba(126,220,255,.65);

    border-radius:
        24px;

    box-shadow:
        0 0 60px
        rgba(36,182,255,.28);

    animation:
        openingCardPulse
        .6s ease-in-out
        infinite alternate;

}


@keyframes openingCardPulse {

    from {

        transform:
            scale(.96);

    }

    to {

        transform:
            scale(1.04);

    }

}


.opening-card img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

}


.opening-content h3 {

    margin-top:
        30px;

    color:
        white;

    font-size:
        9px;

    letter-spacing:
        3px;

}


.progress {

    width:
        240px;

    height:
        4px;

    margin:
        18px auto 0;

    overflow:
        hidden;

    border-radius:
        20px;

    background:
        rgba(255,255,255,.13);

}


.progress span {

    display:
        block;

    width:
        0;

    height:
        100%;

    background:

        linear-gradient(
            90deg,
            var(--blue-2),
            var(--cyan)
        );

}


.opening-content > small {

    display:
        block;

    margin-top:
        8px;

    color:
        #a1cadd;

    font-size:
        8px;

}


/* =====================================================
   TOAST
===================================================== */

#toast {

    position:
        fixed;

    right:
        15px;

    bottom:
        15px;

    z-index:
        9000;

    padding:
        12px 15px;

    border-radius:
        50px;

    color:
        white;

    background:
        var(--navy);

    font-size:
        9px;

    opacity:
        0;

    transform:
        translateY(80px);

    transition:
        .25s;

}


#toast.show {

    opacity:
        1;

    transform:
        none;

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:720px) {

    .header {

        height:
            60px;

        padding:
            0 10px;

    }


    .header-logo {

        width:
            62px;

        max-height:
            29px;

    }


    .brand strong {

        font-size:
            10px;

    }


    .wallet-top {

        padding:
            0 9px;

    }


    .wallet-top span {

        display:
            none;

    }


    .account-top {

        padding:
            0 10px;

        font-size:
            7px;

    }


    .hero {

        min-height:
            100svh;

        padding:
            95px 14px
            78px;

    }


    .hero-kicker {

        font-size:
            7px;

        letter-spacing:
            4px;

    }


    .hero-brand {

        margin-top:
            23px;

    }


    .hero-logo {

        width:
            min(310px,86vw);

    }


    .hero-box {

        margin-top:
            0;

        font-size:
            70px;

        letter-spacing:
            -5px;

    }


    .hero-desc {

        max-width:
            295px;

        margin-top:
            27px;

        font-size:
            10px;

    }


    .hero-button {

        margin-top:
            22px;

        padding:
            14px 20px;

    }


    .ray {

        opacity:
            .045;

    }


    .fish {

        opacity:
            .08;

    }


    .floor-back {

        height:
            105px;

    }


    .floor-front {

        height:
            72px;

    }


    .box-section,
    .account-section,
    .history-section {

        padding:
            58px 0
            70px;

    }


    .section-container {

        width:
            calc(100% - 24px);

    }


    .section-title h2 {

        font-size:
            34px;

        letter-spacing:
            -2px;

    }


    .products,
    .account-grid {

        grid-template-columns:
            1fr;

    }


    .products {

        gap:
            18px;

    }


    .product-image-area {

        height:
            285px;

    }


    .game-image-card {

        width:
            calc(100% - 44px);

        max-width:
            320px;

        height:
            215px;

    }


    .product-content {

        padding:
            20px;

    }


    .product-content h3 {

        font-size:
            24px;

    }


    .product-bottom {

        gap:
            12px;

    }


    .wallet-card,
    .profile-card {

        padding:
            22px;

    }


    .wallet-card > strong {

        font-size:
            34px;

    }


    footer {

        flex-direction:
            column;

        gap:
            15px;

        text-align:
            center;

    }


    .opening-card {

        width:
            155px;

        height:
            195px;

    }

}
.game-image {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;

    /* QUAN TRỌNG: ưu tiên hiển thị phần đầu ảnh */
    object-position: center 20%;

    transition: transform .5s ease;
}
/* =====================================================
   HISTORY COLLAPSE
===================================================== */

.history-list {
    margin-top: 28px;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 22px;

    background: #edf2f4;

    transition:
        max-height .65s cubic-bezier(.2,.8,.2,1),
        opacity .35s ease;
}


/* mỗi giao dịch */

.history-item {
    min-height: 82px;

    padding: 16px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    border-bottom: 1px solid #bfd2db;

    transition:
        background .2s ease,
        transform .2s ease;
}


.history-item:last-child {
    border-bottom: 0;
}


.history-item:hover {
    background: rgba(0,110,197,.035);
}


.history-item:active {
    transform: scale(.992);
}


.history-name {
    color: var(--navy);

    font-size: 11px;
    font-weight: 700;
}


.history-time {
    margin-top: 4px;

    color: #78909f;

    font-size: 8px;
}


.history-reward {
    margin-top: 4px;

    color: var(--blue);

    font-size: 8px;
}


.history-price {
    color: var(--blue);

    font-size: 11px;
    font-weight: 800;

    white-space: nowrap;
}


/* =====================================================
   NÚT XEM THÊM
===================================================== */

.history-toggle {
    width: fit-content;

    min-width: 145px;

    height: 43px;

    margin: 20px auto 0;

    padding: 0 18px;

    display: none;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border: 1px solid #aac9d8;

    border-radius: 50px;

    background: white;

    color: var(--blue);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 2px;

    transition:
        background .25s ease,
        color .25s ease,
        transform .2s ease;
}


.history-toggle.visible {
    display: flex;
}


.history-toggle:hover {
    background: var(--blue);

    color: white;
}


.history-toggle:active {
    transform: scale(.95);
}


.history-toggle b {
    font-size: 13px;

    transition: transform .45s ease;
}


.history-toggle.expanded b {
    transform: rotate(180deg);
}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:720px) {

    .history-item {
        min-height: 74px;

        padding: 14px 15px;
    }


    .history-name {
        font-size: 10px;
    }


    .history-time,
    .history-reward {
        font-size: 7px;
    }


    .history-price {
        font-size: 10px;
    }


    .history-toggle {
        min-width: 135px;

        height: 41px;
    }

}
/* =========================================
   ẢNH KẾT QUẢ MỞ TÚI
========================================= */

.reward-result-image {
    width: 100%;
    height: 180px;

    display: block;

    object-fit: cover;

    /* QUAN TRỌNG:
       kéo ảnh lên để ưu tiên phần đầu nhân vật */
    object-position: center 10%;

    border-radius: 14px;

    margin: 14px 0 12px;

    border: 1px solid #b6d1df;

    background: #dbeaf1;
}
/* =====================================================
   PROFILE CARD INTERACTION
===================================================== */

.profile-card {

    position: relative;

    overflow: hidden;

    isolation: isolate;
}


/* nội dung luôn nổi trên logo chìm */

.profile-card > *:not(.profile-moving-logo) {

    position: relative;

    z-index: 3;
}


/* logo chìm */

.profile-moving-logo {

    position: absolute;

    top: 50%;

    right: -220px;

    width: 220px;

    height: auto;

    transform:
        translateY(-50%);

    opacity: 0;

    pointer-events: none;

    user-select: none;

    z-index: 1;

    filter:
        brightness(0)
        invert(1);

}


/* khi kích hoạt */

.profile-card.logo-active
.profile-moving-logo {

    animation:
        profileSharkMove
        1.5s
        cubic-bezier(.22,.61,.36,1)
        forwards;

}


/* bơi từ phải qua trái */

@keyframes profileSharkMove {

    0% {

        right: -220px;

        opacity: 0;

        transform:
            translateY(-50%)
            scale(.85);

    }


    15% {

        opacity: .08;

    }


    50% {

        opacity: .12;

        transform:
            translateY(-53%)
            scale(1);

    }


    85% {

        opacity: .07;

    }


    100% {

        right: calc(100% + 220px);

        opacity: 0;

        transform:
            translateY(-48%)
            scale(.9);

    }

}


/* card phản hồi khi chạm */

.profile-card.logo-active {

    box-shadow:
        inset 0 0 0 1px
        rgba(255,255,255,.08),

        0 18px 45px
        rgba(0,45,85,.16);

}


/* nút */

.outline-btn {

    transition:
        transform .18s ease,
        background .18s ease;
}


.outline-btn:active {

    transform:
        scale(.94);

}
.game-video {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    /* ưu tiên phần trên video */
    object-position: center 15%;

    border-radius: inherit;
}


/* Khi chạm card */
.game-image-card:active .game-video {
    transform: scale(1.04);
}


.game-video {
    transition: transform .35s ease;
}
/* =========================================
   FIX CARD 39K + VIP
========================================= */

.products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;

    align-items: stretch;
}


.product-card {
    width: 100%;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 26px;

    background: #edf2f4;
}


/* phần ảnh */

.product-image-area {
    width: 100%;

    min-height: 310px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}


/* phần nội dung luôn nằm dưới ảnh */

.product-content {
    width: 100%;

    padding: 24px;

    display: flex;
    flex-direction: column;

    flex: 1;
}


/* đẩy giá + nút xuống đáy card */

.product-bottom {
    width: 100%;

    margin-top: auto;
    padding-top: 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    border-top: 1px solid #bed2dc;
}


/* tránh chữ dài phá layout */

.product-content h3 {
    margin-top: 8px;

    color: var(--navy);

    font-size: 26px;

    line-height: 1.15;

    word-break: normal;
}


.product-content h3 span {
    color: var(--blue);
}


/* MOBILE */

@media(max-width:720px) {

    .products {
        grid-template-columns: 1fr;
    }

    .product-content {
        padding: 20px;
    }

}
/* Ẩn hệ thống đăng nhập cũ */
#accountModal,
.auth-modal,
.login-modal {
    display: none !important;
}
/* =========================================
   SHARK BOX - DEPOSIT
========================================= */

.deposit-amounts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 18px 0;
}

.deposit-amount-btn {
    height: 48px;

    border: 1px solid #afd0df;
    border-radius: 12px;

    background: white;
    color: #073554;

    font-weight: 800;
    cursor: pointer;

    transition: .2s ease;
}

.deposit-amount-btn:hover,
.deposit-amount-btn.active {
    background: #087fd0;
    color: white;
    border-color: #087fd0;
}

.deposit-custom {
    width: 100%;
    height: 48px;

    padding: 0 15px;

    border: 1px solid #afd0df;
    border-radius: 12px;

    outline: none;
    margin-bottom: 14px;
}

.deposit-qr {
    width: 350px;
    height: auto;
    display: block;
    margin: 25px auto 30px;
    border-radius: 12px;
}


.deposit-code-box {
    padding: 15px;

    margin: 14px 0;

    border: 1px dashed #6ab2db;
    border-radius: 14px;

    background: #f4fbff;

    text-align: center;
}

.deposit-code-box small {
    display: block;

    margin-bottom: 6px;

    color: #71899a;

    font-size: 10px;
    letter-spacing: 2px;
}

.deposit-code-box strong {
    color: #0076c8;

    font-size: 24px;
    letter-spacing: 2px;
}

.deposit-status {
    margin-top: 14px;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 8px;

    color: #59798d;

    font-size: 11px;
    font-weight: 700;
}

.deposit-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #149ce3;

    animation: depositPulse 1s infinite;
}

@keyframes depositPulse {

    50% {
        opacity: .25;
        transform: scale(1.5);
    }

}

.deposit-success {
    text-align: center;
    padding: 10px;
}

.deposit-success-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e5f7ee;
    color: #159447;

    font-size: 30px;
    font-weight: 900;

    animation: successPop .4s ease;
}

@keyframes successPop {

    from {
        transform: scale(.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }

}
/* =========================================
   OPENING ANIMATION
========================================= */

.opening-animation {
    position: relative;
    min-height: 360px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    text-align: center;
}

.opening-box {
    position: relative;
    z-index: 4;

    width: 140px;
    height: 140px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #bfeaff
        );

    box-shadow:
        0 20px 50px
        rgba(0, 130, 220, .28);

    animation:
        openingBoxFloat
        1.2s ease-in-out
        infinite alternate;
}

.opening-logo {
    width: 95px;
    height: auto;

    animation:
        openingLogoPulse
        .8s ease-in-out
        infinite alternate;
}

.opening-glow {
    position: absolute;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0, 174, 255, .35),
            transparent 70%
        );

    animation:
        openingGlow
        1.5s ease-in-out
        infinite alternate;
}

.opening-ring {
    position: absolute;

    border: 1px solid
        rgba(0, 145, 230, .3);

    border-radius: 50%;

    animation:
        openingRing
        2s linear
        infinite;
}

.ring-1 {
    width: 190px;
    height: 190px;
}

.ring-2 {
    width: 240px;
    height: 240px;

    animation-delay: -.8s;
}

.opening-title {
    position: relative;
    z-index: 4;

    margin-top: 35px;
}

.opening-subtitle {
    position: relative;
    z-index: 4;

    margin-top: 5px;
}

.opening-progress {
    position: relative;
    z-index: 4;

    width: 80%;
    height: 6px;

    margin-top: 22px;

    border-radius: 99px;

    background:
        rgba(0, 110, 180, .12);

    overflow: hidden;
}

.opening-progress span {
    display: block;

    width: 0%;
    height: 100%;

    border-radius: 99px;

    background: #078ad8;

    transition:
        width 2s ease;
}

@keyframes openingBoxFloat {

    from {
        transform:
            translateY(4px)
            rotate(-2deg)
            scale(.97);
    }

    to {
        transform:
            translateY(-8px)
            rotate(2deg)
            scale(1.03);
    }
}

@keyframes openingLogoPulse {

    from {
        transform: scale(.92);
    }

    to {
        transform: scale(1.08);
    }
}

@keyframes openingGlow {

    from {
        transform: scale(.8);
        opacity: .5;
    }

    to {
        transform: scale(1.15);
        opacity: 1;
    }
}

@keyframes openingRing {

    from {
        transform:
            scale(.75);
        opacity: .8;
    }

    to {
        transform:
            scale(1.3);
        opacity: 0;
    }
}

.opening-reward-image {
    width: 125px;
    height: 125px;
    object-fit: cover;
    border-radius: 22px;
    
}

.reward-result-image {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 16 / 9;
    object-fit: cover;

    display: block;
    margin: 18px auto;

    border-radius: 18px;
}

.reward-account-box {
    margin-top: 12px;
    padding: 15px 16px;

    border: 1px dashed #69b6df;
    border-radius: 14px;

    background: #f5fbff;
}

.reward-account-box small {
    display: block;

    margin-bottom: 7px;

    color: #7792a3;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.reward-account-box strong {
    display: block;

    color: #087bc7;
    font-size: 18px;
    word-break: break-all;
}

.reward-close-btn {
    margin-top: 10px;
}
/* ẨN TOÀN BỘ PROFILE - KHÔNG XÓA HTML */
.profile-card {
    display: none !important;
}

/* =====================================================
   OFFLINE OVERLAY
===================================================== */

.offline-overlay {
    position: fixed;
    inset: 0;

    z-index: 999999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(0, 24, 42, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


/* KHI MẤT MẠNG */

.offline-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}


/* BOX */

.offline-box {
    width: 100%;
    max-width: 340px;

    background: #f4fbff;

    border-radius: 24px;

    padding: 34px 26px 30px;

    text-align: center;

    box-shadow:
        0 20px 60px
        rgba(0, 0, 0, 0.25);

    animation:
        offlinePop 0.35s ease;
}


@keyframes offlinePop {

    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }

}


/* ICON */

.offline-icon {
    width: 64px;
    height: 64px;

    margin:
        0 auto
        20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #0784d5;

    color: white;

    font-size: 32px;
    font-weight: 900;

    box-shadow:
        0 0 0 10px
        rgba(7, 132, 213, 0.10);
}


/* LABEL */

.offline-label {
    margin-bottom: 8px;

    color: #0078c9;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 4px;
}


/* TITLE */

.offline-box h2 {
    margin: 0 0 12px;

    color: #002b49;

    font-size: 27px;
    font-weight: 900;
}


/* TEXT */

.offline-box p {
    margin: 0;

    color: #688397;

    font-size: 13px;
    line-height: 1.7;
}


/* LOADING */

.offline-loading {
    width: 100%;
    height: 5px;

    margin:
        25px 0
        13px;

    overflow: hidden;

    border-radius: 100px;

    background: #d5e8f2;
}


.offline-loading span {
    display: block;

    width: 40%;
    height: 100%;

    border-radius: inherit;

    background: #0784d5;

    animation:
        offlineLoading
        1.2s
        infinite ease-in-out;
}


@keyframes offlineLoading {

    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(350%);
    }

}


.offline-box small {
    color: #7892a3;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}
/* =====================================================
   SUPPORT - LIGHT VERSION
===================================================== */

.support-card {
    margin: 22px 12px 35px;

    padding: 20px;

    border: 1px solid #b7d6e6;
    border-radius: 22px;

    background: #eef8fd;

    box-shadow:
        0 8px 25px
        rgba(0, 72, 120, 0.06);
}


/* HEADER */

.support-head {
    margin-bottom: 16px;
}

.support-head span {
    display: block;

    margin-bottom: 7px;

    color: #0787d8;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 3px;
}

.support-head h3 {
    margin: 0;

    color: #00385f;

    font-size: 18px;
    font-weight: 900;
}


/* ITEM */

.support-item {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 10px;
    padding: 14px;

    border: 1px solid #c7dfea;
    border-radius: 15px;

    background: #ffffff;

    color: #00385f;

    text-decoration: none;

    cursor: pointer;

    transition: 0.2s ease;

    font-family: inherit;
    text-align: left;
}


.support-item:hover {
    border-color: #0787d8;

    transform: translateY(-1px);

    box-shadow:
        0 6px 18px
        rgba(0, 120, 200, 0.08);
}


/* ICON */

.support-icon {
    flex: 0 0 38px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #0787d8;

    color: #ffffff;

    font-size: 15px;
    font-weight: 900;
}


/* TEXT */

.support-content {
    flex: 1;
    min-width: 0;
}

.support-content strong {
    display: block;

    margin-bottom: 4px;

    color: #00385f;

    font-size: 12px;
    font-weight: 800;
}

.support-content small {
    display: block;

    color: #6d94aa;

    font-size: 9px;

    line-height: 1.5;
}


/* ARROW */

.support-arrow {
    color: #0787d8;

    font-size: 18px;
    font-weight: 900;
}
/* =====================================================
   SHARK BOX
   MOBILE TYPOGRAPHY OPTIMIZED
   DÁN Ở CUỐI CÙNG STYLE.CSS
===================================================== */

@media (max-width: 720px) {

    /* =================================================
       CƠ BẢN
    ================================================= */

    body {
        font-size: 14px;
        line-height: 1.5;
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }

    button,
    a,
    input {
        -webkit-tap-highlight-color: transparent;
    }


    /* =================================================
       HEADER
    ================================================= */

    .brand strong {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .wallet-top b {
        font-size: 11px;
        font-weight: 800;
    }

    .account-top {
        min-height: 42px;
        font-size: 9px;
        font-weight: 800;
    }


    /* =================================================
       HERO
    ================================================= */

    .hero-kicker {
        font-size: 9px;
        line-height: 1.5;
        letter-spacing: 4px;
    }

    .hero-desc {
        max-width: 310px;

        font-size: 12px;
        line-height: 1.7;
    }

    .hero-button {
        min-height: 46px;

        padding:
            14px 22px;

        font-size: 10px;
        font-weight: 800;

        letter-spacing: 2px;
    }


    /* =================================================
       TIÊU ĐỀ CÁC SECTION
    ================================================= */

    .section-title span {
        font-size: 9px;
        line-height: 1.4;

        letter-spacing: 3px;
    }

    .section-title h2 {
        font-size: 32px;
        line-height: 1.05;

        letter-spacing: -1.8px;
    }

    .section-title p {
        font-size: 12px;
        line-height: 1.6;
    }


    /* =================================================
       CARD TÚI MÙ
    ================================================= */

    .product-head {
        font-size: 9px;
        font-weight: 700;

        letter-spacing: 2.5px;
    }

    .image-badge small {
        font-size: 8px;
        line-height: 1.4;

        letter-spacing: 2px;
    }

    .image-badge strong {
        font-size: 25px;
        line-height: 1;
    }

    .product-content > small {
        font-size: 9px;
        line-height: 1.4;

        letter-spacing: 2px;
    }

    .product-content h3 {
        font-size: 24px;
        line-height: 1.15;
    }

    .product-content p {
        font-size: 12px;
        line-height: 1.65;
    }

    .product-bottom > strong {
        font-size: 20px;
    }

    .open-box-btn {
        min-height: 44px;

        padding:
            12px 18px;

        font-size: 9px;
        font-weight: 900;

        letter-spacing: 2px;
    }


    /* =================================================
       VÍ
    ================================================= */

    .account-label {
        font-size: 9px;
        line-height: 1.4;

        letter-spacing: 3px;
    }

    .wallet-card small {
        font-size: 9px;
        line-height: 1.4;

        letter-spacing: 3px;
    }

    .wallet-card > strong {
        font-size: 36px;
        line-height: 1.05;

        letter-spacing: -1.3px;
    }

    .white-btn {
        min-height: 44px;

        font-size: 9px;
        font-weight: 900;

        letter-spacing: 1.8px;
    }


    /* =================================================
       HỖ TRỢ & HƯỚNG DẪN
    ================================================= */

    .support-head span {
        font-size: 9px;
        line-height: 1.3;

        letter-spacing: 3px;
    }

    .support-head h3 {
        font-size: 18px;
        line-height: 1.15;
    }

    .support-item {
        min-height: 62px;

        padding:
            13px 12px;

        gap: 11px;
    }

    .support-content strong {
        font-size: 12px;
        line-height: 1.35;
    }

    .support-content small {
        margin-top: 2px;

        font-size: 10px;
        line-height: 1.45;
    }

    .support-arrow {
        font-size: 19px;
    }


    /* =================================================
       LỊCH SỬ MỞ TÚI
    ================================================= */

    .history-list {
        margin-top: 22px;
    }

    .history-item {
        min-height: 88px;

        padding:
            15px 14px;

        gap: 10px;
    }

    .history-name {
        font-size: 12px;
        line-height: 1.35;

        font-weight: 800;
    }

    .history-time {
        margin-top: 3px;

        font-size: 9px;
        line-height: 1.4;
    }

    .history-reward {
        margin-top: 5px;

        font-size: 9.5px;
        line-height: 1.5;

        font-weight: 600;
    }

    .history-reward div + div {
        margin-top: 1px;
    }

    .history-price {
        font-size: 11px;
        line-height: 1.3;

        font-weight: 900;
    }

    .history-toggle {
        min-width: 138px;
        min-height: 43px;

        font-size: 9px;
        font-weight: 900;

        letter-spacing: 2px;
    }


    /* =================================================
       POPUP CHUNG
    ================================================= */

    .modal-card {
        width:
            min(
                360px,
                calc(100vw - 28px)
            );

        padding:
            26px 22px;
    }

    .modal-label {
        font-size: 9px;
        line-height: 1.4;

        letter-spacing: 3px;
    }

    .modal-card h2 {
        font-size: 25px;
        line-height: 1.12;

        letter-spacing: -0.8px;
    }

    .modal-card p {
        font-size: 12px;
        line-height: 1.65;
    }

    .modal-action {
        min-height: 47px;

        font-size: 9px;
        font-weight: 900;

        letter-spacing: 2px;
    }


    /* =================================================
       TK + MK SAU KHI MỞ TÚI
    ================================================= */

    .reward-account-box {
        padding:
            14px 15px;
    }

    .reward-account-box small {
        font-size: 9px;
        line-height: 1.4;

        letter-spacing: 2px;
    }

    .reward-account-box strong {
        font-size: 17px;
        line-height: 1.4;

        font-weight: 800;

        word-break: break-word;
    }


    /* =================================================
       POPUP MẤT MẠNG
    ================================================= */

    .offline-box {
        max-width: 330px;

        padding:
            30px 23px 27px;
    }

    .offline-label {
        font-size: 9px;
    }

    .offline-box h2 {
        font-size: 25px;
        line-height: 1.15;
    }

    .offline-box p {
        font-size: 12px;
        line-height: 1.65;
    }

    .offline-box small {
        font-size: 9px;
        line-height: 1.4;
    }


    /* =================================================
       TOAST
    ================================================= */

    #toast {
        max-width:
            calc(100vw - 30px);

        padding:
            12px 16px;

        font-size: 11px;
        line-height: 1.4;

        text-align: center;
    }


    /* =================================================
       FOOTER
    ================================================= */

    .footer-brand strong {
        font-size: 12px;
    }

    footer > span {
        font-size: 9px;
        line-height: 1.4;
    }

}


/* =====================================================
   ĐIỆN THOẠI RẤT NHỎ
   iPhone SE / màn 320-380px
===================================================== */

@media (max-width: 380px) {

    .section-title h2 {
        font-size: 29px;
    }

    .product-content h3 {
        font-size: 22px;
    }

    .wallet-card > strong {
        font-size: 33px;
    }

    .support-content strong {
        font-size: 11.5px;
    }

    .support-content small {
        font-size: 9.5px;
    }

    .history-name {
        font-size: 11px;
    }

    .history-price {
        font-size: 10.5px;
    }

    .modal-card h2 {
        font-size: 23px;
    }

}
/* =====================================================
   SHARK BOX
   GLOBAL TYPOGRAPHY + RESPONSIVE OPTIMIZATION
   DÁN Ở CUỐI CÙNG STYLE.CSS
===================================================== */


/* =====================================================
   1. DESKTOP / LAPTOP
   > 1024px
===================================================== */

@media (min-width: 1025px) {

    body {
        font-size: 15px;
        line-height: 1.55;
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
    }

    /* HEADER */

    .brand strong {
        font-size: 13px;
        letter-spacing: 4px;
    }

    .wallet-top span {
        font-size: 8px;
    }

    .wallet-top b {
        font-size: 12px;
    }

    .account-top {
        font-size: 10px;
    }


    /* HERO */

    .hero-kicker {
        font-size: 10px;
        letter-spacing: 6px;
    }

    .hero-desc {
        font-size: 14px;
        line-height: 1.75;
    }

    .hero-button {
        min-height: 48px;
        font-size: 10px;
    }


    /* SECTION TITLE */

    .section-title span {
        font-size: 9px;
    }

    .section-title h2 {
        font-size: clamp(40px, 4vw, 56px);
        line-height: 1.05;
    }

    .section-title p {
        font-size: 12px;
        line-height: 1.6;
    }


    /* PRODUCT */

    .product-head {
        font-size: 9px;
    }

    .image-badge small {
        font-size: 8px;
    }

    .product-content > small {
        font-size: 9px;
    }

    .product-content h3 {
        font-size: 28px;
        line-height: 1.15;
    }

    .product-content p {
        font-size: 12px;
        line-height: 1.65;
    }

    .product-bottom > strong {
        font-size: 21px;
    }

    .open-box-btn {
        min-height: 44px;
        font-size: 9px;
    }


    /* WALLET */

    .account-label {
        font-size: 9px;
    }

    .wallet-card small,
    .profile-card small {
        font-size: 9px;
    }

    .wallet-card > strong {
        font-size: 42px;
    }

    .white-btn,
    .outline-btn {
        min-height: 44px;
        font-size: 9px;
    }


    /* SUPPORT */

    .support-head span {
        font-size: 9px;
    }

    .support-head h3 {
        font-size: 20px;
    }

    .support-content strong {
        font-size: 13px;
    }

    .support-content small {
        font-size: 10px;
    }


    /* HISTORY */

    .history-name {
        font-size: 12px;
    }

    .history-time {
        font-size: 9px;
    }

    .history-reward {
        font-size: 9.5px;
        line-height: 1.5;
    }

    .history-price {
        font-size: 12px;
    }

    .history-toggle {
        font-size: 9px;
    }


    /* MODAL */

    .modal-label {
        font-size: 9px;
    }

    .modal-card h2 {
        font-size: 29px;
        line-height: 1.1;
    }

    .modal-card p {
        font-size: 12px;
    }

    .modal-action {
        font-size: 9px;
    }

    .reward-account-box small {
        font-size: 9px;
    }

    .reward-account-box strong {
        font-size: 18px;
    }


    /* OFFLINE */

    .offline-box h2 {
        font-size: 28px;
    }

    .offline-box p {
        font-size: 13px;
    }

    .offline-box small {
        font-size: 9px;
    }


    /* TOAST */

    #toast {
        font-size: 11px;
    }

}


/* =====================================================
   2. TABLET
   721px - 1024px
===================================================== */

@media (min-width: 721px) and (max-width: 1024px) {

    body {
        font-size: 14px;
        line-height: 1.5;
    }

    .section-title h2 {
        font-size: 40px;
    }

    .hero-desc {
        font-size: 13px;
    }

    .product-content h3 {
        font-size: 26px;
    }

    .product-content p {
        font-size: 12px;
    }

    .wallet-card > strong {
        font-size: 38px;
    }

    .support-content strong {
        font-size: 12px;
    }

    .support-content small {
        font-size: 10px;
    }

    .history-name {
        font-size: 11px;
    }

    .history-time,
    .history-reward {
        font-size: 9px;
    }

    .modal-card h2 {
        font-size: 27px;
    }

    .modal-card p {
        font-size: 12px;
    }

}


/* =====================================================
   3. MOBILE
   <= 720px
===================================================== */

@media (max-width: 720px) {

    body {
        font-size: 14px;
        line-height: 1.5;
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }

    button,
    a,
    input {
        -webkit-tap-highlight-color: transparent;
    }


    /* HEADER */

    .brand strong {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .wallet-top b {
        font-size: 11px;
    }

    .account-top {
        min-height: 42px;
        font-size: 9px;
    }


    /* HERO */

    .hero-kicker {
        font-size: 9px;
        letter-spacing: 4px;
    }

    .hero-desc {
        max-width: 310px;
        font-size: 12px;
        line-height: 1.7;
    }

    .hero-button {
        min-height: 46px;
        font-size: 10px;
    }


    /* SECTION TITLE */

    .section-title span {
        font-size: 9px;
    }

    .section-title h2 {
        font-size: 32px;
        line-height: 1.05;
    }

    .section-title p {
        font-size: 12px;
    }


    /* PRODUCT */

    .product-head {
        font-size: 9px;
    }

    .image-badge small {
        font-size: 8px;
    }

    .product-content > small {
        font-size: 9px;
    }

    .product-content h3 {
        font-size: 24px;
    }

    .product-content p {
        font-size: 12px;
    }

    .product-bottom > strong {
        font-size: 20px;
    }

    .open-box-btn {
        min-height: 44px;
        font-size: 9px;
    }


    /* WALLET */

    .account-label {
        font-size: 9px;
    }

    .wallet-card small {
        font-size: 9px;
    }

    .wallet-card > strong {
        font-size: 36px;
    }

    .white-btn {
        min-height: 44px;
        font-size: 9px;
    }


    /* SUPPORT */

    .support-head span {
        font-size: 9px;
    }

    .support-head h3 {
        font-size: 18px;
    }

    .support-item {
        min-height: 62px;
        padding: 13px 12px;
    }

    .support-content strong {
        font-size: 12px;
        line-height: 1.35;
    }

    .support-content small {
        font-size: 10px;
        line-height: 1.45;
    }

    .support-arrow {
        font-size: 19px;
    }


    /* HISTORY */

    .history-item {
        min-height: 88px;
        padding: 15px 14px;
    }

    .history-name {
        font-size: 12px;
    }

    .history-time {
        font-size: 9px;
    }

    .history-reward {
        font-size: 9.5px;
        line-height: 1.5;
    }

    .history-price {
        font-size: 11px;
    }

    .history-toggle {
        min-height: 43px;
        font-size: 9px;
    }


    /* MODAL */

    .modal-card {
        width: min(
            360px,
            calc(100vw - 28px)
        );

        padding: 26px 22px;
    }

    .modal-label {
        font-size: 9px;
    }

    .modal-card h2 {
        font-size: 25px;
        line-height: 1.12;
    }

    .modal-card p {
        font-size: 12px;
        line-height: 1.65;
    }

    .modal-action {
        min-height: 47px;
        font-size: 9px;
    }

    .reward-account-box small {
        font-size: 9px;
    }

    .reward-account-box strong {
        font-size: 17px;
    }


    /* OFFLINE */

    .offline-box h2 {
        font-size: 25px;
    }

    .offline-box p {
        font-size: 12px;
    }

    .offline-box small {
        font-size: 9px;
    }


    /* TOAST */

    #toast {
        font-size: 11px;
    }

}


/* =====================================================
   4. ĐIỆN THOẠI NHỎ
   <= 380px
===================================================== */

@media (max-width: 380px) {

    .section-title h2 {
        font-size: 29px;
    }

    .product-content h3 {
        font-size: 22px;
    }

    .wallet-card > strong {
        font-size: 33px;
    }

    .support-content strong {
        font-size: 11.5px;
    }

    .support-content small {
        font-size: 9.5px;
    }

    .history-name {
        font-size: 11px;
    }

    .history-price {
        font-size: 10.5px;
    }

    .modal-card h2 {
        font-size: 23px;
    }

}


/* =====================================================
   5. MÀN HÌNH PC RỘNG
   >= 1440px
===================================================== */

@media (min-width: 1440px) {

    .section-container {
        max-width: 1180px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .section-title h2 {
        font-size: 56px;
    }

    .product-content h3 {
        font-size: 30px;
    }

    .product-content p {
        font-size: 13px;
    }

    .wallet-card > strong {
        font-size: 44px;
    }

    .history-name {
        font-size: 13px;
    }

    .history-time,
    .history-reward {
        font-size: 10px;
    }

}
/* =====================================================
   ICON LIÊN QUÂN CẠNH CHỮ BOX
===================================================== */

.hero-box-wrap {
    position: relative;

    width: fit-content;

    margin: -5px auto 0;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* ICON */

.hero-lq-float {
    position: absolute;

    /* đặt ngay sát cạnh phải BOX */
    left: calc(100% + 10px);

    /* căn giữa theo chiều cao BOX */
    top: 50%;

    width: 105px;
    height: 105px;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 5;

    transform:
        translateY(-50%);

    animation:
        lqFloat
        3s
        ease-in-out
        infinite;

    filter:
        drop-shadow(
            0 12px 22px
            rgba(0, 30, 60, .30)
        );
}


/* ẢNH */

.hero-lq-float img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 22px;

    border:
        2px solid
        rgba(255,255,255,.75);

    box-shadow:
        0 0 22px
        rgba(60,200,255,.30);
}


/* LƠ LỬNG */

@keyframes lqFloat {

    0%,
    100% {

        transform:
            translateY(-50%)
            translateY(0)
            rotate(3deg);

    }

    50% {

        transform:
            translateY(-50%)
            translateY(-10px)
            rotate(-2deg);

    }

}


/* GLOW */

.hero-lq-float::before {
    content: "";

    position: absolute;

    width: 125px;
    height: 125px;

    border-radius: 50%;

    background:
        rgba(45,190,255,.18);

    filter:
        blur(22px);

    z-index: -1;

    animation:
        lqGlow
        2.7s
        ease-in-out
        infinite;
}


@keyframes lqGlow {

    0%,
    100% {
        transform: scale(.9);
        opacity: .45;
    }

    50% {
        transform: scale(1.08);
        opacity: .85;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1024px) {

    .hero-lq-float {
        width: 90px;
        height: 90px;

        left:
            calc(100% + 8px);
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 720px) {

    .hero-lq-float {
        width: 70px;
        height: 70px;

        left:
            calc(100% + 6px);
    }

}


/* =====================================================
   MOBILE NHỎ
===================================================== */

@media (max-width: 380px) {

    .hero-lq-float {
        width: 60px;
        height: 60px;

        left:
            calc(100% + 4px);
    }

}
/* =====================================================
   HERO RESPONSIVE FIX - ALL DEVICES
   DÁN Ở CUỐI STYLE.CSS
===================================================== */


/* =====================================================
   1. CỤM BOX + ICON LIÊN QUÂN
===================================================== */

.hero-box-wrap {
    position: relative;

    width: fit-content;

    margin:
        -5px auto 0;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: none;
}


/* ICON LIÊN QUÂN */

.hero-lq-float {
    position: absolute;

    top: 50%;

    left:
        calc(100% + 12px);

    width: clamp(
        72px,
        8vw,
        110px
    );

    aspect-ratio: 1 / 1;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 5;

    animation:
        lqFloatResponsive
        3s
        ease-in-out
        infinite;

    filter:
        drop-shadow(
            0 12px 22px
            rgba(0,30,60,.28)
        );
}


.hero-lq-float img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 20%;

    border:
        1px solid
        rgba(255,255,255,.65);

    box-shadow:
        0 0 20px
        rgba(60,200,255,.22);
}


/* FLOAT */

@keyframes lqFloatResponsive {

    0%,
    100% {

        transform:
            translateY(-50%)
            translateY(0)
            rotate(2deg);

    }

    50% {

        transform:
            translateY(-50%)
            translateY(-9px)
            rotate(-2deg);

    }

}


/* =====================================================
   2. HERO CONTENT
===================================================== */

.hero-content {
    width: 100%;

    max-width: 900px;

    margin: auto;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}


/* SHARK LOGO */

.hero-logo {
    width:
        min(
            520px,
            82vw
        );

    margin-left: auto;
    margin-right: auto;
}


/* BOX */

.hero-box {
    line-height: .85;

    text-align: center;
}


/* MÔ TẢ */

.hero-desc {
    width: min(
        560px,
        88vw
    );

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}


/* NÚT */

.hero-button {
    position: relative;

    z-index: 10;
}


/* =====================================================
   3. FIX MŨI TÊN CUỘN XUỐNG
===================================================== */

.scroll-down {
    position: absolute;

    left: 50%;

    bottom: 22px;

    top: auto;

    z-index: 30;

    transform:
        translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    margin: 0;

    pointer-events: none;
}


.scroll-down span {
    display: block;

    width: 19px;
    height: 29px;

    margin: 0 auto;

    border:
        1px solid
        rgba(255,255,255,.7);

    border-radius: 20px;
}


.scroll-down b {
    display: block;

    margin-top: 6px;

    color: white;

    animation:
        arrowMove
        1.3s
        ease-in-out
        infinite;
}


/* =====================================================
   4. DESKTOP LỚN
===================================================== */

@media (min-width: 1440px) {

    .hero-box-wrap {
        transform:
            translateX(-48px);
    }

    .hero-lq-float {
        left:
            calc(100% + 14px);

        width: 110px;
    }

    .scroll-down {
        bottom: 24px;
    }

}


/* =====================================================
   5. DESKTOP / LAPTOP
===================================================== */

@media (min-width: 1025px) and (max-width: 1439px) {

    .hero-box-wrap {
        transform:
            translateX(-42px);
    }

    .hero-lq-float {
        left:
            calc(100% + 12px);

        width: 100px;
    }

    .scroll-down {
        bottom: 22px;
    }

}


/* =====================================================
   6. TABLET
===================================================== */

@media (min-width: 721px) and (max-width: 1024px) {

    .hero-box-wrap {
        transform:
            translateX(-36px);
    }

    .hero-lq-float {
        left:
            calc(100% + 10px);

        width: 88px;
    }

    .hero-desc {
        width:
            min(
                500px,
                85vw
            );
    }

    .scroll-down {
        bottom: 20px;
    }

}


/* =====================================================
   7. MOBILE
===================================================== */

@media (max-width: 720px) {

    .hero-content {
        max-width: 100%;
    }

    .hero-box-wrap {
        transform:
            translateX(-27px);
    }

    .hero-lq-float {
        left:
            calc(100% + 7px);

        width: 66px;
    }

    .hero-logo {
        width:
            min(
                310px,
                84vw
            );
    }

    .hero-desc {
        width:
            min(
                310px,
                88vw
            );

        font-size: 12px;

        line-height: 1.65;
    }

    .hero-button {
        margin-top: 22px;
    }

    .scroll-down {
        bottom: 16px;
    }

}


/* =====================================================
   8. MOBILE NHỎ
===================================================== */

@media (max-width: 380px) {

    .hero-box-wrap {
        transform:
            translateX(-24px);
    }

    .hero-lq-float {
        left:
            calc(100% + 5px);

        width: 58px;
    }

    .hero-logo {
        width:
            min(
                285px,
                86vw
            );
    }

    .hero-desc {
        width:
            min(
                285px,
                90vw
            );
    }

    .scroll-down {
        bottom: 14px;
    }

}
/* =====================================================
   FIX POPUP NẠP TIỀN - GỌN + CĂN GIỮA
===================================================== */

/* Khung popup nạp tiền */
.deposit-modal {
    width: min(360px, calc(100vw - 28px)) !important;

    max-height: 94vh;

    padding: 22px 20px 20px !important;

    margin: auto;

    overflow-y: auto;

    box-sizing: border-box;
}


/* QR luôn nằm chính giữa */
.deposit-modal img,
.deposit-qr,
.qr-image {
    display: block;

    width: 100%;
    max-width: 270px;

    height: auto;

    margin:
        14px auto 16px !important;

    object-fit: contain;
}


/* Các ô số tiền + nội dung */
.deposit-modal .deposit-info,
.deposit-modal .deposit-box {
    width: 100%;

    box-sizing: border-box;

    margin:
        9px auto 0;
}


/* Nút sao chép */
.deposit-modal .modal-action {
    width: 100%;

    min-height: 44px;

    margin-top: 12px;
}


/* Dòng đang chờ */
.deposit-modal .deposit-status {
    margin-top: 10px;
    margin-bottom: 0;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 720px) {

    .deposit-modal {
        width:
            calc(100vw - 34px) !important;

        max-width: 340px;

        max-height: 94dvh;

        padding:
            19px 17px 17px !important;
    }


    /* Tiêu đề */

    .deposit-modal h2 {
        margin-bottom: 6px;

        font-size: 23px;
        line-height: 1.05;
    }


    /* Mô tả */

    .deposit-modal > p {
        margin-top: 7px;
        margin-bottom: 8px;

        font-size: 11px;
        line-height: 1.5;
    }


    /* QR nhỏ lại */

    .deposit-modal img,
    .deposit-qr,
    .qr-image {
        width: 100%;
        max-width: 245px;

        margin:
            10px auto 12px !important;
    }


    /* Giảm chiều cao ô */

    .deposit-modal .deposit-info,
    .deposit-modal .deposit-box {
        padding:
            12px 10px;

        margin-top: 8px;
    }


    /* Nút */

    .deposit-modal .modal-action {
        min-height: 42px;

        margin-top: 10px;
    }

}
/* =====================================================
   BỌT NƯỚC CHO KHU VỰC VÍ & TÀI KHOẢN
   KHÔNG ẢNH HƯỞNG CHỨC NĂNG
===================================================== */

.account-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}


/* lớp bọt phía sau nội dung */

.account-section::before,
.account-section::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    z-index: 0;
}


/* cụm bọt 1 */

.account-section::before {
    background:

        radial-gradient(
            circle at 8% 18%,
            rgba(255,255,255,.22) 0 4px,
            transparent 5px
        ),

        radial-gradient(
            circle at 18% 72%,
            rgba(255,255,255,.16) 0 7px,
            transparent 8px
        ),

        radial-gradient(
            circle at 35% 28%,
            rgba(255,255,255,.13) 0 3px,
            transparent 4px
        ),

        radial-gradient(
            circle at 58% 85%,
            rgba(255,255,255,.16) 0 6px,
            transparent 7px
        ),

        radial-gradient(
            circle at 78% 20%,
            rgba(255,255,255,.15) 0 8px,
            transparent 9px
        ),

        radial-gradient(
            circle at 92% 62%,
            rgba(255,255,255,.18) 0 4px,
            transparent 5px
        );

    animation:
        accountBubblesOne
        14s
        linear
        infinite;

    opacity: .8;
}


/* cụm bọt 2 */

.account-section::after {
    background:

        radial-gradient(
            circle at 12% 92%,
            rgba(255,255,255,.12) 0 10px,
            transparent 11px
        ),

        radial-gradient(
            circle at 47% 58%,
            rgba(255,255,255,.12) 0 5px,
            transparent 6px
        ),

        radial-gradient(
            circle at 68% 35%,
            rgba(255,255,255,.10) 0 12px,
            transparent 13px
        ),

        radial-gradient(
            circle at 88% 88%,
            rgba(255,255,255,.14) 0 7px,
            transparent 8px
        );

    animation:
        accountBubblesTwo
        18s
        linear
        infinite;

    opacity: .55;
}


/* cho nội dung luôn nằm trên bọt */

.account-section > * {
    position: relative;
    z-index: 2;
}


/* chuyển động bọt */

@keyframes accountBubblesOne {

    0% {
        transform:
            translateY(80px);
    }

    50% {
        transform:
            translateY(-20px)
            translateX(8px);
    }

    100% {
        transform:
            translateY(-120px);
    }

}


@keyframes accountBubblesTwo {

    0% {
        transform:
            translateY(120px);
    }

    50% {
        transform:
            translateY(0)
            translateX(-10px);
    }

    100% {
        transform:
            translateY(-140px);
    }

}
/* =====================================================
   THÔNG BÁO TẠO TÀI KHOẢN THÀNH CÔNG
===================================================== */

.new-member-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(2, 24, 40, .62);

    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);

    animation: memberOverlayIn .3s ease;
}

.new-member-card {
    width: min(350px, 92vw);

    padding: 28px 22px 22px;

    background: #f2f9fc;

    border: 1px solid #afd1e1;
    border-radius: 24px;

    text-align: center;

    box-shadow:
        0 25px 70px
        rgba(0, 24, 44, .30);

    animation:
        memberCardIn
        .5s
        cubic-bezier(.2,.9,.3,1.15);
}

.new-member-check {
    width: 60px;
    height: 60px;

    margin: 0 auto 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #0076c8,
            #19a9ed
        );

    color: white;

    font-size: 28px;
    font-weight: 900;

    box-shadow:
        0 12px 30px
        rgba(0, 130, 210, .30);

    animation:
        memberCheckIn
        .65s ease;
}

.new-member-label {
    color: #047dcc;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 3px;
}

.new-member-card h2 {
    margin: 9px 0 8px;

    color: #052b45;

    font-size: 24px;
    line-height: 1.08;

    font-weight: 900;
}

.new-member-desc {
    margin: 0 0 18px;

    color: #718897;

    font-size: 12px;
    line-height: 1.6;
}

.new-member-id {
    padding: 15px;

    margin-bottom: 11px;

    border: 1px dashed #61b6df;
    border-radius: 14px;

    background: #ffffff;
}

.new-member-id small {
    display: block;

    margin-bottom: 5px;

    color: #7891a0;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 2px;
}

.new-member-id strong {
    display: block;

    color: #087ccc;

    font-size: 23px;
    font-weight: 900;

    letter-spacing: 1px;
}

.new-member-note {
    margin: 0 0 17px;

    color: #778f9d;

    font-size: 10px;
    line-height: 1.5;
}

.new-member-start {
    width: 100%;
    height: 46px;

    border: 0;
    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            #0076cb,
            #119de5
        );

    color: white;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 2px;

    cursor: pointer;
}

.new-member-start:active {
    transform: scale(.97);
}

.new-member-overlay.closing {
    animation:
        memberOverlayOut
        .25s ease forwards;
}

.new-member-overlay.closing
.new-member-card {
    animation:
        memberCardOut
        .25s ease forwards;
}

@keyframes memberOverlayIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes memberOverlayOut {
    to { opacity: 0; }
}

@keyframes memberCardIn {

    from {
        opacity: 0;

        transform:
            translateY(25px)
            scale(.88);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }
}

@keyframes memberCardOut {

    to {
        opacity: 0;

        transform:
            translateY(15px)
            scale(.94);
    }
}

@keyframes memberCheckIn {

    0% {
        transform:
            scale(0)
            rotate(-20deg);
    }

    70% {
        transform:
            scale(1.12)
            rotate(4deg);
    }

    100% {
        transform:
            scale(1)
            rotate(0);
    }
}