:root {
    --page-bg: #41485c;
    --panel-bg: #282d3d;
    --panel-bg-deep: #222736;
    --panel-bg-dark: #1d2230;
    --line: #31384a;
    --line-soft: rgba(255, 255, 255, .06);
    --green: #16d979;
    --green-strong: #11c66d;
    --green-dark: #0e9a58;
    --text: #ffffff;
    --muted: #8f96ac;
    --muted-2: #a8afbf;
    --shadow: 0 18px 40px rgba(0, 0, 0, .28);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    background: var(--page-bg);
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.is-strip-hidden .download-strip {
    display: none;
}

button,
input,
a {
    font: inherit;
}

button {
    border: 0;
    color: inherit;
    background: transparent;
}

img {
    display: block;
    max-width: 100%;
}

svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

svg.filled-icon,
svg.nav-filled {
    fill: currentColor;
    stroke: none;
}

.category-glyph {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.page-wrap {
    min-height: 100vh;
}

.app-shell {
    position: relative;
    width: min(100%, 430px);
    min-height: 100vh;
    margin: 0 auto;
    background: var(--panel-bg);
    box-shadow: var(--shadow);
}



.side-menu {
    position: fixed;
    top: 0;
    left: max(0px, calc(50% - 215px));
    bottom: 0;
    z-index: 95;
    width: min(100vw, 430px);
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    color: #bec4d0;
    background: #282d3d;
    box-shadow: 20px 0 48px rgba(0, 0, 0, .42);
    pointer-events: none;
    transform: translateX(-105%);
    transition: transform .26s ease, opacity .2s ease, visibility 0s linear .26s;
    scrollbar-width: none;
}

.side-menu::-webkit-scrollbar {
    display: none;
}

.side-menu-backdrop {
    position: fixed;
    z-index: 90;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    border: 0;
    background: rgba(10, 13, 20, .64);
    backdrop-filter: blur(2px);
    cursor: pointer;
    transition: opacity .24s ease, visibility .24s ease;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open .side-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    transition-delay: 0s;
}

body.menu-open .side-menu-backdrop {
    visibility: visible;
    opacity: 1;
}

.side-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    padding: 0 18px 0 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    background: #202431;
}

.side-menu-head img {
    width: 143px;
    height: auto;
}

.side-menu-head button {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #333849;
    cursor: pointer;
}

.side-menu-head button svg {
    width: 21px;
    height: 21px;
}

.side-menu-promos {
    padding: 18px 18px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.menu-promo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.menu-promo-invite {
    width: 100%;
    height: 68px;
    background:
        radial-gradient(circle at 86% 30%, rgba(255, 255, 255, .14), transparent 34%),
        linear-gradient(105deg, #04bb17 0%, #29d34c 100%);
}

.menu-promo-invite > span:first-child {
    position: relative;
    z-index: 2;
}

.menu-promo-people {
    position: absolute;
    right: 34px;
    bottom: 13px;
    width: 64px;
    height: 43px;
}

.menu-promo-people i {
    position: absolute;
    bottom: 0;
    display: block;
    width: 32px;
    height: 30px;
    border-radius: 18px 18px 10px 10px;
    background: #2f77ff;
}

.menu-promo-people i::before {
    position: absolute;
    top: -15px;
    left: 8px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #ffd130;
    content: "";
}

.menu-promo-people i:nth-child(1) {
    left: 0;
    transform: scale(.8);
}

.menu-promo-people i:nth-child(2) {
    right: 0;
    transform: scale(.8);
}

.menu-promo-people i:nth-child(3) {
    left: 16px;
    z-index: 2;
    width: 36px;
    height: 33px;
    background: #ffd341;
}

.menu-promo-people i:nth-child(3)::before {
    left: 8px;
    width: 20px;
    height: 20px;
    background: #ffca23;
}

.menu-promo-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 13px;
}

.menu-promo-row .menu-promo {
    height: 70px;
}

.menu-promo-offer {
    justify-content: flex-start;
    padding-left: 22px;
    background:
        radial-gradient(circle at 86% 42%, rgba(255, 255, 255, .18), transparent 30%),
        linear-gradient(105deg, #1e65ed 0%, #2b86ff 100%);
}

.menu-promo-offer img {
    position: absolute;
    right: 21px;
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.menu-promo-share {
    justify-content: flex-start;
    padding-left: 48px;
    background:
        radial-gradient(circle at 86% 44%, rgba(255, 255, 255, .18), transparent 30%),
        linear-gradient(105deg, #ff5363 0%, #ff7582 100%);
}

.menu-share-icon {
    position: absolute;
    right: 26px;
    font-size: 42px;
    line-height: 1;
}

.side-menu-accordion {
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.side-menu-row {
    display: flex;
    width: 100%;
    height: 79px;
    align-items: center;
    justify-content: space-between;
    padding: 0 31px;
    color: #b9bfcc;
    font-size: 20px;
    cursor: pointer;
}

.side-menu-chevron {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    transition: transform .2s ease;
}

.side-menu-chevron svg {
    width: 18px;
    height: 18px;
    transform: rotate(90deg);
}

.side-menu-accordion.is-open .side-menu-chevron {
    transform: rotate(180deg);
}

.side-menu-submenu {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0 30px 18px;
}

.side-menu-accordion.is-open .side-menu-submenu {
    display: grid;
}

.side-menu-submenu a,
.side-menu-submenu button {
    min-height: 36px;
    padding: 0 12px;
    border-radius: 7px;
    color: #bbc1cf;
    background: #303647;
    text-decoration: none;
    font-size: 13px;
    text-align: left;
}

.side-menu-login-options {
    display: grid;
    gap: 18px;
    padding: 25px 31px 26px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.side-menu-login-options button {
    display: flex;
    align-items: center;
    gap: 17px;
    color: #bdc3d0;
    font-size: 16px;
    cursor: pointer;
}

.quick-login-icon {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    flex: 0 0 auto;
}

.wallet-login-icon {
    position: relative;
    background: #278cff;
    font-size: 13px;
}

.wallet-login-icon span {
    position: absolute;
    right: 3px;
    bottom: 4px;
    font-size: 7px;
}

.telegram-login-icon {
    background: #18a9e8;
}

.telegram-login-icon svg {
    width: 18px;
    height: 18px;
    fill: #fff;
    stroke: none;
}

.side-menu-language {
    padding: 15px 12px 28px;
}

.side-menu-language button {
    display: grid;
    width: 100%;
    height: 52px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 8px;
    color: #bbc1ce;
    background: #303546;
    font-size: 15px;
    text-align: left;
    cursor: pointer;
}

.language-icon {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 50%;
    color: #dbdde4;
    background: #8c919d;
}

.language-chevron {
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
}

.language-chevron svg {
    transform: rotate(90deg);
}

.download-strip {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    align-items: center;
    gap: 6px;
    height: 38px;
    padding: 0 6px 0 4px;
    background: #43d57a;
}

.download-close {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    color: #0e6d40;
    font-size: 22px;
    cursor: pointer;
}

.download-brand {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    overflow: hidden;
    border-radius: 4px;
    background: #157c4b;
}

.download-brand img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.download-strip p {
    overflow: hidden;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.download-action {
    min-width: 70px;
    height: 24px;
    padding: 0 8px;
    border-radius: 6px;
    color: #fff;
    background: #10be49;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 12px 12px;
    border-bottom: 1px solid var(--line-soft);
    background: var(--panel-bg-deep);
}

.site-logo img {
    width: 136px;
    height: auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-btn {
    display: inline-flex;
    min-width: 82px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 34px;
    padding: 0 18px;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.header-btn.is-primary {
    color: #fff;
    background: linear-gradient(180deg, #17d777 0%, #12c56b 100%);
}

.header-btn.is-outline {
    border: 1px solid var(--green);
    color: var(--green);
    background: transparent;
}

.header-account {
    display: inline-flex;
    max-width: 170px;
    height: 34px;
    align-items: center;
    overflow: hidden;
    padding: 0 14px;
    border: 1px solid rgba(22, 217, 121, .5);
    border-radius: 18px;
    color: var(--green);
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-header.is-dashboard {
    height: 68px;
    padding: 0 9px;
}

.site-header.is-dashboard .site-logo img {
    width: 142px;
}

.dashboard-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dashboard-deposit {
    position: relative;
    display: inline-flex;
    width: 88px;
    height: 39px;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    color: #fff;
    background: linear-gradient(180deg, #17d877 0%, #10bd66 100%);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.deposit-bonus {
    position: absolute;
    top: -10px;
    right: -6px;
    display: inline-flex;
    min-width: 34px;
    height: 18px;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    border-radius: 9px;
    color: #fff;
    background: #ff4771;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
}

.dashboard-balance {
    display: flex;
    width: 86px;
    height: 38px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0 7px;
    border-radius: 20px;
    color: #aeb5c3;
    background: #333849;
    cursor: pointer;
}

.balance-status {
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
    border: 2px solid #ff4d5f;
    border-radius: 50%;
    flex: 0 0 auto;
}

.balance-status::after {
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: #11c96d;
    content: "";
}

.balance-amount {
    padding-bottom: 1px;
    border-bottom: 1px solid #ffcb0a;
    color: #ffca05;
    font-size: 14px;
    line-height: 16px;
}

.balance-refresh {
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    color: #a8afbd;
    flex: 0 0 auto;
}

.balance-refresh svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
}

.home-main {
    padding: 12px 12px 96px;
}

.banner-slider {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.banner-track {
    position: relative;
    aspect-ratio: 393 / 118;
    background: #1d2330;
}

.banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease;
}

.banner-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    z-index: 2;
    display: flex;
    gap: 5px;
    transform: translateX(-50%);
}

.banner-dots button {
    width: 14px;
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .55);
    cursor: pointer;
}

.banner-dots button.is-active {
    width: 22px;
    background: #fff;
}

.notice-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 2px 8px;
    color: var(--muted-2);
}

.notice-text {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 6px;
    flex: 1 1 auto;
}

.notice-flag {
    flex: 0 0 auto;
    font-size: 12px;
}

.notice-static {
    color: #aeb4c1;
    font-size: 15px;
    line-height: 24px;
    white-space: nowrap;
}

.notice-row.is-dashboard-notice {
    min-height: 46px;
    padding: 8px 3px 7px;
}

.notice-row.is-dashboard-notice .notice-link {
    width: 27px;
    height: 27px;
}

.notice-marquee {
    position: relative;
    overflow: hidden;
    flex: 1 1 auto;
    white-space: nowrap;
}

.notice-marquee-text {
    display: inline-block;
    padding-left: 100%;
    animation: notice 15s linear infinite;
}

.notice-link {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border: 1px solid #d7dce6;
    border-radius: 7px;
    color: #f0f3fa;
    flex: 0 0 auto;
}

@keyframes notice {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

.search-row {
    padding-bottom: 10px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 46px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, .02);
    border-radius: 9px;
    background: #202635;
}

.search-icon {
    width: 30px;
    height: 30px;
    color: #d5d9e5;
    flex: 0 0 auto;
}

.search-box input {
    width: 100%;
    border: 0;
    outline: 0;
    color: #f6f8fd;
    background: transparent;
    font-size: 14px;
}

.search-box input::placeholder {
    color: #777f95;
}

.category-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 62px;
    gap: 16px;
    overflow-x: auto;
    padding: 10px 4px 9px;
    margin: 0 -4px 2px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
}

.category-strip::-webkit-scrollbar {
    display: none;
}

.category-item {
    display: flex;
    min-width: 62px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    scroll-snap-align: start;
    cursor: pointer;
}

.category-icon {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border-radius: 50%;
    color: #12965f;
    background: #234944;
}

.category-item.is-active .category-icon {
    color: #b9ead5;
    background: #15b873;
}

.category-icon svg {
    width: 29px;
    height: 29px;
}

.category-icon .glyph-777 {
    gap: 0;
    margin-top: 1px;
    color: currentColor;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -5px;
    transform: skew(-7deg);
}

.category-icon .glyph-777 i {
    font-style: normal;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, .08);
}

.category-icon .glyph-vs {
    gap: 0;
    font-size: 19px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -4px;
    transform: skew(-9deg);
}

.category-icon .glyph-vs i {
    font-style: normal;
}

.category-icon .glyph-horse {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 33px;
    transform: translateY(-1px) scaleX(-1);
}

.category-icon .glyph-eight {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 50%;
    color: #234944;
    background: #12965f;
    font-size: 0;
}

.category-icon .glyph-eight::after {
    display: grid;
    width: 15px;
    height: 15px;
    place-items: center;
    border-radius: 50%;
    color: #12965f;
    background: #234944;
    content: "8";
    font-size: 11px;
    font-weight: 900;
}

.category-item.is-active .category-icon .glyph-eight {
    background: #b9ead5;
}

.category-item.is-active .category-icon .glyph-eight::after {
    color: #b9ead5;
    background: #15b873;
}

.category-label {
    min-height: 18px;
    color: #737787;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    white-space: normal;
}

.category-item.is-active .category-label {
    color: #15b873;
}

.game-section {
    padding-top: 10px;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 4px 10px 10px;
}

.section-title-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title-wrap h2 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .01em;
}

.section-title-icon {
    width: 18px;
    height: 18px;
    color: #f3a531;
    flex: 0 0 auto;
}

#section-slot .section-title-icon,
#section-cards .section-title-icon,
#section-fishing .section-title-icon,
#section-live .section-title-icon,
#section-sports .section-title-icon,
#section-esports .section-title-icon,
#section-lottery .section-title-icon {
    color: #f0f2f8;
}

.section-head-actions {
    display: flex;
    align-items: center;
    gap: 7px;
}

.all-pill {
    min-width: 56px;
    height: 26px;
    border: 1px solid #b9bece;
    border-radius: 999px;
    color: #eef1f8;
    font-size: 13px;
}

.icon-arrow {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    color: #a8afbf;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.dashboard-view .game-grid {
    padding: 0 6px;
}

.dashboard-view .home-main {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
}

.game-card {
    min-width: 0;
}

.game-art {
    position: relative;
    aspect-ratio: 1 / 1.34;
    overflow: hidden;
    border-radius: 15px;
    background: linear-gradient(180deg, #36405a 0%, #1d2433 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .03);
}

.game-art.is-placeholder {
    background:
        radial-gradient(circle at 30% 24%, rgba(255, 255, 255, .14), transparent 28%),
        linear-gradient(180deg, #3c4660 0%, #202636 100%);
}

.game-art > img,
.placeholder-art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.game-art > img {
    object-fit: cover;
}

.placeholder-art {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #e9edf7;
    text-align: center;
}

.placeholder-art span {
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    font-size: 14px;
    font-weight: 800;
}

.placeholder-art small {
    color: #c7cedc;
    font-size: 10px;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.provider-pill {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    max-width: calc(100% - 44px);
    height: 18px;
    padding: 0 6px;
    border-radius: 10px;
    color: #fff;
    background: rgba(22, 25, 35, .58);
    backdrop-filter: blur(6px);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.card-badge {
    position: absolute;
    top: 7px;
    right: 7px;
    z-index: 3;
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    color: #eceff7;
    background: rgba(202, 206, 218, .66);
    font-size: 11px;
}

.card-badge.is-plus {
    color: #e8fbf0;
    background: rgba(92, 205, 154, .82);
}

.game-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 54%;
    background: linear-gradient(180deg, rgba(20, 24, 34, 0) 0%, rgba(17, 20, 29, .82) 78%, rgba(17, 20, 29, .96) 100%);
}

.game-copy {
    position: absolute;
    right: 8px;
    bottom: 9px;
    left: 8px;
    z-index: 2;
}

.game-copy h3 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #fff;
    font-size: 13px;
    line-height: 1.1;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .45);
}

.site-footer {
    padding: 16px 12px 6px;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 22px;
    padding-top: 2px;
}

.footer-column h3,
.license-copy {
    color: #969db0;
    font-size: 12px;
    font-weight: 500;
}

.footer-column ul {
    list-style: none;
    margin-top: 10px;
}

.footer-column li + li {
    margin-top: 8px;
}

.footer-column a {
    color: #dee2ed;
    text-decoration: none;
    font-size: 12px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 34px;
}

.age-badge {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border: 4px solid #ffffff;
    border-radius: 50%;
    color: #ff3a56;
    background: #fff;
    font-size: 22px;
    font-weight: 800;
    box-shadow: inset 0 0 0 4px #ff6d82;
}

.age-badge span {
    font-size: 18px;
}

.top-button-wrap {
    display: flex;
    justify-content: center;
    padding: 20px 0 6px;
}

.top-button {
    min-width: 58px;
    height: 24px;
    border: 1px solid var(--green);
    border-radius: 999px;
    color: #f4f8ff;
    background: rgba(16, 23, 33, .32);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.bottom-nav {
    position: fixed;
    left: 50%;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: min(100%, 430px);
    height: calc(75px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid rgba(255, 255, 255, .025);
    background: #212430;
    transform: translateX(-50%);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2px;
    padding-top: 9px;
    color: #f4f4f5;
    text-decoration: none;
    cursor: pointer;
}

.bottom-nav-icon {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    color: #bdbec1;
}

.bottom-nav-icon svg {
    width: 27px;
    height: 27px;
}

.more-bars {
    display: flex;
    width: 23px;
    height: 23px;
    flex-direction: column;
    justify-content: space-between;
    padding: 2px 0;
}

.more-bars i {
    display: block;
    width: 23px;
    height: 3px;
    border-radius: 3px;
    background: currentColor;
}

.bottom-nav-item span:last-child {
    color: #f3f3f4;
    font-size: 15px;
    line-height: 18px;
}

.bottom-nav-item.is-active,
.bottom-nav-item.is-active .bottom-nav-icon,
.bottom-nav-item.is-active span:last-child {
    color: #0ab76b;
}

.bottom-nav.is-dashboard-nav .bottom-nav-item {
    padding-top: 10px;
}

.bottom-nav.is-dashboard-nav .bottom-nav-icon {
    width: 30px;
    height: 30px;
}

.nav-finance-icon {
    position: relative;
}

.nav-bonus {
    position: absolute;
    top: -8px;
    right: -13px;
    display: inline-flex;
    min-width: 34px;
    height: 17px;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border-radius: 9px;
    color: #fff !important;
    background: #ff4771;
    font-size: 9px !important;
    font-weight: 800;
    line-height: 1;
}

.is-hidden {
    display: none !important;
}

@media (max-width: 430px) {
    .side-menu {
        left: 0;
    }

    .bottom-nav.is-dashboard-nav {
        height: calc(97px + env(safe-area-inset-bottom));
        padding-bottom: calc(22px + env(safe-area-inset-bottom));
    }
}

@media (max-width: 370px) {
    .header-actions {
        gap: 8px;
    }

    .header-btn {
        min-width: 74px;
        padding: 0 14px;
    }

    .game-grid {
        gap: 12px;
    }

    .footer-columns {
        gap: 16px;
    }
}

@media (min-width: 431px) {
    .app-shell {
        border-left: 1px solid rgba(255, 255, 255, .02);
        border-right: 1px solid rgba(0, 0, 0, .12);
    }
}
