  /* =========================
   GLOBAL
========================= */

    body {
        background:
            radial-gradient(circle at top left, #f8fffb 0, #f3f5f7 40%),
            radial-gradient(circle at bottom right, #eefaf3 0, #f3f5f7 35%);
        font-family: "Segoe UI", sans-serif;
        color: #222;
        overflow-x: hidden;
    }

    a {
        text-decoration: none;
    }

    img {
        max-width: 100%;
        display: block;
    }

    li {
        line-height: 40px;
    }

    ::marker {
        color: #0e983b;
    }

    /* =========================
   SIDEBAR
========================= */

    .sidebar {
        width: 280px;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        background: #fff;
        border-right: 1px solid #ececec;
        padding: 24px;
        overflow-y: auto;
        z-index: 1000;
    }

    .sidebar::-webkit-scrollbar {
        width: 4px;
    }

    .sidebar::-webkit-scrollbar-thumb {
        background: #dcdcdc;
        border-radius: 20px;
    }

    /* LOGO */

    .sidebar-logo {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 30px;
    }

    .logo-icon {
        width: 58px;
        height: 58px;
        border-radius: 18px;
        background: linear-gradient(135deg, #0e983b, #24d364);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 28px;
    }

    .logo-text {
        font-size: 24px;
        font-weight: 800;
        color: #0e983b;
        line-height: 1.1;
    }

    .sidebar-logo small {
        color: #888;
    }

    /* USER */

    .sidebar-user {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 24px;
    }

    .sidebar-user img {
        width: 60px;
        height: 60px;
        border-radius: 18px;
        object-fit: cover;
    }

    .user-name {
        font-size: 16px;
        font-weight: 700;
    }

    .vip-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 5px 12px;
        background: #effff3;
        color: #0e983b;
        border-radius: 50px;
        margin-top: 6px;
        font-size: 12px;
        font-weight: 700;
    }

    /* WALLET */

    .wallet-card {
        background: linear-gradient(135deg, #0d8f36, #20c55b);
        border-radius: 24px;
        padding: 22px;
        color: #fff;
        margin-bottom: 28px;
        position: relative;
        overflow: hidden;
    }

    .wallet-card::before {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        background: rgba(255, 255, 255, .08);
        border-radius: 50%;
        top: -60px;
        right: -60px;
    }

    .wallet-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 14px;
        opacity: .9;
        position: relative;
    }

    .wallet-card h3 {
        font-size: 28px;
        font-weight: 800;
        margin-bottom: 20px;
        position: relative;
    }

    .wallet-btns {
        display: flex;
        gap: 10px;
        position: relative;
    }

    .wallet-btn {
        flex: 1;
        height: 46px;
        border: none;
        border-radius: 14px;
        font-weight: 700;
    }

    .wallet-card .deposit {
        background: #fff;
        color: #0e983b;
    }

    .wallet-card .withdraw {
        background: rgba(255, 255, 255, .15);
        color: #fff;
    }

    /* MENU */

    .sidebar-menu {
        margin-bottom: 28px;
    }

    .menu-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 18px;
        border-radius: 18px;
        margin-bottom: 10px;
        color: #333;
        transition: .25s;
    }

    .menu-item:hover {
        background: #f5fff8;
        color: #0e983b;
    }

    .menu-item.active {
        background: linear-gradient(135deg, #0e983b, #20c55b);
        color: #fff;
        box-shadow: 0 10px 25px rgba(14, 152, 59, .25);
    }

    .menu-left {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .menu-left i {
        font-size: 20px;
    }

    .menu-badge {
        background: #ff4d4f;
        color: #fff;
        font-size: 11px;
        font-weight: 700;
        padding: 5px 10px;
        border-radius: 50px;
    }

    .menu-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #0e983b;

        animation: pulseDot 1.2s infinite ease-in-out;
    }

    @keyframes pulseDot {
        0% {
            transform: scale(1);
            opacity: 1;
            box-shadow: 0 0 0 0 rgba(14, 152, 59, 0.7);
        }

        70% {
            transform: scale(1.3);
            opacity: 0.8;
            box-shadow: 0 0 0 8px rgba(14, 152, 59, 0);
        }

        100% {
            transform: scale(1);
            opacity: 1;
            box-shadow: 0 0 0 0 rgba(14, 152, 59, 0);
        }
    }

    /* SIDEBAR BOX */

    .sidebar-box {
        background: #f8faf8;
        border-radius: 24px;
        padding: 20px;
        margin-bottom: 24px;
    }

    .sidebar-title {
        font-weight: 700;
        margin-bottom: 18px;
    }

    .recent-game {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 16px;
    }

    .recent-game:last-child {
        margin-bottom: 0;
    }

    .recent-game img {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        object-fit: cover;
    }

    .recent-name {
        font-weight: 700;
    }

    /* PROMO */

    .sidebar-promo {
        background: linear-gradient(135deg, #111, #333);
        border-radius: 24px;
        padding: 24px;
        color: #fff;
        margin-bottom: 24px;
    }

    .promo-badge {
        display: inline-flex;
        background: #25d366;
        padding: 6px 12px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 16px;
    }

    .sidebar-promo h4 {
        font-size: 24px;
        font-weight: 800;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .sidebar-promo button {
        width: 100%;
        height: 48px;
        border: none;
        border-radius: 16px;
        background: #25d366;
        color: #fff;
        font-weight: 700;
    }

    /* ONLINE */

    .online-box {
        height: 58px;
        border-radius: 18px;
        background: #effff3;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        color: #0e983b;
        font-weight: 700;
    }

    .online-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #0e983b;
        animation: pulse 1s infinite;
    }

    @keyframes pulse {

        0% {
            transform: scale(1);
            opacity: 1;
        }

        100% {
            transform: scale(1.8);
            opacity: 0;
        }

    }

    /* =========================
   MAIN
========================= */

    .main {
        margin-left: 280px;
        padding: 20px;
    }

    /* TOPBAR */

    .topbar {
        background: #fff;
        border-radius: 24px;
        padding: 16px 20px;
        margin-bottom: 24px;
        border: 1px solid #eee;
    }

    .search-box {
        position: relative;
    }

    .search-box input {
        height: 50px;
        border-radius: 50px;
        padding-left: 48px;
    }

    .search-box i {
        position: absolute;
        left: 18px;
        top: 14px;
        color: #999;
    }

    .btn-green {
        background: url(/file/img/bg_success.png);
        color: #fff;
        border: none;
        border-radius: 7px;
        padding: 11px 24px;
        font-weight: 600;
    }

    .btn-green:hover {
        background: #0b7d30;
        color: #fff;
    }

    /* HERO */

    .hero-card {
        background: url(/file/img/nenbanner.png) center/cover no-repeat;

        border-radius: 28px;
        padding: 40px;

        position: relative;
        overflow: hidden;

        min-height: 360px;

        border: 1px solid rgba(255, 255, 255, .15);

        box-shadow:
            0 10px 40px rgba(0, 0, 0, .15),
            inset 0 1px 0 rgba(255, 255, 255, .08);
    }

    /* LỚP ÁNH SÁNG QUÉT CARD */
    .hero-card::before {
        content: '';

        position: absolute;
        top: -50%;
        left: -120%;

        width: 80%;
        height: 220%;

        background: linear-gradient(90deg,
                transparent,
                rgba(255, 255, 255, .18),
                transparent);

        transform: rotate(20deg);

        animation: cardShine 6s linear infinite;
    }

    /* TEXT JACKPOT */
    .hero-card h1 {
        position: relative;
        z-index: 2;

        display: inline-block;

        font-size: 64px;
        font-weight: 800;
        letter-spacing: 2px;

        background: linear-gradient(180deg,
                #fff8cc 0%,
                #ffe27a 18%,
                #ffcc00 38%,
                #ffb300 55%,
                #fff1a8 72%,
                #b87400 100%);

        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;

        text-shadow:
            0 2px 0 #a56a00,
            0 4px 12px rgba(255, 191, 0, .35),
            0 0 22px rgba(255, 215, 0, .45);

        animation: goldGlow 2s ease-in-out infinite alternate;
    }

    /* SHINE CHẠY QUA CHỮ */
    .hero-card h1::after {
        content: '';

        position: absolute;

        top: -20%;
        left: -120%;

        width: 60%;
        height: 160%;

        background: linear-gradient(90deg,
                transparent,
                rgba(255, 255, 255, .95),
                transparent);

        transform: rotate(18deg);

        animation: textShine 3s linear infinite;
    }

    /* GLOW */
    @keyframes goldGlow {
        from {
            filter: drop-shadow(0 0 6px rgba(255, 215, 0, .25));
        }

        to {
            filter: drop-shadow(0 0 18px rgba(255, 215, 0, .75));
        }
    }

    /* SHINE TEXT */
    @keyframes textShine {
        0% {
            left: -120%;
        }

        100% {
            left: 160%;
        }
    }

    /* SHINE CARD */
    @keyframes cardShine {
        0% {
            left: -150%;
        }

        100% {
            left: 180%;
        }
    }

    .hero-card img {
        position: absolute;
        right: 40px;
        bottom: 0;
        width: 42%;
        height: 100%;
        object-fit: contain;
    }

    .swiper-pagination-bullet-active {
        background: #0e983b;
    }

    /* CATEGORY */

    .category-wrapper {
        background: #fff;
        border-radius: 28px;
        overflow-x: auto;
        overflow-y: hidden;
        z-index: 1;
        position: relative;
        -webkit-overflow-scrolling: touch;
        padding: 28px;
        border: 1px solid #eee;
        box-shadow: 0 5px 20px rgba(0, 0, 0, .04);
    }



    .category-item {
        min-width: 110px;
        text-align: center;
        padding: 18px 10px;
        border-radius: 22px;
        cursor: pointer;
        transition: .25s;
        border: 1px solid transparent;
    }

    .category-item:hover {
        background: #f4fff7;
        border-color: #c8f1d6;
        transform: translateY(-3px);
    }

    .category-item.active {
        background: #effff3;
        border-color: #0e983b;
    }

    .category-icon {
        width: 64px;
        height: 64px;
        margin: auto;
        border-radius: 20px;
        background: #f5fff8;
        display: flex;
        align-items: center;
        justify-content: center;
        /* color: #0e983b; */
        font-size: 28px;
        margin-bottom: 12px;
    }

    .category-item.active .category-icon {
        /* background: #0e983b; */
        color: #fff;
        /* box-shadow: 0 10px 20px rgba(14, 152, 59, .25); */
    }

    .category-name {
        font-size: 14px;
        font-weight: 600;
    }

    /* GAME */

    .gameSwiper {
        padding: 0 55px;
    }

    .game-card {
        background: #fff;
        border-radius: 24px;
        overflow: hidden;
        transition: .3s;
        border: 1px solid #eee;
    }

    .game-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, .08);
    }

    .game-thumb {
        position: relative;
        overflow: hidden;
    }

    .game-thumb img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        transition: .4s;
    }

    .game-card:hover img {
        transform: scale(1.08);
    }

    .game-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, .45);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: .3s;
    }

    .game-card:hover .game-overlay {
        opacity: 1;
    }

    .play-btn {
        width: 70px;
        height: 70px;
        border: none;
        border-radius: 50%;
        background: #0e983b;
        color: #fff;
        font-size: 30px;
    }

    .game-info {
        padding: 18px;
    }

    .game-title {
        font-size: 18px;
        font-weight: 700;
    }

    .provider {
        color: #888;
        font-size: 14px;
    }

    .game-prev,
    .game-next {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: #fff;
        position: absolute;
        top: 42%;
        transform: translateY(-50%);
        z-index: 20;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
        cursor: pointer;
        color: #0e983b;
    }

    .game-prev {
        left: 8px;
    }

    .game-next {
        right: 8px;
    }

    /* RIGHT */

    .right-card {
        background: #fff;
        border-radius: 24px;
        padding: 24px;
        border: 1px solid #eee;
        box-shadow: 0 5px 20px rgba(0, 0, 0, .04);
        margin-bottom: 24px;
        overflow: hidden;
    }

    .promo-icon {
        width: 55px;
        height: 55px;
        border-radius: 18px;
        background: #e8fff0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #0e983b;
        font-size: 28px;
    }

    .jackpot {
        background: linear-gradient(135deg, #0d8f36, #20c55b);
        color: #fff;
        position: relative;
    }

    .jackpot-glow {
        position: absolute;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .2);
        top: -60px;
        right: -60px;
    }

    .jackpot h2 {
        font-size: 38px;
        font-weight: 800;
    }

    .winner-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 18px;
        margin-bottom: 18px;
        border-bottom: 1px solid #eee;
    }

    .winner-item img {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        object-fit: cover;
    }

    .winner-money {
        color: #0e983b;
        font-weight: 700;
    }

    .vip-card {
        background: linear-gradient(135deg, #0e983b, #1fd15f);
    }

    .support-icon {
        width: 60px;
        height: 60px;
        border-radius: 18px;
        background: #eafff1;
        color: #0e983b;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
    }

    /* PROVIDER */

    .provider-box {
        background: #fff;
        border-radius: 20px;
        border: 1px solid #eee;
        min-height: 90px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
    }

    /* FOOTER */

    .footer-box {
        background: #fff;
        border-radius: 24px;
        padding: 30px;
        border: 1px solid #eee;
    }

    /* =========================
   RESPONSIVE
========================= */

    @media(max-width:1400px) {

        .gameSwiper {
            padding: 0 20px;
        }

    }

    @media(max-width:1200px) {

        .sidebar {
            display: none;
        }

        .main {
            margin-left: 0;
        }

        .gameSwiper {
            padding: 0;
        }



    }

    @media(max-width:991px) {

        .game-prev,
        .game-next {
            display: none;
        }

    }

    @media(max-width:1200px) {

        .topbar {
            padding: 14px;
            border-radius: 22px;
        }

        /* ROW 1 */
        .topbar-top {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }

        .menu-toggle {
            width: 46px;
            height: 46px;
            min-width: 46px;
            border-radius: 14px;
            font-size: 22px;
        }

        .search-box {
            flex: 1;
            width: auto !important;
        }

        .search-box input {
            height: 46px;
            border-radius: 16px;
            font-size: 14px;
            padding-left: 42px;
        }

        .search-box i {
            top: 12px;
            left: 15px;
            font-size: 15px;
        }

        /* ROW 2 */
        .topbar-actions {
            display: flex;
            gap: 12px;
        }

        .topbar-actions .btn,
        .topbar-actions .btn-green {
            flex: 1;
            height: 46px;
            border-radius: 14px;
            font-size: 15px;
            font-weight: 700;
        }

    }

    /* =========================
   RESPONSIVE FULL
========================= */

    /* ===== LAPTOP ===== */

    @media(max-width:1400px) {

        .gameSwiper {
            padding: 0 10px;
        }

        .hero-card h1 {
            font-size: 52px;
        }

    }


    /* ===== TABLET ===== */

    @media(max-width:1200px) {

        .menu-toggle {
            display: flex;
        }

        .sidebar {
            position: fixed;
            top: 0;
            left: -320px;
            width: 280px;
            height: 100vh;
            z-index: 1000;
            transition: .35s;
            background: #fff;
            overflow-y: auto;
            padding: 20px;
        }

        .sidebar.active {
            left: 0;
        }

        .main {
            margin-left: 0;
            padding: 15px;
        }

        .sidebar-box,
        .sidebar-promo,
        .online-box {}

    }

    .sidebar {
        transition: left .35s ease;
    }

    /* ===== MOBILE ===== */

    @media(max-width:768px) {

        body {
            overflow-x: hidden;
        }

        .main {
            padding: 12px;
        }

        /* TOPBAR */
        .topbar {
            flex-direction: column;
            gap: 15px;
            padding: 15px;
        }

        .search-box {
            width: 100% !important;
        }

        .topbar .d-flex {
            width: 100%;
        }

        .topbar .btn,
        .topbar .btn-green {
            flex: 1;
        }

        /* LOGO */
        .sidebar-logo {
            margin-bottom: 20px;
        }

        .logo-text {
            font-size: 20px;
        }

        /* USER */
        .sidebar-user {
            margin-bottom: 20px;
        }

        /* WALLET */
        .wallet-card {
            padding: 18px;
        }

        .wallet-card h3 {
            font-size: 24px;
        }

        .wallet-btn {
            height: 42px;
            font-size: 11px;
        }

        /* MENU */
        .sidebar-menu {
            grid-template-columns: 1fr;
        }

        /* HERO */
        .hero-card {
            padding: 22px;
            text-align: center;
        }

        .hero-card h1 {
            font-size: 38px;
        }

        .hero-card h3 {
            font-size: 22px;
        }

        .hero-card img {
            position: relative;
            width: 100%;
            height: 240px;
            object-fit: cover;
            right: auto;
            margin-top: 20px;
            border-radius: 20px;
        }

        /* CATEGORY */
        .category-wrapper {
            padding: 18px;
        }

        .category-item {
            width: 95px;
            min-width: 95px;
            padding: 14px 8px;
        }

        .category-icon {
            width: 52px;
            height: 52px;
            font-size: 22px;
        }

        .category-name {
            font-size: 12px;
        }

        /* GAME */
        .game-prev,
        .game-next {
            display: none;
        }

        .game-thumb img {
            height: 190px;
        }

        .game-info {
            padding: 14px;
        }

        .game-title {
            font-size: 15px;
        }

        .provider {
            font-size: 12px;
        }

        .play-btn {
            width: 55px;
            height: 55px;
            font-size: 22px;
        }

        /* PROVIDER */
        .provider-box {
            min-height: 70px;
            font-size: 14px;
        }

        /* RIGHT */
        .right-card {
            padding: 18px;
            border-radius: 20px;
        }

        .jackpot h2 {
            font-size: 28px;
        }

        .winner-item {
            gap: 10px;
        }

        .winner-item img {
            width: 42px;
            height: 42px;
        }

        .winner-money {
            font-size: 14px;
        }

        /* FOOTER */
        .footer-box {
            padding: 22px;
        }

        .footer-box .col-md-3 {
            margin-bottom: 20px;
        }

    }


    /* ===== SMALL MOBILE ===== */

    @media(max-width:480px) {

        .hero-card h1 {
            font-size: 30px;
        }

        .hero-card h4 {
            font-size: 18px;
        }

        .hero-card h3 {
            font-size: 18px;
        }

        .wallet-card h3 {
            font-size: 20px;
        }

        .category-item {
            width: 85px;
            min-width: 85px;
        }

        .category-icon {
            width: 46px;
            height: 46px;
            font-size: 18px;
        }

        .game-thumb img {
            height: 160px;
        }

        .game-title {
            font-size: 14px;
        }

        .provider {
            font-size: 11px;
        }

        .jackpot h2 {
            font-size: 24px;
        }

    }

    /* =========================
   MOBILE SIDEBAR
========================= */

    .menu-toggle {
        width: 48px;
        height: 48px;
        border: none;
        border-radius: 14px;
        background: #0e983b;
        color: #fff;
        font-size: 24px;
        display: none;
        align-items: center;
        justify-content: center;
    }

    /* OVERLAY */

    .sidebar-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
    }

    .sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* MOBILE */

    @media(max-width:1200px) {

        .menu-toggle {
            display: flex;
        }

        .sidebar {
            position: fixed !important;
            top: 0;
            left: -100%;
            width: 280px !important;
            height: 100vh !important;
            -webkit-overflow-scrolling: touch;
            background: #fff;
            z-index: 2000;
            overflow-y: auto;
            transition: left .35s ease;
            padding: 20px;
        }

        .sidebar.active {
            left: 0;
            display: block;
        }

        .main {
            margin-left: 0 !important;
            width: 100%;
        }

        body.sidebar-open {
            overflow: hidden;
        }

    }

    .sidebar-overlay {
        z-index: 100;
    }


    /* CATEGORY MOBILE SLIDE */


    /* =========================
            CATEGORY SCROLL
           ========================= */

    .category-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        cursor: grab;

        scrollbar-width: none;
        -ms-overflow-style: none;

        -webkit-overflow-scrolling: touch;
    }

    .category-wrapper::-webkit-scrollbar {
        display: none;
    }

    .category-wrapper:active {
        cursor: grabbing;
    }

    .category-wrapper .row {
        flex-wrap: nowrap !important;
        width: max-content;
        margin: 0;
        gap: 14px;
    }

    .category-wrapper .col {
        /* flex: 0 0 auto; */
        /* width: auto; */
        /* padding: 0; */
    }

    /* CARD */

    .category-item {
        /* width: 110px; */
        /* min-width: 110px; */
    }

    /* MOBILE */

    @media(max-width:768px) {

        .category-wrapper {
            padding: 18px;
        }

        .category-item {
            width: 95px;
            min-width: 95px;
        }

    }



    @media(min-width:1200px) {
        .topbar {
            display: flex;
        }

        .topbar-actions {
            width: 30%;
            margin-right: 5px;
            text-align: end;
        }

        .topbar-top {
            width: 70%;
            padding-right: 10px;
        }
    }

    /* =========================
   FEATURES
========================= */

    .features-section {
        margin-top: 5px;
    }

    .feature-card {
        background: #fff;
        border: 1px solid #eee;
        border-radius: 22px;
        padding: 20px;
        display: flex;
        align-items: center;
        gap: 16px;
        height: 100%;
        transition: .25s;
        box-shadow: 0 5px 18px rgba(0, 0, 0, .04);
    }

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
        border-color: #d8f5e2;
    }

    .feature-icon {
        width: 64px;
        height: 64px;
        min-width: 64px;
        border-radius: 20px;
        background: linear-gradient(135deg, #0e983b, #20c55b);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 28px;
        box-shadow: 0 10px 25px rgba(14, 152, 59, .25);
    }

    .feature-content h6 {
        margin: 0 0 6px;
        font-size: 16px;
        font-weight: 700;
        color: #222;
    }

    .feature-content p {
        margin: 0;
        font-size: 13px;
        line-height: 1.6;
        color: #777;
    }

    /* MOBILE */

    @media(max-width:768px) {

        .feature-card {
            padding: 16px;
            border-radius: 18px;
        }

        .feature-icon {
            width: 54px;
            height: 54px;
            min-width: 54px;
            font-size: 22px;
            border-radius: 16px;
        }

        .feature-content h6 {
            font-size: 14px;
        }

        .feature-content p {
            font-size: 12px;
        }

    }

    /* =========================
   FOOTER CASINO
========================= */

    .footer-casino {
        margin-top: 60px;
        background: #fff;
        border-radius: 32px 32px 0 0;
        padding: 45px 35px 25px;
        border: 1px solid #eee;
        box-shadow: 0 -5px 25px rgba(0, 0, 0, .04);
    }

    /* TOP */

    .footer-top {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px;
        padding-bottom: 35px;
        border-bottom: 1px solid #eee;
    }

    /* BRAND */

    .footer-logo {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 20px;
    }

    .footer-logo-icon {
        width: 62px;
        height: 62px;
        border-radius: 20px;
        background: linear-gradient(135deg, #0e983b, #20c55b);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 30px;
    }

    .footer-logo h4 {
        margin: 0;
        font-size: 26px;
        font-weight: 800;
        color: #0e983b;
    }

    .footer-logo span {
        color: #888;
        font-size: 14px;
    }

    .footer-brand p {
        color: #777;
        line-height: 1.8;
        max-width: 420px;
    }

    /* SOCIAL */

    .footer-social {
        display: flex;
        gap: 12px;
        margin-top: 20px;
    }

    .footer-social a {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        background: #f4fff7;
        color: #0e983b;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        transition: .25s;
    }

    .footer-social a:hover {
        background: #0e983b;
        color: #fff;
        transform: translateY(-3px);
    }

    /* LINKS */

    .footer-links h6 {
        font-size: 16px;
        font-weight: 800;
        margin-bottom: 18px;
    }

    .footer-links a {
        display: block;
        margin-bottom: 12px;
        color: #666;
        transition: .2s;
    }

    .footer-links a:hover {
        color: #0e983b;
        padding-left: 5px;
    }

    /* PAYMENT */

    .footer-payment {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        padding: 30px 0;
        border-bottom: 1px solid #eee;
    }

    .payment-item {
      
        border-radius: 16px;
        background: #f8faf8;
        border: 1px solid #eee;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        color: #555;
    }

    /* BOTTOM */

    .footer-bottom {
        padding-top: 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        color: #777;
        font-size: 14px;
    }

    .footer-bottom-links {
        display: flex;
        gap: 20px;
    }

    .footer-bottom-links a {
        color: #777;
    }

    .footer-bottom-links a:hover {
        color: #0e983b;
    }

    /* =========================
   MOBILE
========================= */

    @media(max-width:991px) {

        .footer-top {
            grid-template-columns: 1fr 1fr;
        }

    }

    @media(max-width:768px) {

        .footer-casino {
            padding: 30px 20px 20px;
            border-radius: 26px 26px 0 0;
        }

        .footer-top {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .footer-brand p {
            max-width: 100%;
        }

        .footer-payment {
            gap: 10px;
        }

        .payment-item {
       
         
            font-size: 13px;
        }

        .footer-bottom {
            flex-direction: column;
            align-items: flex-start;
        }

    }

    a {
        text-decoration: none;
        color: inherit;
    }

    a:hover {
        text-decoration: none;
        color: inherit;
    }

    /* CARD CHUNG */
    .card-custom {
        border: none;
        border-radius: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }

    /* HEADER */
    .page-header {
        font-size: 24px;
        font-weight: 600;
    }

    /* WALLET */
    .wallet-box {
        background: linear-gradient(135deg, #16a34a, #22c55e);
        color: #fff;
        border-radius: 20px;
        padding: 20px;
        position: relative;
        overflow: hidden;
    }

    .wallet-box h2 {
        font-weight: bold;
    }

    /* METHOD */
    .method {
        border: 1px solid #eee;
        border-radius: 15px;
        padding: 15px;
        cursor: pointer;
        transition: .2s;
    }

    .method.active {
        border-color: #22c55e;
        background: #ecfdf5;
    }

    /* BUTTON */
    .btn-main {
        background: #22c55e;
        color: #fff;
        border: none;
        border-radius: 12px;
    }

    .btn-main:hover {
        background: #16a34a;
    }

    /* INPUT */
    .form-control {
        border-radius: 12px;
        padding: 12px;
    }

    /* HISTORY */
    .history-item {
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }

    .amount-plus {
        color: #16a34a;
    }

    .amount-minus {
        color: #ef4444;
    }

    .custom-swal .swal2-title {
        background: red;
        color: white;
        padding: 15px;
        margin: 0 -1.25em 20px 0;
        border-radius: 5px 5px 0 0;
    }

    [data-bs-theme="dark"] body {
        background: url('/file/img/bg_body.png');
        background-attachment: fixed;
    }

    /* =========================
   SIDEBAR
========================= */

    [data-bs-theme="dark"] .sidebar {

        /* nền kính mờ */
        background:
            radial-gradient(circle at top left,
                rgba(0, 255, 120, .10),
                transparent 35%),

            linear-gradient(180deg,
                rgba(8, 40, 25, .55) 0%,
                rgba(3, 18, 11, .68) 100%);

        /* blur nền phía sau */
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);

        /* viền kính */
        border: 1px solid rgba(120, 255, 190, .12);

        /* glow */
        box-shadow:
            inset 0 0 40px rgba(0, 255, 120, .04),
            0 15px 40px rgba(0, 0, 0, .25),
            0 0 25px rgba(0, 255, 120, .05);

    }

    /* ánh sáng chạy */
    [data-bs-theme="dark"] .sidebar::before {
        content: "";
        position: absolute;
        inset: 0;

        background:
            linear-gradient(130deg,
                transparent 20%,
                rgba(255, 255, 255, .04) 50%,
                transparent 80%);

        pointer-events: none;
    }

    /* lớp kính */
    [data-bs-theme="dark"] .sidebar::after {
        content: "";
        position: absolute;
        inset: 0;

        background:
            rgba(255, 255, 255, .015);

        pointer-events: none;
    }

    /* =========================
   LOGO
========================= */

    [data-bs-theme="dark"] .sidebar-logo {
        display: flex;
        align-items: center;
        gap: 15px;

        padding-bottom: 24px;
        margin-bottom: 24px;

        border-bottom: 1px solid rgba(83, 255, 163, .08);
    }

    [data-bs-theme="dark"] .logo-text {
        font-size: 24px;
        font-weight: 800;

        color: #fff;

        line-height: 1;
    }

    [data-bs-theme="dark"] .sidebar-logo small {
        color: rgba(220, 255, 230, .45);

        font-size: 12px;
        letter-spacing: 1px;
    }

    /* =========================
   MENU
========================= */

    [data-bs-theme="dark"] .sidebar-menu {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    /* menu item */
    /* =========================
   MENU ITEM SPECIAL EFFECT
========================= */

    [data-bs-theme="dark"] .menu-item {
        position: relative;
        overflow: hidden;
    }

    /* nền công nghệ */
    [data-bs-theme="dark"] .menu-item::before {
        content: "";
        position: absolute;
        inset: 0;

        background:
            linear-gradient(120deg,
                transparent 0%,
                rgba(0, 255, 120, .04) 35%,
                rgba(0, 255, 180, .08) 50%,
                rgba(0, 255, 120, .04) 65%,
                transparent 100%);

        opacity: 0;
        transition: .35s;
    }

    /* viền glow */
    [data-bs-theme="dark"] .menu-item::after {
        content: "";
        position: absolute;
        inset: -1px;

        border-radius: inherit;

        background:
            linear-gradient(130deg,
                rgba(0, 255, 120, .0),
                rgba(0, 255, 120, .35),
                rgba(0, 255, 255, .15),
                rgba(0, 255, 120, .0));

        opacity: 0;

        filter: blur(12px);

        transition: .35s;

        z-index: 0;
    }

    /* hover */
    [data-bs-theme="dark"] .menu-item:hover {
        transform: translateX(6px);

        background:
            linear-gradient(180deg,
                rgba(10, 60, 35, .98) 0%,
                rgba(4, 25, 15, .98) 100%);

        border-color: rgba(83, 255, 163, .28);

        box-shadow:
            0 0 12px rgba(0, 255, 120, .10),
            0 0 30px rgba(0, 255, 120, .08),
            inset 0 0 25px rgba(0, 255, 120, .04);
    }

    [data-bs-theme="dark"] .menu-item:hover::before {
        opacity: 1;
    }

    [data-bs-theme="dark"] .menu-item:hover::after {
        opacity: 1;
    }

    /* =========================
   ICON GAME STYLE
========================= */

    [data-bs-theme="dark"] .menu-left i {
        position: relative;

        background:
            linear-gradient(180deg,
                rgba(15, 255, 140, .16) 0%,
                rgba(0, 255, 120, .04) 100%);

        border: 1px solid rgba(83, 255, 163, .12);

        backdrop-filter: blur(10px);

        overflow: hidden;
    }

    /* ánh sáng icon */
    [data-bs-theme="dark"] .menu-left i::before {

        background:
            radial-gradient(circle,
                rgba(255, 255, 255, .22),
                transparent 70%);
        transition: .35s;
    }

    /* hover icon */
    [data-bs-theme="dark"] .menu-item:hover .menu-left i {
        transform: scale(1.08);

        background:
            linear-gradient(180deg,
                #1cff80 0%,
                #0e8f44 100%);

        border-color: rgba(120, 255, 190, .45);

        color: #fff;

        box-shadow:
            0 0 12px rgba(0, 255, 120, .35),
            0 0 25px rgba(0, 255, 120, .25),
            0 0 45px rgba(0, 255, 120, .12);
    }

    [data-bs-theme="dark"] .menu-item:hover .menu-left i::before {
        top: -10%;
        left: -10%;
    }

    /* =========================
   TEXT EFFECT
========================= */

    [data-bs-theme="dark"] .menu-left span {
        position: relative;

        transition: .3s;

        letter-spacing: .3px;
    }

    [data-bs-theme="dark"] .menu-item:hover .menu-left span {
        color: #ffffff;

        text-shadow:
            0 0 8px rgba(255, 255, 255, .15),
            0 0 18px rgba(0, 255, 120, .25);
    }

    /* =========================
   ACTIVE STYLE
========================= */

    [data-bs-theme="dark"] .menu-item.active {
        background:
            linear-gradient(180deg,
                rgba(18, 140, 72, .32) 0%,
                rgba(6, 45, 25, .98) 100%);

        border: 1px solid rgba(83, 255, 163, .35);

        box-shadow:
            0 0 15px rgba(0, 255, 120, .12),
            0 0 35px rgba(0, 255, 120, .10),
            inset 0 0 35px rgba(0, 255, 120, .06);
    }

    [data-bs-theme="dark"] .menu-item.active .menu-left i {
        background:
            linear-gradient(180deg,
                #1cff80 0%,
                #0e8f44 100%);

        color: #fff;

        box-shadow:
            0 0 18px rgba(0, 255, 120, .35),
            0 0 40px rgba(0, 255, 120, .15);
    }

    /* =========================
   ANIMATION
========================= */

    @keyframes techGlow {
        0% {
            filter: brightness(1);
        }

        50% {
            filter: brightness(1.12);
        }

        100% {
            filter: brightness(1);
        }
    }

    [data-bs-theme="dark"] .menu-item:hover {
        animation: techGlow 1.5s infinite;
    }

    /* left */
    [data-bs-theme="dark"] .menu-left {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    /* icon */
    [data-bs-theme="dark"] .menu-left i {
        width: 42px;
        height: 42px;

        border-radius: 14px;

        display: flex;
        align-items: center;
        justify-content: center;

        background:
            linear-gradient(180deg,
                rgba(0, 255, 120, .10),
                rgba(0, 255, 120, .03));

        border: 1px solid rgba(83, 255, 163, .08);

        color: #7dffb0;

        font-size: 18px;

        transition: .25s;
    }

    /* hover icon */
    [data-bs-theme="dark"] .menu-item:hover .menu-left i,
    [data-bs-theme="dark"] .menu-item.active .menu-left i {
        background:
            linear-gradient(180deg,
                #18b256 0%,
                #0b7b38 100%);

        color: #fff;

        box-shadow:
            0 0 20px rgba(0, 255, 120, .18);
    }

    /* text */
    [data-bs-theme="dark"] .menu-left span {
        color: #f4fff7;

        font-size: 14px;
        font-weight: 600;
    }

    /* badge */
    [data-bs-theme="dark"] .menu-badge {
        padding: 6px 10px;

        border-radius: 999px;

        background: #18b256;

        color: #fff;

        font-size: 11px;
        font-weight: 700;

        box-shadow:
            0 0 14px rgba(0, 255, 120, .18);
    }

    /* dot */
    [data-bs-theme="dark"] .menu-dot {
        width: 10px;
        height: 10px;

        border-radius: 50%;

        background: #4cff95;

        box-shadow:
            0 0 12px rgba(0, 255, 120, .8);
    }

    /* =========================
   USER
========================= */

    [data-bs-theme="dark"] .sidebar-user {
        display: flex;
        align-items: center;
        gap: 14px;

        padding: 16px;
        margin: 8px 0;

        border-radius: 24px;

        cursor: pointer;

        background:
            linear-gradient(180deg,
                rgba(0, 255, 120, .06),
                rgba(0, 255, 120, .02));

        border: 1px solid rgba(83, 255, 163, .08);

        transition: .25s;
    }

    [data-bs-theme="dark"] .sidebar-user:hover {
        transform: translateY(-2px);

        box-shadow:
            0 0 22px rgba(0, 255, 120, .08);
    }

    /* avatar */
    [data-bs-theme="dark"] .sidebar-user img {
        width: 58px;
        height: 58px;

        object-fit: cover;

        border-radius: 50%;

        border: 2px solid rgba(83, 255, 163, .25);
    }

    /* name */
    [data-bs-theme="dark"] .user-name {
        font-size: 15px;
        font-weight: 700;

        color: #fff;
    }

    /* vip */
    [data-bs-theme="dark"] .vip-badge {
        display: inline-flex;

        padding: 5px 10px;
        margin-top: 6px;

        border-radius: 999px;

        background:
            linear-gradient(180deg,
                #18b256,
                #0b7b38);

        color: #fff;

        font-size: 11px;
        font-weight: 700;
    }

    /* =========================
   WALLET
========================= */

    [data-bs-theme="dark"] .wallet-card {
        padding: 22px;
        margin: 18px 0;

        border-radius: 28px;

        background:
            radial-gradient(circle at top right,
                rgba(0, 255, 120, .18),
                transparent 40%),

            linear-gradient(180deg,
                #0c5e33 0%,
                #052d19 100%);

        border: 1px solid rgba(83, 255, 163, .18);

        box-shadow:
            0 0 30px rgba(0, 255, 120, .10);
    }

    /* top */
    [data-bs-theme="dark"] .wallet-top {
        display: flex;
        align-items: center;
        justify-content: space-between;

        margin-bottom: 14px;
    }

    [data-bs-theme="dark"] .wallet-top span {
        color: rgba(255, 255, 255, .75);

        font-size: 14px;
    }

    [data-bs-theme="dark"] .wallet-top i {
        color: #8dffbc;
        font-size: 20px;
    }

    /* money */
    [data-bs-theme="dark"] .wallet-card h3 {
        margin-bottom: 20px;

        font-size: 32px;
        font-weight: 800;

        color: #fff;
    }

    /* buttons */
    [data-bs-theme="dark"] .wallet-btns {
        display: flex;
        gap: 12px;
    }

    [data-bs-theme="dark"] .wallet-btn {
        flex: 1;

        height: 46px;

        border: 0;
        border-radius: 16px;

        font-size: 11px;

        transition: .25s;
    }

    /* deposit */
    [data-bs-theme="dark"] .wallet-card .wallet-btn.deposit {
        background:
            linear-gradient(180deg,
                #19bb5c,
                #0b7b38);

        color: #fff;
    }

    /* withdraw */
    [data-bs-theme="dark"] .wallet-card .wallet-btn.withdraw {
        background:
            rgba(255, 255, 255, .08);

        color: #fff;

        border: 1px solid rgba(255, 255, 255, .08);
    }

    [data-bs-theme="dark"] .wallet-btn:hover {
        transform: translateY(-2px);
    }

    /* =========================
   SIDEBAR BOX
========================= */

    [data-bs-theme="dark"] .sidebar-box {
        margin-top: 24px;

        padding: 20px;

        border-radius: 26px;

        background:
            linear-gradient(180deg,
                rgba(255, 255, 255, .03),
                rgba(255, 255, 255, .01));

        border: 1px solid rgba(83, 255, 163, .06);
    }

    /* title */
    [data-bs-theme="dark"] .sidebar-title {
        margin-bottom: 18px;

        color: #fff;

        font-size: 16px;
        font-weight: 700;
    }

    /* recent game */
    [data-bs-theme="dark"] .recent-game {
        display: flex;
        align-items: center;
        gap: 14px;

        padding: 12px;

        border-radius: 18px;

        transition: .25s;
    }

    [data-bs-theme="dark"] .recent-game:hover {
        background: rgba(255, 255, 255, .03);
    }

    /* img */
    [data-bs-theme="dark"] .recent-game img {
        width: 62px;
        height: 62px;

        object-fit: cover;

        border-radius: 16px;
    }

    /* name */
    [data-bs-theme="dark"] .recent-name {
        color: #fff;

        font-size: 14px;
        font-weight: 700;
    }

    [data-bs-theme="dark"] .recent-game small {
        color: rgba(220, 255, 230, .45);
    }

    /* =========================
   PROMO
========================= */

    [data-bs-theme="dark"] .sidebar-promo {
        position: relative;

        margin-top: 24px;
        padding: 26px;

        border-radius: 30px;

        overflow: hidden;

        background:
            radial-gradient(circle at top right,
                rgba(255, 255, 255, .15),
                transparent 40%),

            linear-gradient(180deg,
                #18b256 0%,
                #0b7b38 100%);

        box-shadow:
            0 0 35px rgba(0, 255, 120, .15);
    }

    [data-bs-theme="dark"] .promo-badge {
        display: inline-flex;

        padding: 6px 12px;

        border-radius: 999px;

        background: rgba(255, 255, 255, .18);

        color: #fff;

        font-size: 11px;
        font-weight: 700;

        margin-bottom: 16px;
    }

    [data-bs-theme="dark"] .sidebar-promo h4 {
        color: #fff;

        font-size: 28px;
        font-weight: 800;

        line-height: 1.4;

        margin-bottom: 20px;
    }

    /* button */
    [data-bs-theme="dark"] .sidebar-promo button {
        height: 48px;

        padding: 0 22px;

        border: 0;
        border-radius: 16px;

        background: #fff;

        color: #0b7b38;

        font-size: 14px;
        font-weight: 700;

        transition: .25s;
    }

    [data-bs-theme="dark"] .sidebar-promo button:hover {
        transform: translateY(-2px);
    }

    /* =========================
   ONLINE
========================= */

    [data-bs-theme="dark"] .online-box {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;

        margin-top: 24px;

        padding: 16px;

        border-radius: 20px;

        background:
            rgba(255, 255, 255, .03);

        border: 1px solid rgba(83, 255, 163, .06);

        color: rgba(240, 255, 245, .75);

        font-size: 14px;
        font-weight: 600;
    }

    /* dot */
    [data-bs-theme="dark"] .online-dot {
        width: 12px;
        height: 12px;

        border-radius: 50%;

        background: #4cff95;

        box-shadow:
            0 0 14px rgba(0, 255, 120, .8);

        animation: onlinePulse 1.5s infinite;
    }

    @keyframes onlinePulse {
        0% {
            transform: scale(1);
            opacity: 1;
        }

        50% {
            transform: scale(1.3);
            opacity: .6;
        }

        100% {
            transform: scale(1);
            opacity: 1;
        }
    }

    /* =========================
   MOBILE
========================= */

    @media(max-width:991px) {

        [data-bs-theme="dark"] .sidebar {
            border-radius: 0;
            height: 100vh;

            overflow-y: auto;
        }

        [data-bs-theme="dark"] .wallet-card h3 {
            font-size: 26px;
        }

        [data-bs-theme="dark"] .sidebar-promo h4 {
            font-size: 22px;
        }
    }

    /* =========================
   FOOTER CASINO
========================= */

    [data-bs-theme="dark"] .footer-casino {
        position: relative;

        margin-top: 60px;

        padding: 50px 35px 25px;

        border-radius: 36px 36px 0 0;

        overflow: hidden;

        background:
            radial-gradient(circle at top left,
                rgba(0, 255, 120, .10),
                transparent 35%),

            radial-gradient(circle at top right,
                rgba(0, 255, 180, .06),
                transparent 35%),

            linear-gradient(180deg,
                rgba(7, 38, 23, .78) 0%,
                rgba(3, 18, 11, .92) 100%);

        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);

        border-top: 1px solid rgba(120, 255, 190, .12);

        box-shadow:
            inset 0 0 60px rgba(0, 255, 120, .03),
            0 -10px 40px rgba(0, 0, 0, .20);
    }

    /* shine */
    [data-bs-theme="dark"] .footer-casino::before {
        content: "";
        position: absolute;
        inset: 0;

        background:
            linear-gradient(130deg,
                transparent 20%,
                rgba(255, 255, 255, .03) 50%,
                transparent 80%);

        pointer-events: none;
    }

    /* =========================
   TOP
========================= */

    [data-bs-theme="dark"] .footer-top {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1fr;

        gap: 40px;

        padding-bottom: 35px;

        border-bottom: 1px solid rgba(83, 255, 163, .08);
    }

    /* =========================
   BRAND
========================= */

    [data-bs-theme="dark"] .footer-brand {
        max-width: 420px;
    }

    /* logo */
    [data-bs-theme="dark"] .footer-logo {
        display: flex;
        align-items: center;
        gap: 15px;

        margin-bottom: 18px;
    }

    /* icon */
    [data-bs-theme="dark"] .footer-logo-icon {
        width: 60px;
        height: 60px;

        border-radius: 20px;

        background:
            linear-gradient(180deg,
                #19bb5c 0%,
                #0b7b38 100%);

        box-shadow:
            0 0 25px rgba(0, 255, 120, .20);

        position: relative;
    }

    /* inner glow */
    [data-bs-theme="dark"] .footer-logo-icon::before {
        content: "";

        position: absolute;
        inset: 12px;

        border-radius: 12px;

        background:
            rgba(255, 255, 255, .15);
    }

    /* title */
    [data-bs-theme="dark"] .footer-logo h4 {
        margin: 0;

        color: #fff;

        font-size: 28px;
        font-weight: 800;

        letter-spacing: 1px;
    }

    /* sub */
    [data-bs-theme="dark"] .footer-logo div {
        color: rgba(220, 255, 230, .55);

        font-size: 13px;
    }

    /* desc */
    [data-bs-theme="dark"] .footer-brand p {
        color: rgba(220, 255, 230, .60);

        line-height: 1.8;

        font-size: 14px;
    }

    /* =========================
   SOCIAL
========================= */

    [data-bs-theme="dark"] .footer-social {
        display: flex;
        align-items: center;
        gap: 12px;

        margin-top: 20px;
    }

    [data-bs-theme="dark"] .footer-social a {
        width: 44px;
        height: 44px;

        border-radius: 14px;

        display: flex;
        align-items: center;
        justify-content: center;

        text-decoration: none;

        background:
            linear-gradient(180deg,
                rgba(0, 255, 120, .10),
                rgba(0, 255, 120, .03));

        border: 1px solid rgba(83, 255, 163, .10);

        color: #7dffb0;

        font-size: 18px;

        transition: .25s;
    }

    [data-bs-theme="dark"] .footer-social a:hover {
        transform: translateY(-3px);

        background:
            linear-gradient(180deg,
                #19bb5c,
                #0b7b38);

        color: #fff;

        box-shadow:
            0 0 20px rgba(0, 255, 120, .20);
    }

    /* =========================
   LINKS
========================= */

    [data-bs-theme="dark"] .footer-links h6 {
        margin-bottom: 20px;

        color: #fff;

        font-size: 16px;
        font-weight: 700;
    }

    /* link */
    [data-bs-theme="dark"] .footer-links a {
        display: block;

        margin-bottom: 14px;

        color: rgba(220, 255, 230, .58);

        text-decoration: none;

        font-size: 14px;
        font-weight: 500;

        transition: .25s;
    }

    /* hover */
    [data-bs-theme="dark"] .footer-links a:hover {
        color: #7dffb0;

        transform: translateX(4px);

        text-shadow:
            0 0 12px rgba(0, 255, 120, .18);
    }

    /* =========================
   PAYMENT
========================= */

    [data-bs-theme="dark"] .footer-payment {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;

        padding: 35px 0;
    }

    /* item */
    [data-bs-theme="dark"] .payment-item {
     

        padding: 0 20px;

        border-radius: 18px;

        display: flex;
        align-items: center;
        justify-content: center;

        background:
            linear-gradient(180deg,
                rgba(255, 255, 255, .04),
                rgba(255, 255, 255, .01));

        border: 1px solid rgba(83, 255, 163, .08);

        color: #fff;

        font-size: 14px;
        font-weight: 700;

        letter-spacing: 1px;

        transition: .25s;
    }

    /* hover */
    [data-bs-theme="dark"] .payment-item:hover {
        transform: translateY(-3px);

        border-color: rgba(83, 255, 163, .25);

        box-shadow:
            0 0 20px rgba(0, 255, 120, .10);

        color: #7dffb0;
    }
    [data-bs-theme="dark"] .text-white2 {
        color:#ffffff
    }
    .text-white2 {
        color:#000000
    }

    /* =========================
   BOTTOM
========================= */

    [data-bs-theme="dark"] .footer-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;

        padding-top: 25px;

        border-top: 1px solid rgba(83, 255, 163, .06);

        color: rgba(220, 255, 230, .45);

        font-size: 13px;
    }

    /* links */
    [data-bs-theme="dark"] .footer-bottom-links {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    [data-bs-theme="dark"] .footer-bottom-links a {
        color: rgba(220, 255, 230, .50);

        text-decoration: none;

        transition: .25s;
    }

    [data-bs-theme="dark"] .footer-bottom-links a:hover {
        color: #7dffb0;
    }

    /* =========================
   MOBILE
========================= */

    @media(max-width:991px) {

        [data-bs-theme="dark"] .footer-casino {
            padding: 40px 20px 20px;

            border-radius: 28px 28px 0 0;
        }

        [data-bs-theme="dark"] .footer-top {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        [data-bs-theme="dark"] .footer-payment {
            justify-content: center;
        }

        [data-bs-theme="dark"] .footer-bottom {
            flex-direction: column;
            text-align: center;
        }

        [data-bs-theme="dark"] .footer-bottom-links {
            flex-wrap: wrap;
            justify-content: center;
        }
    }

    /* =========================
   GAME OVERLAY
========================= */

    [data-bs-theme="dark"] .game-list-overlay {

        /* nền blur gaming */
        background:
            radial-gradient(circle at top,
                rgba(0, 255, 120, .12),
                transparent 45%),

            linear-gradient(180deg,
                rgba(4, 15, 10, .45) 0%,
                rgba(2, 10, 6, .82) 100%);

        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    /* =========================
   TOPBAR
========================= */

    [data-bs-theme="dark"] .topbar {
        position: relative;

        padding: 18px 22px;

        border-radius: 28px;

        background:
            radial-gradient(circle at top left,
                rgba(0, 255, 120, .08),
                transparent 35%),

            linear-gradient(180deg,
                rgba(7, 39, 24, .96) 0%,
                rgba(3, 20, 12, .98) 100%);

        border: 1px solid rgba(83, 255, 163, .08);

        box-shadow:
            inset 0 0 40px rgba(0, 255, 120, .03),
            0 10px 30px rgba(0, 0, 0, .18);

        overflow: hidden;
    }

    /* hiệu ứng shine */
    [data-bs-theme="dark"] .topbar::before {
        content: "";
        position: absolute;
        inset: 0;

        background:
            linear-gradient(120deg,
                transparent 20%,
                rgba(255, 255, 255, .03) 50%,
                transparent 80%);

        pointer-events: none;
    }

    /* row */
    [data-bs-theme="dark"] .topbar-top {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    /* =========================
   MENU BUTTON
========================= */

    [data-bs-theme="dark"] .menu-toggle {
        width: 52px;
        height: 52px;

        border: 1px solid rgba(83, 255, 163, .12);

        border-radius: 18px;

        background:
            linear-gradient(180deg,
                rgba(0, 255, 120, .08),
                rgba(0, 255, 120, .02));

        color: #8dffbc;

        font-size: 24px;


        align-items: center;


        transition: .25s;

        box-shadow:
            inset 0 0 15px rgba(0, 255, 120, .02);
    }

    [data-bs-theme="dark"] .menu-toggle:hover {
        transform: translateY(-2px);

        border-color: rgba(83, 255, 163, .35);

        box-shadow:
            0 0 20px rgba(0, 255, 120, .12),
            inset 0 0 25px rgba(0, 255, 120, .05);

        color: #fff;
    }

    /* =========================
   SEARCH BOX
========================= */

    [data-bs-theme="dark"] .search-box {
        flex: 1;

        height: 58px;

        border-radius: 22px;

        position: relative;

        display: flex;
        align-items: center;

        background:
            linear-gradient(180deg,
                rgba(14, 55, 35, .92) 0%,
                rgba(6, 30, 19, .98) 100%);

        border: 1px solid rgba(83, 255, 163, .10);

        overflow: hidden;

        transition: .25s;
    }

    /* glow */
    [data-bs-theme="dark"] .search-box::before {
        content: "";
        position: absolute;
        inset: 0;

        background:
            radial-gradient(circle at left,
                rgba(0, 255, 120, .08),
                transparent 50%);

        pointer-events: none;
    }

    /* focus */
    [data-bs-theme="dark"] .search-box:focus-within {
        border-color: rgba(83, 255, 163, .45);

        box-shadow:
            0 0 25px rgba(0, 255, 120, .10),
            inset 0 0 30px rgba(0, 255, 120, .04);
    }

    /* icon */
    [data-bs-theme="dark"] .search-box i {
        position: absolute;
        left: 20px;

        font-size: 18px;
        color: #7dffb0;
    }

    /* input */
    [data-bs-theme="dark"] .search-box input {
        width: 100%;
        height: 100%;

        padding-left: 52px;
        padding-right: 20px;

        background: transparent !important;
        border: 0 !important;
        outline: none !important;

        color: #fff !important;

        font-size: 15px;
        font-weight: 500;

        box-shadow: none !important;
    }

    /* placeholder */
    [data-bs-theme="dark"] .search-box input::placeholder {
        color: rgba(220, 255, 230, .45);
    }

    /* =========================
   ACTIONS
========================= */

    [data-bs-theme="dark"] .topbar-actions {
        margin-top: 18px;

        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 12px;
    }

    /* logout button */
    [data-bs-theme="dark"] .topbar-actions .btn {
        height: 48px;

        padding: 0 24px;

        border-radius: 16px !important;

        border: 1px solid rgba(83, 255, 163, .12) !important;

        background:
            linear-gradient(180deg,
                #18b256 0%,
                #0b7a37 100%) !important;

        color: #fff !important;

        font-size: 14px;
        font-weight: 600;

        transition: .25s;

        box-shadow:
            0 0 20px rgba(0, 255, 120, .12);
    }

    [data-bs-theme="dark"] .topbar-actions .btn:hover {
        transform: translateY(-2px);

        box-shadow:
            0 0 28px rgba(0, 255, 120, .22);

        filter: brightness(1.05);
    }

    /* =========================
   MOBILE
========================= */

    @media(max-width:768px) {

        [data-bs-theme="dark"] .topbar {
            padding: 16px;
            border-radius: 22px;
        }

        [data-bs-theme="dark"] .topbar-top {
            gap: 10px;
        }

        [data-bs-theme="dark"] .menu-toggle {
            width: 48px;
            height: 48px;
            border-radius: 15px;
        }

        [data-bs-theme="dark"] .search-box {
            height: 50px;
            border-radius: 18px;
        }

        [data-bs-theme="dark"] .topbar-actions {
            margin-top: 14px;
        }

        [data-bs-theme="dark"] .topbar-actions .btn {
            width: 100%;
        }
    }

    [data-bs-theme="dark"] .card {
        position: relative;

        background:
            radial-gradient(circle at top left,
                rgba(0, 255, 120, .08),
                transparent 35%),

            linear-gradient(180deg,
                rgba(8, 40, 25, .88) 0%,
                rgba(3, 18, 11, .96) 100%) !important;

        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);

        border: 1px solid rgba(83, 255, 163, .08) !important;

        border-radius: 28px !important;

        overflow: hidden;

        box-shadow:
            inset 0 0 40px rgba(0, 255, 120, .03),
            0 10px 30px rgba(0, 0, 0, .18);

        transition: .25s ease;
    }

    /* glow */
    [data-bs-theme="dark"] .card::before {
        content: "";
        position: absolute;
        inset: 0;

        background:
            linear-gradient(130deg,
                transparent 20%,
                rgba(255, 255, 255, .03) 50%,
                transparent 80%);

        opacity: 0;

        transition: .3s;

        pointer-events: none;
    }

    /* hover */
    [data-bs-theme="dark"] .card:hover {
        transform: translateY(-4px);

        border-color: rgba(83, 255, 163, .18) !important;

        box-shadow:
            0 0 22px rgba(0, 255, 120, .08),
            0 0 40px rgba(0, 255, 120, .04),
            inset 0 0 30px rgba(0, 255, 120, .04);
    }

    [data-bs-theme="dark"] .card:hover::before {
        opacity: 1;
    }

    /* body */
    [data-bs-theme="dark"] .card-body {
        position: relative;
        z-index: 2;
    }

    /* title */
    [data-bs-theme="dark"] .card-title {
        color: #fff;
    }

    /* text */
    [data-bs-theme="dark"] .card-text,
    [data-bs-theme="dark"] .text-muted {
        color: rgb(125 187 143 / 94%) !important;
    }

    /* header footer */
    [data-bs-theme="dark"] .card-header,
    [data-bs-theme="dark"] .card-footer {
        background:
            rgba(255, 255, 255, .02) !important;

        border-color:
            rgba(83, 255, 163, .06) !important;

        color: #fff;
    }

    [data-bs-theme="dark"] .list-group span {
        transition: 0.3s;
        font-weight: 600;
        color: #20c55b;
    }

    [data-bs-theme="dark"] .amount-btn {
        border: 1px solid #ddd;
        padding: 8px 15px;
        border-radius: 10px;
        color: #000;
        background: #fff;
        position: relative;
        overflow: hidden;
    }

    [data-bs-theme="dark"] .form-control {

        color: var(--bs-body-color);
        color: #50d17f;
        background-color: #e6e8eb00;
        background-clip: padding-box;

    }

    [data-bs-theme="dark"] input::placeholder {
        color: #20c55a7b;

    }

    [data-bs-theme="dark"] .bonus-box,
    [data-bs-theme="dark"] .withdraw-box,
    [data-bs-theme="dark"] .security-box {
        background: #5b956d00;
        padding: 10px;
        border-radius: 10px;
    }

    [data-bs-theme="dark"] h5.mb-3 {
        color: #fff;
    }

    [data-bs-theme="dark"] .form-label {
        font-weight: 600;
        color: #ffffff;
    }

    /* =========================
   RIGHT SIDEBAR CARD
========================= */

    [data-bs-theme="dark"] .right-card {
        position: relative;

        padding: 24px;

        margin-bottom: 22px;

        border-radius: 28px;

        background:
            radial-gradient(circle at top left,
                rgba(0, 255, 120, .08),
                transparent 35%),

            linear-gradient(180deg,
                rgba(8, 40, 25, .96) 0%,
                rgba(3, 18, 11, .98) 100%);

        border: 1px solid rgba(83, 255, 163, .08);

        box-shadow:
            inset 0 0 50px rgba(0, 255, 120, .03),
            0 12px 30px rgba(0, 0, 0, .18);

        overflow: hidden;
    }

    /* hiệu ứng ánh sáng */
    [data-bs-theme="dark"] .right-card::before {
        content: "";
        position: absolute;
        inset: 0;

        background:
            linear-gradient(130deg,
                transparent 20%,
                rgba(255, 255, 255, .02) 50%,
                transparent 80%);

        pointer-events: none;
    }

    /* =========================
   TEXT
========================= */

    [data-bs-theme="dark"] .right-card h2,
    [data-bs-theme="dark"] .right-card h4,
    [data-bs-theme="dark"] .right-card h5 {
        color: #fff;
    }

    [data-bs-theme="dark"] .right-card p {
        color: rgba(230, 255, 240, .7);
    }

    [data-bs-theme="dark"] .right-card .text-muted {
        color: rgba(220, 255, 230, .45) !important;
    }

    /* =========================
   ICONS
========================= */

    [data-bs-theme="dark"] .promo-icon,
    [data-bs-theme="dark"] .support-icon {
        width: 56px;
        height: 56px;

        border-radius: 18px;

        display: flex;
        align-items: center;
        justify-content: center;

        background:
            linear-gradient(180deg,
                rgba(0, 255, 120, .10),
                rgba(0, 255, 120, .03));

        border: 1px solid rgba(83, 255, 163, .12);

        color: #7dffb0;

        font-size: 24px;

        box-shadow:
            inset 0 0 20px rgba(0, 255, 120, .03);
    }

    /* =========================
   GREEN BUTTON
========================= */

    [data-bs-theme="dark"] .btn-green {
        height: 50px;

        border: 0;

        border-radius: 18px;

        background:
            linear-gradient(180deg,
                #19bb5c 0%,
                #0b7b38 100%);

        color: #fff;

        font-size: 15px;
        font-weight: 700;

        transition: .25s;

        box-shadow:
            0 0 22px rgba(0, 255, 120, .15);
    }

    [data-bs-theme="dark"] .btn-green:hover {
        transform: translateY(-2px);

        filter: brightness(1.05);

        box-shadow:
            0 0 30px rgba(0, 255, 120, .22);
    }

    /* =========================
   JACKPOT
========================= */

    [data-bs-theme="dark"] .jackpot {
        background:
            radial-gradient(circle at top right,
                rgba(0, 255, 120, .22),
                transparent 40%),

            linear-gradient(180deg,
                #0e6b39 0%,
                #06331e 100%);

        border: 1px solid rgba(83, 255, 163, .18);
    }

    [data-bs-theme="dark"] .jackpot h2 {
        font-size: 42px;
        font-weight: 800;

        margin-bottom: 8px;

        color: #fff;

        text-shadow:
            0 0 20px rgba(255, 255, 255, .08);
    }

    [data-bs-theme="dark"] .jackpot .btn-light {
        height: 48px;

        border: 0;

        font-weight: 700;

        transition: .25s;
    }

    [data-bs-theme="dark"] .jackpot .btn-light:hover {
        transform: translateY(-2px);
    }

    [data-bs-theme="dark"] .jackpot-glow {
        position: absolute;

        width: 240px;
        height: 240px;

        right: -80px;
        top: -80px;

        border-radius: 50%;

        background:
            radial-gradient(circle,
                rgba(255, 255, 255, .18),
                transparent 70%);
    }

    /* =========================
   WINNER SLIDER
========================= */

    [data-bs-theme="dark"] .winner-slider {
        overflow: hidden;
        position: relative;
    }

    [data-bs-theme="dark"] .winner-track {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    /* item */
    [data-bs-theme="dark"] .winner-item {
        display: flex;
        align-items: center;
        justify-content: space-between;

        padding: 14px;

        border-radius: 20px;

        background:
            linear-gradient(180deg,
                rgba(255, 255, 255, .03),
                rgba(255, 255, 255, .01));

        border: 1px solid rgba(83, 255, 163, .06);

        transition: .25s;
    }

    [data-bs-theme="dark"] .winner-item:hover {
        transform: translateY(-2px);

        border-color: rgba(83, 255, 163, .18);

        box-shadow:
            0 0 20px rgba(0, 255, 120, .08);
    }

    /* avatar */
    [data-bs-theme="dark"] .winner-item img {
        width: 52px;
        height: 52px;

        object-fit: cover;

        border-radius: 50%;

        border: 2px solid rgba(83, 255, 163, .25);
    }

    /* name */
    [data-bs-theme="dark"] .winner-item .fw-bold {
        color: #fff;
    }

    /* game */
    [data-bs-theme="dark"] .winner-item small {
        color: rgba(220, 255, 230, .45);
    }

    /* money */
    [data-bs-theme="dark"] .winner-money {
        font-size: 22px;
        font-weight: 800;

        color: #61ff9f;

        text-shadow:
            0 0 12px rgba(0, 255, 120, .15);
    }

    /* =========================
   VIP CARD
========================= */

    [data-bs-theme="dark"] .vip-card {
        background:
            radial-gradient(circle at top right,
                rgba(255, 255, 255, .12),
                transparent 40%),

            linear-gradient(180deg,
                #0e7d42 0%,
                #06331e 100%);

        border: 1px solid rgba(83, 255, 163, .18);
    }

    [data-bs-theme="dark"] .vip-card .badge {
        padding: 8px 14px;
        border-radius: 999px;

        font-size: 12px;
        font-weight: 700;
    }

    [data-bs-theme="dark"] .vip-card .btn-light {
        height: 48px;

        border: 0;

        font-weight: 700;

        transition: .25s;
    }

    [data-bs-theme="dark"] .vip-card .btn-light:hover {
        transform: translateY(-2px);
    }

    /* =========================
   LINKS
========================= */

    [data-bs-theme="dark"] .right-card a {
        text-decoration: none;
        transition: .25s;
    }

    [data-bs-theme="dark"] .right-card a:hover {
        opacity: .8;
    }

    /* =========================
   MOBILE
========================= */

    @media(max-width:991px) {

        [data-bs-theme="dark"] .right-card {
            padding: 20px;
            border-radius: 24px;
        }

        [data-bs-theme="dark"] .jackpot h2 {
            font-size: 34px;
        }

        [data-bs-theme="dark"] .winner-money {
            font-size: 18px;
        }
    }

    [data-bs-theme="dark"] .game-list-title {
        margin-top: 12px;
        text-align: center;
        font-size: 15px;
        font-weight: 700;
        color: #ffffff;
    }

    [data-bs-theme="dark"] .game-card {
        border-radius: 24px;
        overflow: hidden;
        background: radial-gradient(circle at top left, rgba(0, 255, 120, .08), transparent 35%), radial-gradient(circle at bottom right, rgba(0, 255, 120, .06), transparent 35%), linear-gradient(180deg, #072d1b 0%, #03170e 100%);
        border: 1px solid rgba(83, 255, 163, .08);
        box-shadow: inset 0 0 60px rgba(0, 255, 120, .03), 0 10px 30px rgba(0, 0, 0, .25);
        color: #fff;
        transition: .3s;
    }

    [data-bs-theme="dark"] .category-wrapper {
        position: relative;
        padding: 25px;
        border-radius: 30px;

        background:
            radial-gradient(circle at top left,
                rgba(0, 255, 120, .08),
                transparent 35%),

            radial-gradient(circle at bottom right,
                rgba(0, 255, 120, .06),
                transparent 35%),

            linear-gradient(180deg,
                #072d1b 0%,
                #03170e 100%);

        border: 1px solid rgba(83, 255, 163, .08);

        box-shadow:
            inset 0 0 60px rgba(0, 255, 120, .03),
            0 10px 30px rgba(0, 0, 0, .25);

        overflow: hidden;
    }

    /* hiệu ứng glow */
    [data-bs-theme="dark"] .category-wrapper::before {
        content: "";
        position: absolute;
        inset: 0;

        background:
            linear-gradient(90deg,
                transparent,
                rgba(0, 255, 120, .03),
                transparent);

        pointer-events: none;
    }

    /* col bootstrap */
    [data-bs-theme="dark"] .category-wrapper .col {
        /* flex: 0 0 auto; */
        /* width: auto; */
    }

    /* item */
    [data-bs-theme="dark"] .category-item {
        /* width: 105px; */
        /* height: 110px; */
        border-radius: 24px;
        /* background:
            linear-gradient(180deg,
                rgba(11, 57, 35, .95) 0%,
                rgba(4, 28, 17, .98) 100%); */
        /* border: 1px solid rgba(83, 255, 163, .10); */
        display: flex;
        /* flex-direction: row; */
        align-items: center;
        /* justify-content: center; */
        /* gap: 12px; */
        padding: unset;
        /* cursor: pointer; */
        /* position: relative; */
        /* overflow: hidden; */
        transition: all .25s ease;
    }

    /* glow nền */
    [data-bs-theme="dark"] .category-item::before {
        /* content: ""; */
        /* position: absolute; */
        inset: 0;
        background:
            radial-gradient(circle at top,
                rgba(0, 255, 120, .15),
                transparent 70%);
        opacity: 0;
        transition: .25s;
    }

    /* hover */
    [data-bs-theme="dark"] .category-item:hover {
        transform: translateY(-4px);

        border: 1px solid rgba(83, 255, 163, .7);
        background: linear-gradient(180deg, #0f5f37 0%, #06311d 100%);
        box-shadow: 0 0 0 2px rgba(83, 255, 163, .10), 0 0 30px rgba(0, 255, 120, .15), inset 0 0 35px rgba(0, 255, 120, .08);
    }

    [data-bs-theme="dark"] .category-item:hover::before {
        opacity: 1;
    }

    /* active */
    [data-bs-theme="dark"] .category-item.active {
        border: 1px solid rgba(83, 255, 163, .7);

        background:
            linear-gradient(180deg,
                #0f5f37 0%,
                #06311d 100%);

        box-shadow:
            0 0 0 2px rgba(83, 255, 163, .10),
            0 0 30px rgba(0, 255, 120, .15),
            inset 0 0 35px rgba(0, 255, 120, .08);
    }

    /* icon */
    [data-bs-theme="dark"] .category-icon {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        /* display: flex; */
        align-items: center;
        justify-content: center;
        background: unset;
        /* border: 1px solid rgba(83, 255, 163, .10); */
        /* color: #7dffb0; */
        gap: unset;
        font-size: 20px;
        transition: .25s;
    }

    /* active icon */
    [data-bs-theme="dark"] .category-item.active .category-icon {
        /* background:
            linear-gradient(180deg,
                #11a84f 0%,
                #0a6b32 100%); */
        color: #fff;
        /* box-shadow:
            0 0 18px rgba(0, 255, 120, .25); */
    }

    /* text */
    [data-bs-theme="dark"] .category-name {
        font-size: 13px;
        font-weight: 500;
        width: 69px;
        color: #f1fff6;
        text-align: center;
        line-height: 1.2;
    }

    /* mobile */
    @media(max-width:768px) {

        [data-bs-theme="dark"] .category-wrapper {
            overflow-x: auto;
            padding: 18px;
        }

        [data-bs-theme="dark"] .category-wrapper .row {
            flex-wrap: nowrap;
        }

        [data-bs-theme="dark"] .category-item {
            width: 90px;
            height: 95px;
        }

        [data-bs-theme="dark"] .category-icon {
            width: 42px;
            height: 42px;
            font-size: 18px;
        }

        [data-bs-theme="dark"] .category-name {
            font-size: 12px;
        }
    }

    /* =========================
   THEME TOGGLE BUTTON
========================= */

    .theme-toggle {
        width: 52px;
        height: 52px;

        border-radius: 18px !important;

        border: 1px solid rgba(83, 255, 163, .12) !important;

        margin-right: 30px;

        background:
            linear-gradient(180deg,
                rgba(0, 255, 120, .08),
                rgba(0, 255, 120, .02)) !important;

        color: #7dffb0 !important;

        font-size: 20px;

        transition: .25s;

        box-shadow:
            inset 0 0 20px rgba(0, 255, 120, .03);
    }

    /* hover */
    .theme-toggle:hover {
        transform: translateY(-2px);

        border-color: rgba(83, 255, 163, .35) !important;

        box-shadow:
            0 0 20px rgba(0, 255, 120, .12),
            inset 0 0 25px rgba(0, 255, 120, .05);

        color: #fff !important;
    }

    /* light mode */
    [data-bs-theme="light"] .theme-toggle {
        background:
            linear-gradient(180deg,
                rgba(255, 255, 255, .95),
                rgba(240, 240, 240, .95)) !important;

        color: #222 !important;

        border: 1px solid rgba(0, 0, 0, .08) !important;

        box-shadow:
            0 10px 25px rgba(0, 0, 0, .08);
    }
    button.btn.btn-outline-success.dang-nhap.js_data-ajax
 {
    font-size: 13px;
    background: linear-gradient(45deg, #dfcb3d, #ff962a) !important;
}
.custom-swal-gifcode {
    width: 520px !important;
    padding: 0 !important;
    background: url(https://cdn.vj88.quest/images/gift-code/banner-giftcode-pc_1024_80.webp) center center / cover no-repeat !important;
    border-radius: 24px !important;
    overflow: hidden;

}
/* TITLE */
.custom-swal-gifcode .swal2-title{
    margin-top: -14px;
    font-size:42px !important;
    font-weight:900 !important;
    text-transform:uppercase;
    background:linear-gradient(90deg,#FFF176 0%,#FFFEF0 100%);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* CONTENT */
.custom-swal-gifcode .swal2-html-container{
    margin:0 !important;
    padding: 310px 35px 35px !important;
}

/* INPUT */
.gift-input-wrap{
    position:relative;
    margin-bottom:14px;
}

.gift-input {
    width: 100%;
    height: 52px;
    border: none;
    color: #7ad659;
    outline: none;
    border-radius: 14px;
    padding: 0 75px 0 15px;
    background: #fff;
    font-size: 15px;
}

.gift-paste{
    position:absolute;

    top:50%;
    right:15px;

    transform:translateY(-50%);

    font-size:14px;
    font-weight:700;

    color:#28a745;

    cursor:pointer;
}

/* GUIDE */
.gift-guide{
    display:inline-block;


    font-size:14px;

    margin-bottom:22px;
}

/* BUTTON */
.custom-swal-gifcode .swal2-confirm{
    width:100% !important;

    height:52px !important;

    border:none !important;

    border-radius:14px !important;

    background:linear-gradient(180deg,#8ee36a 0%,#43b02a 100%) !important;

    font-size:18px !important;
    font-weight:700 !important;

    text-transform:uppercase;

    margin:0 !important;

    box-shadow:none !important;
}

/* ACTION */
.custom-swal-gifcode .swal2-actions{
    width:100% !important;

    margin:0 !important;

    padding:0 35px 35px !important;
}

/* CLOSE */
.custom-swal-gifcode .swal2-close{
    color:#fff !important;
}
     .sidebar{
    position:fixed;
    top:0;
    left:0;

    width:298px;
    height:100vh;

    background:#f5f5f5;

    overflow-y:auto;
    overflow-x:hidden;

    padding-bottom:20px;

    z-index:999;

    -webkit-overflow-scrolling:touch;
}

/* scroll đẹp */
.sidebar::-webkit-scrollbar{
    width:4px;
}

.sidebar::-webkit-scrollbar-thumb{
    background:#7ad957;
    border-radius:20px;
}

/* SUPPORT */
.sidebar-bottom-support{
    position:sticky;
    bottom:0;

    width:100%;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;

    padding:12px;

    background:#f5f5f5;

    border-top:1px solid #ddd;

    z-index:20;
}
    .sidebar-menu {
        padding: 12px;
        background: #f5f5f5;
    }

    /* BOX */
    .sidebar-group {
        background: #f6f4e9;
        border: 1px solid #cfd7c2;
        border-radius: 14px;
        overflow: hidden;
        margin-bottom: 18px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, .05);
    }

    /* TITLE */
    .sidebar-group-title {
        height: 46px;
        display: flex;
        align-items: center;
        padding: 0 14px;
        font-size: 14px;
        font-weight: 700;
        color: #1b1b1b;
        background: linear-gradient(180deg, #8ee36a 0%, #63c63d 100%);
        border-bottom: 1px solid #5aaa37;
    }

    /* icon trái */
    .sidebar-group-title::before {
        content: "🚀";
        font-size: 18px;
        margin-right: 8px;
    }

    /* icon mũi tên phải */
    .sidebar-group-title::after {
        content: "⌃";
        font-size: 16px;
    }

    /* GRID */
    .sidebar-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px 10px;
        padding: 16px 10px;
    }

    /* ITEM */
    .menu-card {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: .25s;
        border-radius: 12px;
        padding: 4px;
    }

    /* hover */
    .menu-card:hover {
        transform: translateY(-2px);
    }

    /* ICON */
    .menu-card i {
        width: 54px;
        height: 54px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 28px;

        color: #fff;

        background: linear-gradient(180deg, #72db4c 0%, #3fa91e 100%);
        box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    }

    /* TEXT */
    .menu-card span {
        margin-top: 8px;
        font-size: 9px;
        font-weight: 500;
        color: #333;
        text-align: center;
        line-height: 1.3;
    }

    /* HOT BADGE */
    .menu-card.hot::after {
        content: "HOT";
        position: absolute;
        top: 0;
        right: 10px;
        background: #ff3152;
        color: #fff;
        font-size: 9px;
        font-weight: 700;
        padding: 2px 6px;
        border-radius: 20px;
    }

    /* NEW BADGE */
    .menu-card.new::after {
        content: "NEW";
        position: absolute;
        top: 0;
        right: 10px;
        background: #4caf50;
        color: #fff;
        font-size: 9px;
        font-weight: 700;
        padding: 2px 6px;
        border-radius: 20px;
    }

    /* ===== BOTTOM SUPPORT ===== */

   

    /* ITEM */
    .support-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 6px;

        padding: 10px 6px;

        border-radius: 14px;

        text-decoration: none;

        transition: .25s;

        background: #f6f4e9;
        border: 1px solid #cfd7c2;
    }

    /* HOVER */
    .support-item:hover {
        background: #e9f7df;
        transform: translateY(-2px);
    }

    /* ICON */
    .support-icon {
        width: 48px;
        height: 48px;

        border-radius: 50%;

        display: flex;
        align-items: center;
        justify-content: center;

        background: linear-gradient(180deg, #8ee36a 0%, #4caf50 100%);

        box-shadow: 0 4px 10px rgba(0, 0, 0, .12);
    }

    .support-icon img {
        width: 24px;
        height: 24px;
        object-fit: contain;
    }

    /* TEXT */
    .support-item span {
        font-size: 13px;
        font-weight: 600;
        color: #333;
        text-align: center;
        line-height: 1.3;
    }
 /* ===== BOX ===== */
    .promo-box {
        background: #f7f3df;
        border: 1px solid #d7d1b6;
        border-radius: 16px;
        overflow: hidden;
        margin-bottom: 20px;

        box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
    }

    /* ===== HEADER ===== */
    .promo-header {
        display: flex;
        align-items: center;
        justify-content: space-between;

        padding: 12px 14px;

        background: linear-gradient(180deg, #9be76d 0%, #6ecf45 100%);

        border-bottom: 1px solid #5eb33a;

        cursor: pointer;
    }

    .promo-title {
        display: flex;
        align-items: center;
        gap: 8px;

        font-size: 18px;
        font-weight: 700;
        color: #222;
    }

    .promo-title img {
        width: 24px;
        height: 24px;
        object-fit: contain;
    }

    .promo-arrow {
        font-size: 18px;
        color: #222;
        transition: .3s;
    }

    /* ===== BODY ===== */
    .promo-body {
        padding: 12px 10px;
    }

    /* ===== GRID ===== */
    .promo-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    /* ===== ITEM ===== */
    .promo-item {
        position: relative;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 6px;

        min-height: 82px;

        border-radius: 12px;

        text-decoration: none;

        transition: .25s;
    }

    .promo-item:hover {
        background: #ecf8e5;
        transform: translateY(-2px);
    }

    /* ===== ICON ===== */
    .promo-item img {
        width: 42px;
        height: 42px;
        object-fit: contain;
    }

    /* ===== TEXT ===== */
    .promo-item span {
        font-size: 13px;
        font-weight: 600;
        color: #333;
        text-align: center;
        line-height: 1.3;
    }

    /* ===== BADGE ===== */
    .promo-badge {
        position: absolute;
        top: -2px;
        right: 2px;

        background: linear-gradient(180deg, #ff4d4d 0%, #d60000 100%);

        color: #fff;

        font-size: 9px;
        font-weight: 700;

        padding: 2px 6px;

        border-radius: 20px;

        box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
    }
    .sidebar{
    overflow-y:auto;
    scrollbar-width:none; /* Firefox */
    -ms-overflow-style:none; /* IE, Edge cũ */
}

/* Chrome, Edge, Safari */
.sidebar::-webkit-scrollbar{
    width:0;
    height:0;
    display:none;
}
.dark-logo{
    display: none;
}
[data-bs-theme="dark"] .light-logo{
    display: none;
}
[data-bs-theme="dark"] .dark-logo{
    display: block;
}

    @media(max-width:786px) {
.custom-swal-gifcode .swal2-html-container
 {
    margin: 0 !important;
    padding: 229px 35px 35px !important;
}
.custom-swal-gifcode .swal2-title {
    margin-top: -17px;
    font-size: 31px !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    background: linear-gradient(90deg, #FFF176 0%, #FFFEF0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
    }
.custom-popupchao {
    background: #00000000;
}
/* Popup chính */
.custom-popupvip{
    width: 720px !important;
    padding: 10px !important;
    overflow: hidden;
    border-radius: 26px !important;
    background: #ffffff !important;
    box-shadow: 0 25px 80px rgba(0,0,0,.25);
    border: none !important;
}

/* Nội dung */
.custom-popupvip .swal2-html-container{
    margin: 0 !important;
    padding: 35px 28px !important;
    max-height: 80vh;
    overflow-y: auto;
 
}

/* Scroll */
.custom-popupvip .swal2-html-container::-webkit-scrollbar{
    width: 6px;
}