:root {
    --yg-bg: #f8f2e6;
    --yg-surface: #fffdf7;
    --yg-surface-soft: #fff6e8;
    --yg-border: #f1d8b3;
    --yg-text: #4f3925;
    --yg-subtext: #8b6b4a;
    --yg-primary: #e6863b;
    --yg-primary-dark: #c9681f;
    --yg-secondary: #f0b75f;
    --yg-success: #6aa86f;
    --yg-shadow: 0 10px 30px rgba(167, 106, 47, 0.14);
    --yg-radius-lg: 18px;
    --yg-radius-md: 12px;
    --yg-btn-glow: rgba(255, 205, 120, 0.55);
    --yg-btn-depth: rgba(123, 73, 30, 0.28);
}

html,
body {
    background: radial-gradient(circle at 15% 10%, #fff7e8 0%, #f8f2e6 52%, #f4ecdc 100%);
    color: var(--yg-text);
    font-family: "Noto Sans", "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.58;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.title-box-tip,
.txt-title,
.title-event-recommended {
    font-family: "Baloo 2", "Noto Sans", sans-serif;
    letter-spacing: 0.2px;
}

a {
    color: #2f78c7;
}

a:hover {
    color: #1f5e9f;
}

.nav-bottom a,
.nav-bottom a:hover {
    color: inherit;
    text-decoration: none;
}

.wrapper {
    min-height: 100vh;
    padding-bottom: 92px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1045;
}

.yulgang-navbar {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% -20%, rgba(255, 255, 255, 0.72), transparent 55%),
        radial-gradient(circle at 82% 130%, rgba(255, 199, 117, 0.38), transparent 58%),
        linear-gradient(135deg, #fff9ef 0%, #ffe9c6 42%, #ffd8a8 100%);
    border-top: 1px solid #f7dfb4;
    border-bottom: 1px solid #eabf86;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        inset 0 -1px 0 rgba(168, 105, 49, 0.16),
        0 8px 20px rgba(180, 116, 57, 0.16);
}

.yulgang-navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0) 45%),
        repeating-linear-gradient(
            120deg,
            rgba(255, 243, 220, 0.18) 0 10px,
            rgba(255, 236, 206, 0.08) 10px 20px
        );
    opacity: 0.7;
}

.yulgang-navbar .container {
    position: relative;
    z-index: 1;
}

.yulgang-navbar .navbar-brand img {
    height: 44px;
    width: auto;
}

.yg-user-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 244, 227, 0.96));
    border: 1px solid #f2cf9d;
    border-radius: 999px;
    padding: 6px 12px;
    color: var(--yg-text);
    text-decoration: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 4px 10px rgba(170, 110, 55, 0.16);
}

.yg-user-chip .material-icons {
    font-size: 20px;
    color: #9b703e;
}

.yg-balance {
    color: #d67b1f;
    font-weight: 700;
}

.yg-balance-wrap {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.yg-coin {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.yg-user-inline {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.yg-user-icon {
    font-size: 17px;
    color: #8d5f2f;
}

.offcanvas.yg-offcanvas {
    background: linear-gradient(180deg, #fff9ef, #ffeed5);
}

.offcanvas.yg-offcanvas .nav-link {
    border-radius: 10px;
    padding: 10px 12px;
    color: var(--yg-text);
    font-weight: 600;
}

.offcanvas.yg-offcanvas .nav-link:hover,
.offcanvas.yg-offcanvas .nav-link.active {
    background: rgba(230, 134, 59, 0.16);
    color: var(--yg-primary-dark);
}

.btn-yulgang {
    border: 0;
    background: linear-gradient(135deg, var(--yg-primary), var(--yg-secondary));
    color: #fff;
    border-radius: 999px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.46),
        0 3px 0 var(--yg-btn-depth),
        0 8px 16px rgba(211, 128, 54, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-yulgang::before,
.btn-yulgang-outline::before,
.btn-handler::before,
.btn-form a::before,
.btn-form button::before,
.btn-submit::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 2px;
    height: 46%;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0));
    pointer-events: none;
    opacity: 0.72;
}

.btn-yulgang:hover,
.btn-yulgang:focus {
    transform: translateY(-2px);
    color: #fff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.52),
        0 3px 0 var(--yg-btn-depth),
        0 12px 22px rgba(211, 128, 54, 0.34),
        0 0 14px var(--yg-btn-glow);
    filter: brightness(1.03);
}

.btn-yulgang-outline {
    border-radius: 999px;
    border: 1px solid var(--yg-primary);
    color: var(--yg-primary-dark);
    background: linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(255, 241, 220, 0.98));
    font-weight: 700;
    position: relative;
    overflow: hidden;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 2px 0 rgba(168, 105, 49, 0.2);
}

.btn-yulgang-outline:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--yg-primary), var(--yg-secondary));
    border-color: transparent;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.45),
        0 3px 0 var(--yg-btn-depth),
        0 10px 18px rgba(211, 128, 54, 0.3),
        0 0 12px var(--yg-btn-glow);
}

.btn,
button,
.btn-handler,
.btn-action a {
    border-radius: 12px;
}

.form-control,
.form-select,
input[type="text"],
input[type="number"],
input[type="password"],
input[type="email"],
textarea,
select {
    border: 1px solid #e7cda6;
    border-radius: 12px;
    min-height: 44px;
    background: #fffefb;
    color: var(--yg-text);
}

.form-control:focus,
.form-select:focus,
input:focus,
select:focus,
textarea:focus {
    border-color: #efb05d;
    box-shadow: 0 0 0 0.2rem rgba(230, 134, 59, 0.2);
}

.table {
    --bs-table-bg: transparent;
    --bs-table-color: var(--yg-text);
}

.table > :not(caption) > * > * {
    border-bottom-color: #f3dfc0;
}

.table thead th {
    background: linear-gradient(135deg, #ffd79c 0%, #ffc071 100%);
    color: #6b451e;
    border-color: #f4c787;
}

.table-hover > tbody > tr:hover > * {
    background: #fff2dd;
}

.card,
.bg-white,
.list-event-recommended,
.main-info-account,
.list-game-giftcode,
.list-giftcode-gd,
.content-change-gift,
.info-game-gd,
.main-content {
    border-radius: var(--yg-radius-lg) !important;
    border: 1px solid var(--yg-border);
    background: linear-gradient(180deg, #fffdf9, #fff8ee) !important;
    box-shadow: var(--yg-shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.title-box-tip,
.txt-title,
.title-event-recommended {
    color: #7d4e20 !important;
}

.main-event-recommended .item-er,
.list-game .item-game,
.item-gc-hot a,
.item-news,
.list-news {
    background: #fffdf8;
    border: 1px solid #f1dfc1;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(160, 105, 56, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.main-event-recommended .item-er:hover,
.list-game .item-game:hover,
.item-gc-hot a:hover,
.item-news:hover,
.list-news:hover,
.page-lichsudoixu .rn-card.select:hover,
.page-lichsudoixu .rn-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(167, 106, 47, 0.2);
}

.bg-thumb-game,
.thumb-change-gift,
.thumb-img {
    border-radius: 14px;
}

.err-msg {
    background: #fff1e7;
    border: 1px solid #f2c4a7;
    border-radius: 10px;
    padding: 8px 10px;
}

.nav-bottom {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    background: rgba(255, 252, 247, 0.96);
    border-top: 1px solid #f1d7b0;
    backdrop-filter: blur(6px);
}

.link-nav-bottom {
    max-width: 900px;
    margin: 0 auto;
}

.item-nav-bottom {
    color: #9b896f;
    text-decoration: none;
    min-height: 74px;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.item-nav-bottom .icon-nav-bottom {
    color: #b19b7c;
}

.item-nav-bottom .icon-nav-bottom i {
    font-size: 1.3rem;
    line-height: 1;
}

.item-nav-bottom.active,
.item-nav-bottom:hover {
    color: #7b4d22;
    background: #fff1dc;
}

.item-nav-bottom.active .icon-nav-bottom,
.item-nav-bottom:hover .icon-nav-bottom {
    color: #e6863b;
}

.item-nav-bottom,
.item-nav-bottom .txt-nav-bottom,
.item-nav-bottom .icon-nav-bottom,
.item-nav-bottom .icon-nav-bottom i {
    color: #adadad !important;
}

.item-nav-bottom.active,
.item-nav-bottom.active .txt-nav-bottom,
.item-nav-bottom.active .icon-nav-bottom,
.item-nav-bottom.active .icon-nav-bottom i,
.item-nav-bottom:hover,
.item-nav-bottom:hover .txt-nav-bottom,
.item-nav-bottom:hover .icon-nav-bottom,
.item-nav-bottom:hover .icon-nav-bottom i {
    color: #7b4d22 !important;
}

.item-nav-bottom.active .icon-nav-bottom i,
.item-nav-bottom:hover .icon-nav-bottom i {
    color: #e6863b !important;
}

.txt-nav-bottom {
    font-size: 1rem;
    font-weight: 700;
}

/* Footer nav: force đồng bộ visual mới, không cho CSS cũ đè */
.yulgang-footer .link-nav-bottom {
    max-width: 920px;
    padding: 8px 10px;
    border: 1px solid #f1d7b0;
    border-radius: 18px;
    background: #fffaf2 !important;
}

.yulgang-footer .item-nav-bottom {
    width: 20%;
    padding: 8px 4px;
    margin: 0;
    min-height: 78px;
    border-radius: 12px;
    color: #9f8a6c !important;
}

.yulgang-footer .item-nav-bottom .icon-nav-bottom {
    background: #ece6dd !important;
    color: #a99378 !important;
}

.yulgang-footer .item-nav-bottom .icon-nav-bottom i {
    color: inherit !important;
}

.yulgang-footer .item-nav-bottom .txt-nav-bottom {
    color: #a99378 !important;
}

.yulgang-footer .item-nav-bottom.active,
.yulgang-footer .item-nav-bottom:hover {
    background: #fff1dc !important;
}

.yulgang-footer .item-nav-bottom.active .icon-nav-bottom,
.yulgang-footer .item-nav-bottom:hover .icon-nav-bottom {
    background: #ffd7a5 !important;
    color: #d8812c !important;
}

.yulgang-footer .item-nav-bottom.active .txt-nav-bottom,
.yulgang-footer .item-nav-bottom:hover .txt-nav-bottom {
    color: #7b4d22 !important;
}

.slide-banner .list-slide-banner img {
    border-radius: 20px;
}

.container,
.container-fluid {
    position: relative;
    z-index: 2;
}

.box-space-top {
    height: 12px;
}

.login-page {
    max-width: 640px;
    margin: 88px auto 20px;
    border-radius: 20px;
    border: 1px solid var(--yg-border);
    box-shadow: var(--yg-shadow);
    padding: 20px 16px;
    background: linear-gradient(180deg, #fffdf9, #fff8ee) !important;
}

.page-shell {
    max-width: 1180px;
    margin: 0 auto;
    padding-top: 18px;
    padding-bottom: 22px;
}

.page-home .slide-banner .container,
.page-home .list-event-recommended .container,
.page-home .main-page .container {
    max-width: 1080px;
}

.page-home .list-event-recommended {
    padding: 16px 14px 18px;
}

.page-home .main-event-recommended .item-er {
    overflow: hidden;
}

.page-home .main-page .list-game {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 14px;
}

.page-home .item-game .info-bottom-game {
    padding: 12px;
}

.page-account .account-panel {
    max-width: 920px;
    margin-inline: auto;
    padding: 10px 6px;
}

.page-account .info-user-ac {
    padding-top: 14px;
}

.page-account .list-info-user .item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px dashed #ebd5b2;
    padding-top: 12px;
    padding-bottom: 12px;
}

.page-account .list-info-user .item-row:last-child {
    border-bottom: 0;
}

.page-doixu .list-game-giftcode,
.page-giftcode .list-game-giftcode,
.page-doixu .main-giftcode-detail,
.page-giftcode .main-giftcode-detail,
.page-game .main-giftcode-detail,
.page-detail .main-giftcode-detail,
.page-news .list-event-recommended {
    max-width: 980px;
    margin-inline: auto;
}

.page-doixu .list-link-game-gd,
.page-giftcode .list-link-game-gd,
.page-game .list-link-game-gd,
.page-detail .list-link-game-gd {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(95px, 1fr));
    gap: 8px;
}

.page-doixu .form-gift,
.page-giftcode .form-gift {
    padding: 14px 12px;
}

.page-doixu .input-gift,
.page-giftcode .input-gift {
    width: 100%;
}

.page-doixu .container1 .checkmark,
.page-giftcode .container1 .checkmark {
    border-radius: 14px;
    border: 1px solid #efce9c;
    background: #fffaf1;
}

.page-game .info-top-change-gift,
.page-detail .info-top-change-gift {
    padding: 16px;
}

.page-game .info-top-change-gift .width-box,
.page-detail .info-top-change-gift .width-box {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.page-game .content-change-gift,
.page-detail .content-change-gift {
    padding: 16px 14px;
}

.page-news .news-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.page-news .list-news {
    width: 100%;
    border: 0;
    padding: 6px 0;
    background: transparent;
    box-shadow: none;
}

.page-news .list-news .item-news {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
}

.page-news .list-news .item-news .title-news {
    color: #6f4a25 !important;
}

.page-news .pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}

.page-news .pagination > li > a,
.page-news .pagination > li > span {
    float: none;
    border-radius: 8px;
}

.page-news .news-bar {
    background: transparent !important;
}

.page-news .tablink {
    border-radius: 999px !important;
    padding: 8px 14px !important;
    font-weight: 700 !important;
    background: #fff7ea !important;
    border: 1px solid #efce9c !important;
    color: #77512a !important;
}

.page-news .tablink.btn-active {
    background: linear-gradient(135deg, var(--yg-primary), var(--yg-secondary)) !important;
    border-color: transparent !important;
    color: #fff !important;
}

.page-news .pagination > li > a,
.page-news .pagination > li > span {
    color: #77512a !important;
    background: #fff9f1 !important;
    border: 1px solid #ebd0a8 !important;
}

.page-news .pagination > li.active > a,
.page-news .pagination > li.active > span {
    color: #fff !important;
    background: linear-gradient(135deg, var(--yg-primary), var(--yg-secondary)) !important;
    border-color: transparent !important;
}

.page-bxh .bxh-wrap,
.page-nhanvat .nv-wrap {
    border: 1px solid #efd5ae;
    border-radius: 18px;
    background: linear-gradient(180deg, #fffdf9, #fff6ea);
    box-shadow: var(--yg-shadow);
    padding: 14px;
}

.page-bxh .bxh-title,
.page-nhanvat .nv-title {
    color: #6f4520;
    margin-bottom: 12px;
}

.page-bxh .bxh-filter,
.page-bxh .bxh-table-wrap,
.page-bxh .bxh-detail,
.page-nhanvat .nv-toolbar,
.page-nhanvat .nv-table-wrap,
.page-nhanvat .nv-detail-page {
    border: 1px solid #efd9b8;
    border-radius: 14px;
    background: #fffdf8;
    padding: 12px;
    margin-bottom: 12px;
}

.page-nhanvat .nv-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.page-auth .login-page {
    margin-top: 20px;
}

.page-lichsu .history-shell,
.page-lichsudoixu .history-shell {
    margin-top: 20px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #efd5ae;
    border-radius: 18px;
    background: linear-gradient(180deg, #fffdf9, #fff6ea) !important;
    box-shadow: var(--yg-shadow);
    padding: 16px 14px;
}

.page-lichsu #myInput,
.page-lichsudoixu #myInput {
    width: 100%;
    font-size: 15px;
    padding: 12px 14px 12px 44px;
    border-radius: 16px;
    border: 1px solid #e7cda6;
    background: #fff url('https://www.w3schools.com/css/searchicon.png') no-repeat 14px 50%;
    box-shadow: 0 8px 24px rgba(167, 106, 47, 0.12);
    outline: none;
}

.page-lichsu #myInput:focus,
.page-lichsudoixu #myInput:focus {
    border-color: #efb05d;
    box-shadow: 0 0 0 0.2rem rgba(230, 134, 59, 0.2);
}

.page-lichsu #myTable,
.page-lichsudoixu #myTable {
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #efd5ae;
    border-radius: 12px;
    overflow: hidden;
    background: #fffdf8;
}

.page-lichsu #myTable th,
.page-lichsu #myTable td,
.page-lichsudoixu #myTable th,
.page-lichsudoixu #myTable td {
    text-align: center;
    padding: 10px;
    border-bottom: 1px solid #f2dfc3;
}

.page-lichsu #myTable tr.header1,
.page-lichsudoixu #myTable tr.header1 {
    background: linear-gradient(135deg, #ffd79c 0%, #ffc071 100%);
}

.page-lichsu #myTable tr:hover,
.page-lichsudoixu #myTable tr:hover {
    background: #fff2dd;
}

.page-lichsu .pagination,
.page-lichsudoixu .pagination {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin: 18px 0 6px;
}

.page-lichsu .pagination > li,
.page-lichsudoixu .pagination > li {
    display: inline-block;
}

.page-lichsu .pagination > li > a,
.page-lichsu .pagination > li > span,
.page-lichsudoixu .pagination > li > a,
.page-lichsudoixu .pagination > li > span {
    border-radius: 8px;
    padding: 6px 12px;
    color: #77512a;
    text-decoration: none;
    background: #fff9f1;
    border: 1px solid #ebd0a8;
}

.page-lichsu .pagination > .active > a,
.page-lichsu .pagination > .active > span,
.page-lichsudoixu .pagination > .active > a,
.page-lichsudoixu .pagination > .active > span {
    color: #fff;
    background: linear-gradient(135deg, var(--yg-primary), var(--yg-secondary));
    border-color: transparent;
}

.page-lichsudoixu .rn-header {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 12px 0 14px;
}

.page-lichsudoixu .rn-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.page-lichsudoixu .rn-card.select {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border: 1px solid #efd9b8;
    border-radius: 12px;
    background: #fffdf8;
}

.page-lichsudoixu .rn-label {
    font-size: 13px;
    font-weight: 700;
    color: #6f4520;
    white-space: nowrap;
}

.page-lichsudoixu .rn-select {
    min-width: 220px;
    height: 40px;
    padding: 0 12px;
    border-radius: 12px;
    border: 1px solid #e7cda6;
    background: #fffefb;
    color: var(--yg-text);
}

.page-lichsudoixu .rn-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.page-lichsudoixu .rn-tile {
    min-width: 165px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid #efd9b8;
    background: #fffdf8;
}

.page-lichsudoixu .rn-tile .tlabel {
    font-size: 12px;
    font-weight: 700;
    color: #8b6b4a;
}

.page-lichsudoixu .rn-tile .tvalue {
    margin-top: 6px;
    font-size: 18px;
    font-weight: 800;
    color: #6f4520;
}

.page-lichsudoixu .rn-tile .tvalue.green {
    color: #3f8e45;
}

.page-lichsudoixu .rn-tile .tvalue.red {
    color: #d8614d;
}

.page-lichsudoixu .rn-tile .tsub {
    margin-top: 4px;
    font-size: 12px;
    color: #9a8161;
}

.page-lichsudoixu .vip-icon img {
    width: 42px;
    height: 42px;
    display: block;
    filter: drop-shadow(0 6px 12px rgba(167, 106, 47, 0.2));
}

.main-info-account,
.main-giftcode-detail,
.list-game-giftcode,
.list-giftcode-gd,
.info-game-gd,
.content-change-gift {
    margin-top: 1rem !important;
}

.page-main .slide-banner,
.page-main .list-event-recommended,
.page-main .main-page {
    margin-top: 18px !important;
}

.btn-form .btn-handler,
.btn-form a {
    min-height: 44px;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-handler {
    background: linear-gradient(135deg, var(--yg-primary), var(--yg-secondary)) !important;
    border: 0 !important;
    color: #fff !important;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.46),
        0 3px 0 var(--yg-btn-depth),
        0 8px 16px rgba(211, 128, 54, 0.26);
}

.btn-handler:hover {
    filter: brightness(1.03);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.52),
        0 3px 0 var(--yg-btn-depth),
        0 12px 22px rgba(211, 128, 54, 0.32),
        0 0 14px var(--yg-btn-glow);
}

.btn-submit,
.btn-form a,
.btn-form button {
    position: relative;
    overflow: hidden;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.42),
        0 2px 0 rgba(128, 84, 39, 0.22);
}

.btn-submit:hover,
.btn-form a:hover,
.btn-form button:hover {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 3px 0 rgba(128, 84, 39, 0.24),
        0 10px 18px rgba(211, 128, 54, 0.26),
        0 0 12px var(--yg-btn-glow);
}

.modal,
.popup {
    z-index: 2000;
}

@media (max-width: 991.98px) {
    .wrapper {
        padding-bottom: 86px;
    }

    .yulgang-navbar .navbar-brand img {
        height: 38px;
    }

    body {
        font-size: 16px;
    }

    .main-info-account,
    .list-game-giftcode,
    .content-change-gift,
    .info-game-gd {
        margin-top: 1rem !important;
    }

    .page-game .info-top-change-gift .width-box,
    .page-detail .info-top-change-gift .width-box {
        grid-template-columns: 1fr;
    }

    .page-home .main-page .list-game {
        grid-template-columns: 1fr;
    }

    .page-account .list-info-user .item-row {
        flex-direction: column;
        align-items: flex-start;
    }
}
