/* ============================================================
   BETXMEN — Desktop Casino UI
   Deep navy + electric cyan primary · orange-gold accents
   ============================================================ */

:root {
    --cr-bg: #040a17;
    --cr-bg2: #0a1528;
    --cr-bg3: #0d1b33;
    --cr-bg4: #122240;
    --cr-blue: #00b4ff;
    --cr-blue-dark: #0088cc;
    --cr-blue-light: #4dcfff;
    --cr-gold: #ff9f1a;
    --cr-gold-light: #ffc04d;
    --cr-gold-dark: #e08800;
    --cr-text: #ffffff;
    --cr-muted: #8b9bb4;
    --cr-border: rgba(0, 180, 255, 0.25);
    --cr-glow: 0 0 20px rgba(0, 180, 255, 0.35);
    --cr-black: #04101f;
    --cr-w: 100%;
    --cr-pad: 12px;
    --cr-home-hero-h: 680px;
    --cr-game-hero-h: 560px;
    --font-sans: 'Inter', 'Montserrat', system-ui, -apple-system, sans-serif;
    --font-logo: 'Montserrat', 'Inter', system-ui, sans-serif;
    --radius: 8px;
    --radius-sm: 6px;
    --header-h: 64px;
    --nav-h: 52px;
    --cr-header-bg: #051539;
    --cr-nav-bg: #0b2553;
}

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

html { font-size: 14.5px; }
html, body { min-width: 0; width: 100%; }

body.page-desktop {
    font-family: var(--font-sans);
    background-color: var(--cr-bg);
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(0, 180, 255, 0.08), transparent 55%),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(0, 136, 204, 0.04), transparent 50%),
        url('../imgi_119_bg.webp');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-attachment: fixed;
    color: var(--cr-text);
    overflow-x: hidden;
    font-size: .92rem;
    position: relative;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

body.page-cratos::before { display: none !important; }

a { color: var(--cr-blue); text-decoration: none; transition: color .18s; }
a:hover { color: var(--cr-blue-light); }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
[hidden] { display: none !important; }

/* ---- Media load transitions ---- */
.cr-media-wrap {
    position: relative;
    isolation: isolate;
    background: var(--cr-bg2);
}
.cr-media-wrap::before,
.cr-media-wrap::after {
    content: "";
    position: absolute;
    pointer-events: none;
    transition: opacity .35s ease;
    z-index: 3;
}
.cr-media-wrap::before {
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 10, 23, .9), rgba(10, 21, 40, .75));
}
.cr-media-wrap::after {
    left: 50%; top: 50%;
    width: 22px; height: 22px;
    margin-left: -11px; margin-top: -11px;
    border-radius: 50%;
    border: 2px solid rgba(0, 180, 255, .28);
    border-top-color: var(--cr-blue);
    animation: crMediaSpin .75s linear infinite;
}
.cr-media-wrap.cr-media-loaded::before,
.cr-media-wrap.cr-media-loaded::after { opacity: 0; }
.cr-media-img {
    opacity: 0;
    transform: scale(1.012);
    transition: opacity .42s ease, transform .55s ease;
}
.cr-media-wrap.cr-media-loaded .cr-media-img {
    opacity: 1;
    transform: scale(1);
}
@keyframes crMediaSpin { to { transform: rotate(360deg); } }
@keyframes crSpin { to { transform: rotate(360deg); } }

/* ---- Layout ---- */
.cr-container {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding-left: var(--cr-pad);
    padding-right: var(--cr-pad);
    box-sizing: border-box;
}
.cr-lion-bg { display: none !important; }
.cr-page-wrap { position: relative; z-index: 1; min-height: 100vh; width: 100%; }
.cr-main { position: relative; z-index: 1; background: transparent; padding-bottom: 8px; width: 100%; }

/* ============================================================
   TOPBAR
   ============================================================ */
.cr-topbar {
    background: transparent;
    border-bottom: none;
    overflow: hidden;
    padding: 0;
}
.cr-topbar__track {
    overflow: hidden;
    width: 100%;
    max-width: none;
    margin: 0;
    background: var(--cr-bg2);
    border: 1px solid var(--cr-border);
    border-bottom: none;
    border-radius: 0;
}
.cr-topbar__content {
    display: flex;
    width: max-content;
    animation: crTopbarScroll 28s linear infinite;
}
.cr-topbar__content span {
    flex-shrink: 0;
    padding: 5px 40px 5px 16px;
    font-size: .65rem;
    color: var(--cr-blue-light);
    line-height: 1.4;
    white-space: nowrap;
}
.cr-topbar__content strong { color: #fff; font-weight: 700; }
@keyframes crTopbarScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================================
   HEADER — sticky navy bar (BetXmen exact layout)
   ============================================================ */
.cr-header,
.bx-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--cr-header-bg);
    background-color: #051539;
    border-bottom: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
}
.bx-topbar[hidden] { display: none !important; }
.cr-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    height: 62px;
    background: #051539;
    border: none;
    width: 100%;
    padding-left: 4px;
}
.cr-logo,
.bx-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cr-text);
    flex-shrink: 0;
    margin-right: 4px;
}
.cr-logo--image .cr-logo__img {
    display: block;
    max-height: 42px;
    width: auto;
    object-fit: contain;
}
.bx-logo__text {
    font-family: 'Montserrat', var(--font-sans);
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #e8f4ff;
    white-space: nowrap;
    text-transform: uppercase;
    background: linear-gradient(180deg, #ffffff 0%, #7ec8ff 55%, #2aa8ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(42, 168, 255, .45));
}
.bx-logo__x {
    -webkit-text-fill-color: #4dcfff;
    color: #4dcfff;
    text-shadow: 0 0 16px rgba(77, 207, 255, .8);
    filter: drop-shadow(0 0 8px rgba(77, 207, 255, .9));
}

/* Center announcement pill */
.bx-header-ticker {
    flex: 1;
    min-width: 0;
    max-width: min(560px, 40vw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 36px;
    padding: 0 16px;
    background: #0a224e;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    overflow: hidden;
}
.bx-header-ticker > i {
    flex-shrink: 0;
    color: #fff;
    font-size: .85rem;
}
.bx-header-ticker__viewport {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}
.bx-header-ticker__track {
    display: block;
    width: 100%;
}
.bx-header-ticker__text {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: .78rem;
    color: #fff;
    font-weight: 500;
}

/* Header actions */
.cr-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.cr-header__auth { display: flex; align-items: center; gap: 10px; }

.bx-header-wheel,
.bx-header-lang,
.bx-header-vip,
.bx-btn-login,
.bx-btn-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 40px;
    min-width: 0;
    padding: 0 32px;
    border-radius: 12px;
    font-size: .84rem;
    font-weight: 700;
    letter-spacing: .15px;
    white-space: nowrap;
    text-decoration: none;
    border: none;
    transition: filter .15s, transform .15s, background .15s;
}
@keyframes bx-rainbow {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}
.bx-header-wheel {
    background: linear-gradient(90deg, #ff3d3d, #ff8a3d, #ffd24a, #4dff7c, #4dcfff, #a855f7, #ff3d8f, #ff3d3d);
    background-size: 200% 100%;
    animation: bx-rainbow 3s linear infinite;
    color: #fff !important;
    box-shadow: 0 2px 14px rgba(255, 90, 18, .4), 0 0 20px rgba(77, 207, 255, .25);
    border-radius: 11px;
    padding: 0 32px;
}
.bx-header-wheel:hover { filter: brightness(1.15); color: #fff !important; }
.bx-header-wheel i,
.bx-header-wheel .bx-ico { font-size: 1rem; width: 18px; height: 18px; }

.bx-header-lang,
.bx-header-vip {
    background: #2f7cf6;
    color: #fff !important;
    padding: 0 30px;
}
.bx-header-lang:hover,
.bx-header-vip:hover { filter: brightness(1.08); color: #fff !important; }
.bx-header-vip i,
.bx-header-vip .bx-ico { color: #ffd24a; font-size: .95rem; width: 18px; height: 18px; }
.cr-header__flag {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-block;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%20100%20100%27%3E%3Crect%20width%3D%27100%27%20height%3D%27100%27%20fill%3D%27%23e30a17%27/%3E%3Ccircle%20cx%3D%2739%27%20cy%3D%2750%27%20r%3D%2730%27%20fill%3D%27white%27/%3E%3Ccircle%20cx%3D%2754%27%20cy%3D%2750%27%20r%3D%2730%27%20fill%3D%27%23e30a17%27/%3E%3Cpolygon%20points%3D%2758%2C50%2059%2C57%2067%2C57%2061%2C61%2063%2C68%2058%2C64%2053%2C68%2054%2C61%2048%2C57%2056%2C57%27%20fill%3D%27white%27/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
}

/* Language dropdown */
.bx-lang-drop {
    position: relative;
    flex-shrink: 0;
}
.bx-lang-drop__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 1200;
    min-width: 180px;
    padding: 8px 0;
    background: #121820;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .55);
}
.bx-lang-drop.is-open .bx-lang-drop__menu { display: block; }
.bx-lang-drop__menu[hidden] { display: none !important; }
.bx-lang-drop__item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 16px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: .86rem;
    font-weight: 600;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: background .15s;
}
.bx-lang-drop__item:hover,
.bx-lang-drop__item.is-active {
    background: rgba(47, 124, 246, .18);
}
.bx-lang-drop__flag {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 0 0 1px rgba(255,255,255,.12);
}
.bx-lang-drop__flag--tr { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 16'%3E%3Crect width='24' height='16' fill='%23e30a17'/%3E%3Ccircle cx='9.5' cy='8' r='4' fill='%23fff'/%3E%3Ccircle cx='10.8' cy='8' r='3.2' fill='%23e30a17'/%3E%3Cpolygon points='13.2,8 15.4,8.7 13.8,6.9 13.8,9.1 15.4,7.3' fill='%23fff'/%3E%3C/svg%3E"); }
.bx-lang-drop__flag--en { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 16'%3E%3Crect width='24' height='16' fill='%23012169'/%3E%3Cpath d='M0 0 L24 16 M24 0 L0 16' stroke='%23fff' stroke-width='2.4'/%3E%3Cpath d='M0 0 L24 16 M24 0 L0 16' stroke='%23C8102E' stroke-width='1.2'/%3E%3Cpath d='M12 0 V16 M0 8 H24' stroke='%23fff' stroke-width='4'/%3E%3Cpath d='M12 0 V16 M0 8 H24' stroke='%23C8102E' stroke-width='2'/%3E%3C/svg%3E"); }
.bx-lang-drop__flag--de { background-image: linear-gradient(#000 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66%); }
.bx-lang-drop__flag--fr { background-image: linear-gradient(90deg, #002395 33.33%, #fff 33.33% 66.66%, #ed2939 66.66%); }
.bx-lang-drop__flag--es { background-image: linear-gradient(#c60b1e 25%, #ffc400 25% 75%, #c60b1e 75%); }
.bx-lang-drop__flag--ru { background-image: linear-gradient(#fff 33.33%, #0039a6 33.33% 66.66%, #d52b1e 66.66%); }
.bx-lang-drop__flag--ka { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 16'%3E%3Crect width='24' height='16' fill='%23fff'/%3E%3Cpath d='M10.5 0 h3 v16 h-3z M0 6.5 h24 v3 h-24z' fill='%23ff0000'/%3E%3C/svg%3E"); }
.bx-lang-drop__flag--ar { background-image: linear-gradient(#006c35, #006c35); }
.bx-lang-drop__flag--he { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 16'%3E%3Crect width='24' height='16' fill='%23fff'/%3E%3Crect y='1.5' width='24' height='2' fill='%230038a8'/%3E%3Crect y='12.5' width='24' height='2' fill='%230038a8'/%3E%3Cpolygon points='12,5.2 12.7,7.2 14.8,7.2 13.1,8.4 13.8,10.4 12,9.2 10.2,10.4 10.9,8.4 9.2,7.2 11.3,7.2' fill='%230038a8'/%3E%3C/svg%3E"); }
.bx-lang-drop__flag--fa { background-image: linear-gradient(#239f40 33.33%, #fff 33.33% 66.66%, #da0000 66.66%); }

.bx-btn-login {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .55);
    color: #fff !important;
    border-radius: 12px;
    padding: 0 32px;
}
.bx-btn-register {
    background: #2f7cf6;
    color: #fff !important;
    border-radius: 12px;
    padding: 0 34px;
}
.bx-btn-login:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff !important;
}
.bx-btn-register:hover { filter: brightness(1.08); color: #fff !important; }

.cr-header__sep { display: none; }
.cr-header__pill { display: none; }

.cr-header__balance-box {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 40px;
    padding: 0 12px;
    background: #0a1628;
    border: 1px solid rgba(47, 124, 246, .35);
    border-radius: 10px;
}
.cr-header__actions .cr-btn--sm {
    height: 40px;
    padding: 0 20px;
    font-size: .84rem;
    border-radius: 12px;
}
.cr-balance { color: #fff; font-weight: 700; font-size: .88rem; }
.cr-header__refresh {
    background: none; border: none; color: #4dcfff; padding: 2px;
}
.cr-header-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.15);
    background: transparent;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/* Profile dropdown */
.cr-profile-drop {
    position: relative;
    margin-left: 4px;
}
.cr-header-avatar {
    position: relative;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 2px solid #2f7cf6;
    background: #0a1628;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: .2s;
}
.cr-header-avatar:hover {
    border-color: var(--cr-blue);
    box-shadow: var(--cr-glow);
}
.cr-header-avatar__dot {
    position: absolute;
    right: 2px; bottom: 2px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--cr-blue);
    border: 2px solid var(--cr-bg);
    box-shadow: 0 0 6px rgba(0, 180, 255, .6);
}
.cr-profile-drop__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 260px;
    background: var(--cr-bg2);
    border: 1px solid var(--cr-border);
    border-radius: 10px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .55), var(--cr-glow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: .18s ease;
    z-index: 1200;
    overflow: hidden;
    pointer-events: none;
}
.cr-profile-drop:hover .cr-profile-drop__menu,
.cr-profile-drop.is-open .cr-profile-drop__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.cr-profile-drop__user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 14px;
    border-bottom: 1px solid rgba(0, 180, 255, .15);
}
.cr-profile-drop__avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--cr-bg4);
    border: 1px solid var(--cr-border);
    color: var(--cr-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}
.cr-profile-drop__user strong {
    display: block;
    color: var(--cr-blue-light);
    font-size: .9rem;
    font-weight: 700;
}
.cr-profile-drop__user small {
    color: var(--cr-muted);
    font-size: .72rem;
}
.cr-profile-drop__list {
    padding: 6px 0;
    border-bottom: 1px solid rgba(0, 180, 255, .12);
}
.cr-profile-drop__item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 11px 16px;
    border: none;
    background: transparent;
    color: #e8eef8;
    font-size: .82rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: background .15s;
}
.cr-profile-drop__item:hover { background: rgba(0, 180, 255, .08); }
.cr-profile-drop__item i {
    width: 18px;
    text-align: center;
    color: var(--cr-muted);
    font-size: .9rem;
}
.cr-profile-drop__item--gold,
.cr-profile-drop__item--gold i { color: var(--cr-blue-light); }
.cr-profile-drop__lang {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(0, 180, 255, .12);
    color: var(--cr-muted);
    font-size: .78rem;
}
.cr-profile-drop__lang-box {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    background: var(--cr-bg3);
    border: 1px solid var(--cr-border);
    color: #fff;
    font-size: .72rem;
}
.cr-profile-drop__lang-box .fa-chevron-down { font-size: .55rem; color: var(--cr-muted); }
.cr-profile-drop__logout {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    border: none;
    background: transparent;
    color: var(--cr-muted);
    font-size: .82rem;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: .15s;
}
.cr-profile-drop__logout:hover {
    color: #ff8a8a;
    background: rgba(255, 80, 80, .06);
}
.cr-profile-drop__logout i { width: 18px; text-align: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.cr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: .72rem;
    border: none;
    letter-spacing: .4px;
    transition: .2s;
    height: 32px;
    white-space: nowrap;
}
.cr-btn--gold {
    background: linear-gradient(180deg, #4dcfff, #00b4ff);
    color: #04101f;
    box-shadow: 0 0 14px rgba(0, 180, 255, .3);
}
.cr-btn--gold:hover {
    filter: brightness(1.1);
    box-shadow: 0 0 22px rgba(0, 180, 255, .5);
    color: #04101f;
}
.cr-btn--orange {
    background: linear-gradient(180deg, var(--cr-gold-light), var(--cr-gold));
    color: #1a0e00;
    box-shadow: 0 0 14px rgba(255, 159, 26, .35);
}
.cr-btn--orange:hover {
    filter: brightness(1.08);
    box-shadow: 0 0 20px rgba(255, 159, 26, .5);
    color: #1a0e00;
}
.cr-btn--outline {
    background: transparent;
    border: 1px solid var(--cr-blue);
    color: var(--cr-blue);
}
.cr-btn--outline:hover {
    background: rgba(0, 180, 255, .1);
    box-shadow: var(--cr-glow);
    color: var(--cr-blue-light);
}
.cr-btn--sm { padding: 6px 14px; font-size: .68rem; height: 30px; }
.cr-btn--block { width: 100%; height: 42px; font-size: .85rem; }

/* ============================================================
   MAIN NAV — BetXmen colored icons
   ============================================================ */
.cr-main-nav,
.bx-main-nav {
    background: var(--cr-nav-bg);
    background-color: #0b2553;
    border-bottom: 1px solid rgba(255,255,255,.06);
    border-top: none;
    position: sticky;
    top: 62px;
    z-index: 900;
    margin: 0;
    padding: 0;
}
.cr-main-nav__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    gap: 14px;
    background: #0b2553;
    border: none;
    padding: 0 8px;
    overflow-x: auto;
    width: 100%;
}
.cr-main-nav__item,
.bx-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    height: 100%;
    color: #fff;
    font-size: .92rem;
    font-weight: 600;
    letter-spacing: .2px;
    border-bottom: 2px solid transparent;
    transition: .15s;
    white-space: nowrap;
    text-decoration: none;
}
.cr-main-nav__item:hover,
.cr-main-nav__item.active {
    color: #fff;
    border-bottom-color: #2f7cf6;
    background: rgba(47, 124, 246, .08);
}
.bx-nav-icon {
    font-size: 1.05rem;
    width: 1em;
    text-align: center;
}
.bx-nav-icon--white { color: #fff; }
.bx-nav-icon--orange { color: #ff7a1a; }
.bx-nav-icon--purple { color: #a855f7; }
.bx-nav-icon--red { color: #ef4444; }
.bx-nav-icon--pink { color: #ec4899; }
.bx-nav-icon--silver { color: #c0c7d2; }
.bx-nav-icon--teal { color: #2dd4bf; }
.bx-nav-icon--gold { color: #fbbf24; }
.bx-nav-icon--green { color: #22c55e; }
.cr-main-nav__item.active .bx-nav-icon { filter: brightness(1.15); }
.bx-ico {
    display: inline-block;
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
    vertical-align: middle;
}
.bx-nav-ico { width: 19px; height: 19px; }
.bx-header-ico { width: 16px; height: 16px; }
.cr-main-nav__bonus { display: none; }

/* ============================================================
   HOME — Hero
   ============================================================ */
.cr-home-d { background: transparent; }
.cr-hero-d {
    background: transparent;
    padding: 0 0 12px;
    margin: 0;
}
.cr-hero-d .cr-container {
    padding-left: 8px;
    padding-right: 8px;
    max-width: none;
}
.cr-hero-d__frame {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--cr-border);
    box-shadow: var(--cr-glow);
}
.cr-hero-d .cr-hero-swiper,
.cr-hero-d .swiper-slide { height: var(--cr-home-hero-h); }
.cr-hero-d .swiper-slide img {
    width: 100%;
    height: var(--cr-home-hero-h);
    object-fit: cover;
    display: block;
}
.cr-hero-d .swiper-pagination { bottom: 14px !important; }
.swiper-pagination-bullet {
    background: var(--cr-blue) !important;
    opacity: .35 !important;
    width: 9px !important;
    height: 9px !important;
    transition: .2s;
}
.swiper-pagination-bullet-active {
    opacity: 1 !important;
    box-shadow: 0 0 10px rgba(0, 180, 255, .6);
}
.cr-hero-d__fallback img {
    width: 100%;
    height: var(--cr-home-hero-h);
    object-fit: cover;
    display: block;
}

/* ============================================================
   QUICK ACTIONS
   ============================================================ */
.cr-quick-d { padding: 12px 0 24px; background: transparent; }
.cr-quick-d .cr-container { display: flex; flex-direction: column; gap: 12px; }
.cr-quick-d__banner {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--cr-border);
}
.cr-quick-d__banner img { width: 100%; height: auto; display: block; object-fit: cover; }
.cr-quick-d__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 100%;
}
.cr-quick-d__card {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--cr-border);
    background: var(--cr-bg2);
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.cr-quick-d__card:hover {
    border-color: var(--cr-blue);
    box-shadow: var(--cr-glow);
    transform: translateY(-2px);
}
.cr-quick-d__card img { width: 100%; height: auto; display: block; }

/* BetXmen quick tiles (slider altı midbuttonlar) */
.bx-quick { padding: 8px 0 20px; }
.bx-quick .cr-container { padding-left: 8px; padding-right: 8px; }
.bx-quick__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}
@media (max-width: 1200px) {
    .bx-quick__grid { grid-template-columns: repeat(4, 1fr); }
}
.bx-quick-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 12px;
    background: linear-gradient(180deg, var(--cr-bg3), var(--cr-bg2));
    border: 1px solid var(--cr-border);
    border-radius: var(--radius);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: .2s;
    text-decoration: none;
    font-family: inherit;
}
.bx-quick-tile:hover {
    border-color: var(--cr-blue);
    box-shadow: var(--cr-glow);
    transform: translateY(-2px);
    color: #fff;
}
.bx-quick-tile--img {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 12px;
}
.bx-quick-tile--img:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 4px 20px rgba(0, 180, 255, .25);
}
.bx-quick-tile__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}
.bx-quick-tile__icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 255, .12);
    border: 1px solid var(--cr-border);
    color: var(--cr-blue);
    font-size: 1.25rem;
}
.bx-quick-tile__label {
    letter-spacing: .04em;
    font-size: .72rem;
    text-transform: uppercase;
    color: #dce8f5;
}

/* Günün en sevilen bahisleri (desktop) */
.bx-d-picks { padding: 0 0 24px; }
.bx-d-picks .cr-container { padding-left: 8px; padding-right: 8px; }
.bx-d-picks__box {
    border-radius: 0;
    overflow: visible;
    background: transparent;
    border: none;
}
.bx-d-picks__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px;
    background: linear-gradient(90deg, #1a4f9c, #1e5cb0);
    color: #fff;
    border-radius: 12px;
}
.bx-d-picks__head-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.bx-d-picks__head-left i { font-size: 1rem; opacity: .95; flex-shrink: 0; }
.bx-d-picks__head h2 {
    margin: 0;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.bx-d-picks__nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.bx-d-picks__arrow {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 8px;
    background: rgba(0, 0, 0, .25);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    transition: background .2s;
    font-family: inherit;
}
.bx-d-picks__arrow:hover { background: rgba(0, 0, 0, .45); }
.bx-d-picks__body {
    padding: 14px 0 0;
    background: transparent;
}
.bx-d-picks__sports {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}
.bx-d-picks__sport {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border: none;
    border-radius: 999px;
    background: #0a0a0a;
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .04em;
    cursor: pointer;
    font-family: inherit;
}
.bx-d-picks__sport i { font-size: 1.1rem; }
.bx-d-picks__sport.is-active {
    background: #f0f0f0;
    color: #111;
}
.bx-d-picks__sport.is-active i { color: #111 !important; }
.bx-d-picks__sport:not(.is-active) span { display: none; }
.bx-d-picks__carousel { overflow: hidden; }
.bx-d-picks__track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 2px;
}
.bx-d-picks__track::-webkit-scrollbar { display: none; }
.bx-d-pick {
    flex: 0 0 calc((100% - 54px) / 4);
    min-width: 220px;
    display: block;
    border-radius: 14px;
    background: #292929;
    text-decoration: none !important;
    color: inherit;
    overflow: hidden;
}
.bx-d-pick__league {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 14px 8px;
    background: #292929;
    color: #9aa3b5;
    font-size: .82rem;
    font-weight: 600;
    line-height: 1.3;
}
.bx-d-pick__flag {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #333;
}
.bx-d-pick__flag--emoji {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    background: transparent;
}
.bx-d-pick__teams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 8px;
    padding: 18px 14px 20px;
}
.bx-d-pick__team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    min-width: 0;
}
.bx-d-pick__logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0d1422;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 800;
    color: #fff;
}
.bx-d-pick__name {
    font-size: .86rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    word-break: break-word;
}
.bx-d-pick__meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 4px;
}
.bx-d-pick__time {
    font-size: 1.18rem;
    font-weight: 800;
    color: #fff;
}
.bx-d-pick__date {
    font-size: .78rem;
    color: #9aa3b5;
    font-weight: 600;
}
.bx-d-pick__odds {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #0a0a0a;
}
.bx-d-pick__odd {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 6px;
    border-right: 1px solid #2a2a2a;
}
.bx-d-pick__odd:last-child { border-right: none; }
.bx-d-pick__odd-label {
    color: #9aa3b5;
    font-size: .82rem;
    font-weight: 600;
}
.bx-d-pick__odd-val {
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
}
@media (max-width: 1200px) {
    .bx-d-pick { flex: 0 0 calc((100% - 36px) / 3); min-width: 200px; }
}
@media (max-width: 900px) {
    .bx-d-pick { flex: 0 0 calc((100% - 18px) / 2); min-width: 180px; }
}

/* Popüler slot / canlı casino oyunları (desktop) */
.bx-d-games {
    padding: 0 0 16px;
    background: transparent;
}
.bx-d-games .cr-container {
    padding-left: 8px;
    padding-right: 8px;
    max-width: none;
}
.bx-d-games__head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 18px;
    margin-bottom: 10px;
    background: #0b2553;
    color: #fff;
    border-radius: 0;
    min-height: 56px;
}
.bx-d-games__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .14);
    font-size: .88rem;
    flex-shrink: 0;
}
.bx-d-games__head h2 {
    margin: 0;
    font-size: .88rem;
    font-weight: 800;
    letter-spacing: .04em;
    line-height: 1.25;
    text-transform: uppercase;
}
.bx-d-games__layout {
    display: grid;
    grid-template-columns: minmax(340px, 2.15fr) repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, 132px);
    gap: 10px;
    align-items: stretch;
}
.bx-d-games__featured {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    background: transparent;
    text-decoration: none !important;
    line-height: 0;
    min-height: 0;
    height: 100%;
}
.bx-d-games__featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}
.bx-d-games__card {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    background: transparent;
    text-decoration: none !important;
    line-height: 0;
    min-height: 0;
    height: 100%;
    transition: none;
}
.bx-d-games__card:hover {
    transform: none;
    box-shadow: none;
    filter: brightness(1.06);
}
.bx-d-games__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}
@media (max-width: 1200px) {
    .bx-d-games__layout {
        grid-template-columns: minmax(300px, 2fr) repeat(4, minmax(0, 1fr));
        grid-template-rows: repeat(2, 118px);
        gap: 10px;
    }
}
@media (max-width: 1100px) {
    .bx-d-games__layout {
        grid-template-columns: minmax(260px, 1.85fr) repeat(4, minmax(0, 1fr));
        grid-template-rows: repeat(2, 108px);
        gap: 10px;
    }
}
@media (max-width: 900px) {
    .bx-d-games__layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
        gap: 8px;
    }
    .bx-d-games__featured {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 16 / 10;
    }
    .bx-d-games__card {
        aspect-ratio: 16 / 10;
    }
    .bx-d-games__featured img,
    .bx-d-games__card img {
        object-fit: contain;
    }
}

/* ============================================================
   GAME SECTIONS
   ============================================================ */
.bx-section-title,
.cr-games-d__title {
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #fff;
    margin-bottom: 14px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}
.bx-section-title::before,
.cr-games-d__title::before {
    content: '';
    width: 3px;
    height: 1em;
    background: linear-gradient(180deg, var(--cr-blue-light), var(--cr-blue));
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(0, 180, 255, .5);
}

.cr-games-d { padding: 20px 0 28px; background: transparent; }
.cr-games-d--live { background: transparent; border-top: none; }
.cr-games-d__layout {
    --banner-w: 176px;
    display: grid;
    grid-template-columns: var(--banner-w) 1fr;
    gap: 10px;
    align-items: stretch;
}
.cr-games-d--slot .cr-games-d__layout { --feat-h: calc(var(--banner-w) * 672 / 482); }
.cr-games-d--live .cr-games-d__layout { --feat-h: calc(var(--banner-w) * 827 / 424); }
.cr-games-d__featured {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--cr-border);
    transition: .2s;
    width: var(--banner-w);
    height: var(--feat-h);
}
.cr-games-d__featured:hover {
    border-color: var(--cr-blue);
    box-shadow: var(--cr-glow);
}
.cr-games-d__featured img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.cr-games-d__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: var(--feat-h);
    min-height: 0;
}
.cr-games-d__tile {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(0, 180, 255, .12);
    cursor: pointer;
    min-height: 0;
    height: 100%;
    transition: .2s;
    background: var(--cr-bg2);
}
.cr-games-d__tile:hover {
    border-color: var(--cr-blue);
    transform: scale(1.03);
    z-index: 2;
    box-shadow: var(--cr-glow);
}
.cr-games-d__tile img { width: 100%; height: 100%; object-fit: cover; }
.cr-games-d__tile-hover {
    position: absolute;
    inset: 0;
    background: rgba(4, 10, 23, .72);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cr-blue-light);
    font-weight: 700;
    font-size: .7rem;
    letter-spacing: .5px;
    opacity: 0;
    transition: .2s;
}
.cr-games-d__tile:hover .cr-games-d__tile-hover { opacity: 1; }

/* Chars row */
.cr-games-d--live .cr-chars-d__row,
.cr-chars-d__row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    width: 100%;
    margin-top: 32px;
}
.cr-chars-d__item {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--cr-border);
    transition: .2s;
    display: block;
    background: var(--cr-bg2);
}
.cr-chars-d__item:hover {
    border-color: var(--cr-blue);
    transform: translateY(-3px);
    box-shadow: var(--cr-glow);
}
.cr-chars-d__item img { width: 100%; height: auto; display: block; }

/* Bottom category nav */
.cr-bottom-cats,
.bx-bottom-bar {
    background: var(--cr-bg2);
    border-top: 1px solid var(--cr-border);
    border-bottom: 1px solid var(--cr-border);
    padding: 16px 0 18px;
    margin-top: 8px;
}
.cr-bottom-cats__inner {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}
.cr-bottom-cats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--cr-muted);
    font-size: .72rem;
    font-weight: 600;
    transition: .2s;
}
.cr-bottom-cats__item i {
    font-size: 1.1rem;
    color: var(--cr-blue);
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 180, 255, .08);
    border: 1px solid transparent;
    transition: .2s;
}
.cr-bottom-cats__item:hover { color: #fff; }
.cr-bottom-cats__item:hover i {
    border-color: var(--cr-border);
    box-shadow: var(--cr-glow);
    color: var(--cr-blue-light);
}

/* ============================================================
   MATCH / VISION (BetXmen sports-style cards)
   ============================================================ */
.bx-match-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
    padding: 8px 0 20px;
}
.bx-match-card {
    background: var(--cr-bg2);
    border: 1px solid var(--cr-border);
    border-radius: var(--radius);
    padding: 14px 16px;
    transition: .2s;
}
.bx-match-card:hover {
    border-color: var(--cr-blue);
    box-shadow: var(--cr-glow);
}
.bx-vision {
    background: linear-gradient(135deg, var(--cr-bg3), var(--cr-bg2));
    border: 1px solid var(--cr-border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
}

/* ============================================================
   LIVE CHAT + HOME POPUP
   ============================================================ */
.cr-livechat-fab {
    position: fixed;
    bottom: 20px;
    right: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0a224e, #051539);
    border: 2px solid rgba(77, 207, 255, .55);
    box-shadow: 0 4px 20px rgba(0, 120, 255, .35);
    text-decoration: none !important;
    transition: transform .2s, filter .2s, box-shadow .2s;
}
.cr-livechat-fab:hover {
    transform: translateY(-3px);
    filter: brightness(1.08);
    box-shadow: 0 8px 28px rgba(0, 140, 255, .45);
}
.cr-livechat-fab img {
    display: block;
    height: 56px;
    width: auto;
    max-width: none;
}
body.page-desktop .bx-m-livechat__x {
    font-family: 'Montserrat', var(--font-sans);
    font-weight: 900;
    font-size: 1.5rem;
    color: #7ec8ff;
    text-shadow: 0 0 14px rgba(77, 207, 255, .95);
    line-height: 1;
}
body.page-desktop .cr-livechat-fab::after {
    content: "CANLI DESTEK";
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .03em;
    color: #4dcfff;
    white-space: nowrap;
    text-shadow: 0 0 6px rgba(0, 0, 0, .8);
}

.cr-home-popup {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.cr-home-popup[hidden] { display: none !important; }
.cr-home-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 10, 23, .82);
}
.cr-home-popup__card {
    position: relative;
    z-index: 1;
    max-width: min(520px, 90vw);
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--cr-border);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .55), var(--cr-glow);
}
.cr-home-popup__card img { display: block; width: 100%; height: auto; }
.cr-home-popup__link { display: block; }
.cr-home-popup__close {
    position: absolute;
    top: 10px; right: 10px;
    z-index: 2;
    width: 36px; height: 36px;
    border: 1px solid var(--cr-border);
    border-radius: 50%;
    background: rgba(4, 10, 23, .88);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: .2s;
}
.cr-home-popup__close:hover {
    border-color: var(--cr-blue);
    color: var(--cr-blue);
}

/* ============================================================
   FOOTER
   ============================================================ */
.cr-footer-d {
    background: #0b2553;
    border-top: 1px solid var(--cr-border);
    padding: 40px 0 0;
    margin-top: 16px;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
}
.cr-footer-d__top {
    display: flex;
    gap: 40px;
    padding-bottom: 28px;
}
.cr-footer-d__cols {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
    flex: 1;
}
.cr-footer-d__col h4 {
    font-size: .68rem;
    color: var(--cr-blue);
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: .4px;
    line-height: 1.3;
}
.cr-footer-d__col a {
    display: block;
    font-size: .7rem;
    color: var(--cr-muted);
    margin-bottom: 9px;
    transition: .2s;
}
.cr-footer-d__col a:hover { color: #fff; }
.cr-footer-d__aside { min-width: 200px; }
.bx-footer-brand {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}
.bx-footer-brand .bx-logo__x { color: var(--cr-blue); }
.bx-pay-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 16px 0;
    opacity: .7;
}
.cr-footer-d__social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.cr-footer-d__social a {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1px solid var(--cr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cr-blue);
    font-size: .8rem;
    transition: .2s;
}
.cr-footer-d__social a:hover {
    border-color: var(--cr-blue);
    background: rgba(0, 180, 255, .1);
    box-shadow: var(--cr-glow);
    color: var(--cr-blue-light);
}
.cr-footer-d__apps { display: flex; flex-direction: column; gap: 8px; }
.cr-footer-d__app {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: .7rem;
    color: #fff;
    transition: .2s;
}
.cr-footer-d__app i { font-size: 1.3rem; }
.cr-footer-d__app span { display: flex; flex-direction: column; line-height: 1.2; }
.cr-footer-d__app span small { font-size: .55rem; opacity: .8; }
.cr-footer-d__app--apple {
    background: linear-gradient(180deg, #1a6fd4, #0d4a9e);
    border: 1px solid rgba(0, 180, 255, .3);
}
.cr-footer-d__app--google {
    background: var(--cr-bg3);
    border: 1px solid var(--cr-border);
}
.cr-footer-d__app:hover { filter: brightness(1.1); color: #fff; }

.cr-footer-d__divider {
    height: 1px;
    background: rgba(0, 180, 255, .15);
    margin-bottom: 20px;
}
.cr-footer-d__legal p {
    font-size: .62rem;
    color: var(--cr-muted);
    line-height: 1.75;
    margin-bottom: 20px;
}
.cr-footer-d__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0 24px;
    border-top: 1px solid rgba(0, 180, 255, .12);
}
.cr-footer-d__copy {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .72rem;
    color: var(--cr-muted);
}
.cr-footer-d__age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 2px solid #22c55e;
    color: #22c55e;
    font-weight: 800;
    font-size: .65rem;
}
.cr-footer-d__lang {
    font-size: .72rem;
    color: var(--cr-muted);
    padding: 5px 12px;
    border: 1px solid var(--cr-border);
    border-radius: var(--radius-sm);
}

/* ============================================================
   MODALS
   ============================================================ */
.cr-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}
.cr-modal.open { opacity: 1; visibility: visible; }
.cr-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 10, 23, .88);
}
.cr-modal__panel {
    position: relative;
    width: 100%;
    max-width: 440px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--cr-bg2);
    border: 1px solid var(--cr-border);
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .5), var(--cr-glow);
}
.cr-modal__panel--wide { max-width: 760px; }
.cr-modal__panel--auth { padding: 0; overflow: hidden; }
.bx-auth-panel { /* alias for BetXmen auth shell */ }
.cr-modal__panel--game {
    max-width: 96vw;
    width: 96vw;
    height: 92vh;
    padding: 0;
}
.cr-modal__panel--game iframe { width: 100%; height: 100%; border: none; }

/* Auth pages (modal değil, sayfa) */
.cr-auth-page {
    padding: 48px 0 70px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
body.page-auth .cr-modal__panel {
    max-height: none;
    overflow-y: visible;
}
body.page-desktop.page-auth {
    background-color: #040a17;
    background-image:
        linear-gradient(180deg, rgba(4, 10, 23, .55) 0%, rgba(4, 10, 23, .72) 100%),
        url('../imgi_119_bg.webp');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-attachment: fixed;
}
body.page-desktop.page-auth .bx-d-footer,
body.page-desktop.page-auth .cr-footer-d {
    background: transparent;
}
body.page-desktop.page-auth .bx-d-footer__body,
body.page-desktop.page-auth .bx-d-footer__bottom {
    background: transparent;
}

/* Desktop login card — mockup */
.bx-d-login {
    padding: 56px 16px 80px;
    min-height: calc(100vh - 160px);
    align-items: center;
}
.bx-d-login__card {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    padding: 36px 40px 28px;
    border-radius: 18px;
    background: linear-gradient(180deg, #0a1e48 0%, #071636 100%);
    border: 1px solid rgba(77, 207, 255, .35);
    box-shadow:
        0 0 0 1px rgba(47, 124, 246, .12),
        0 24px 64px rgba(0, 0, 0, .55),
        0 0 40px rgba(47, 124, 246, .12);
    text-align: center;
}
.bx-d-login__head {
    margin-bottom: 22px;
}
.bx-d-login__head h1 {
    margin: 0 0 8px;
    font-size: 1.85rem;
    font-weight: 800;
    color: #4da3ff;
    letter-spacing: .01em;
}
.bx-d-login__head p {
    margin: 0;
    font-size: .92rem;
    color: #9bb0cc;
    font-weight: 500;
}
.bx-d-login__bio-wrap {
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(77, 207, 255, .22);
    background: rgba(5, 21, 57, .55);
    margin-bottom: 6px;
}
.bx-d-login__bio {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 50px;
    border: none;
    border-radius: 12px;
    background: #2f7cf6;
    color: #fff;
    font-size: .92rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(47, 124, 246, .45);
    transition: filter .15s;
}
.bx-d-login__bio:hover:not(:disabled) { filter: brightness(1.08); }
.bx-d-login__bio:disabled { opacity: .85; cursor: default; }
.bx-d-login__bio i { color: #ffd24a; font-size: 1.05rem; }
.bx-d-login__or {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 20px 0 16px;
    color: #8b9bb4;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
}
.bx-d-login__or::before,
.bx-d-login__or::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, .16);
}
.bx-d-login__form-head {
    margin: 0 0 18px;
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
}
.bx-d-login__form {
    text-align: left;
}
.bx-d-login__label {
    display: block;
    font-size: .82rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}
.bx-d-login__label em {
    color: #4dcfff;
    font-style: normal;
}
.bx-d-login__field {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #0a1224;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 12px;
    padding: 0 14px;
    margin-bottom: 16px;
    min-height: 52px;
    transition: border-color .2s, box-shadow .2s;
}
.bx-d-login__field:focus-within {
    border-color: #2f7cf6;
    box-shadow: 0 0 0 3px rgba(47, 124, 246, .18);
}
.bx-d-login__field input {
    flex: 1;
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    padding: 14px 0;
    font-size: .92rem;
    outline: none;
    font-family: inherit;
}
.bx-d-login__field input::placeholder { color: #7a8ba3; }
.bx-d-login__submit {
    width: 100%;
    height: 52px;
    margin-top: 4px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(180deg, #3b8cff 0%, #2f7cf6 100%);
    color: #fff;
    font-size: .95rem;
    font-weight: 800;
    letter-spacing: .04em;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(47, 124, 246, .4);
    transition: filter .15s;
}
.bx-d-login__submit:hover { filter: brightness(1.08); }
.bx-d-login__forgot {
    display: block;
    text-align: center;
    margin-top: 16px;
    font-size: .88rem;
    color: #c5d4e8;
    text-decoration: none;
    font-weight: 500;
}
.bx-d-login__forgot:hover { color: #fff; }
.bx-d-login__switch {
    margin: 22px 0 0;
    text-align: center;
    font-size: .88rem;
    color: #9bb0cc;
}
.bx-d-login__switch a {
    color: #4da3ff;
    font-weight: 800;
    text-decoration: none;
    margin-left: 4px;
}
.bx-d-login__switch a:hover { color: #7ec0ff; }

/* Desktop register — mockup */
.bx-d-register {
    padding: 40px 16px 70px;
    min-height: calc(100vh - 160px);
    align-items: flex-start;
}
.bx-d-register__card {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    padding: 32px 36px 28px;
    border-radius: 18px;
    background: linear-gradient(180deg, #0a1e48 0%, #071636 100%);
    border: 1px solid rgba(77, 207, 255, .35);
    box-shadow:
        0 0 0 1px rgba(47, 124, 246, .12),
        0 24px 64px rgba(0, 0, 0, .55),
        0 0 40px rgba(47, 124, 246, .12);
}
.bx-d-register__head {
    text-align: center;
    margin-bottom: 24px;
}
.bx-d-register__head h1 {
    margin: 0 0 8px;
    font-size: 1.75rem;
    font-weight: 800;
    color: #4da3ff;
    letter-spacing: .01em;
}
.bx-d-register__head p {
    margin: 0;
    font-size: .9rem;
    color: #9bb0cc;
    font-weight: 500;
}
.bx-d-register__panel {
    border: 1px solid rgba(77, 207, 255, .28);
    border-radius: 14px;
    padding: 18px 18px 8px;
    margin-bottom: 16px;
    background: rgba(5, 21, 57, .35);
}
.bx-d-register__section {
    margin: 0 0 16px;
    font-size: .95rem;
    font-weight: 800;
    color: #4da3ff;
    letter-spacing: .02em;
}
.bx-d-register__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
}
.bx-d-register__label {
    display: block;
    font-size: .8rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 7px;
}
.bx-d-register__label em {
    color: #4dcfff;
    font-style: normal;
}
.bx-d-register__field {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #0a1224;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 12px;
    padding: 0 14px;
    margin-bottom: 14px;
    min-height: 48px;
    transition: border-color .2s, box-shadow .2s;
}
.bx-d-register__field:focus-within {
    border-color: #2f7cf6;
    box-shadow: 0 0 0 3px rgba(47, 124, 246, .18);
}
.bx-d-register__field input,
.bx-d-register__field select {
    flex: 1;
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    padding: 12px 0;
    font-size: .9rem;
    outline: none;
    font-family: inherit;
    appearance: none;
}
.bx-d-register__field select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239bb0cc' d='M2.5 4.5L6 8l3.5-3.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 2px center;
    padding-right: 18px;
}
.bx-d-register__field select option {
    background: #071428;
    color: #fff;
}
.bx-d-register__field input::placeholder { color: #7a8ba3; }
.bx-d-register__birth {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 0;
}
.bx-d-register__field--phone {
    padding-left: 0;
    overflow: hidden;
}
.bx-d-register__prefix {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 48px;
    padding: 0 14px;
    background: #1a4f9c;
    color: #fff;
    font-size: .88rem;
    font-weight: 800;
    border-right: 1px solid rgba(255, 255, 255, .12);
}
.bx-d-register__field--phone input {
    padding-left: 12px;
}
.bx-d-register__submit {
    width: 100%;
    height: 52px;
    margin-top: 8px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(180deg, #3b8cff 0%, #2f7cf6 100%);
    color: #fff;
    font-size: .95rem;
    font-weight: 800;
    letter-spacing: .04em;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(47, 124, 246, .4);
    transition: filter .15s;
}
.bx-d-register__submit:hover { filter: brightness(1.08); }
.bx-d-register__switch {
    margin: 18px 0 0;
    text-align: center;
    font-size: .88rem;
    color: #9bb0cc;
}
.bx-d-register__switch a {
    color: #4da3ff;
    font-weight: 800;
    text-decoration: none;
    margin-left: 4px;
}
.bx-d-register__switch a:hover { color: #7ec0ff; }
@media (max-width: 700px) {
    .bx-d-register__card { padding: 24px 16px 20px; }
    .bx-d-register__grid,
    .bx-d-register__birth { grid-template-columns: 1fr; }
}

.cr-modal__close {
    position: absolute;
    top: 12px; right: 12px;
    z-index: 10;
    background: rgba(0, 0, 0, .5);
    border: 1px solid var(--cr-border);
    color: #fff;
    width: 32px; height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: .2s;
}
.cr-modal__close:hover {
    border-color: var(--cr-blue);
    color: var(--cr-blue);
}

.cr-auth-hero {
    background: linear-gradient(135deg, #0a1a30, #040a17);
    padding: 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--cr-border);
}
.cr-auth-hero--compact { padding: 1.5rem; text-align: left; }
.cr-auth-hero h2 {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    color: var(--cr-blue-light);
    margin-top: 4px;
    font-weight: 700;
}
.cr-auth-hero p { color: var(--cr-muted); font-size: .8rem; margin-top: 4px; }
.cr-auth-badge {
    display: inline-block;
    padding: 4px 14px;
    border: 1px solid var(--cr-blue);
    border-radius: 999px;
    font-size: .65rem;
    color: var(--cr-blue);
    margin-bottom: 8px;
    letter-spacing: .3px;
}
.cr-auth-form-wrap { padding: 1.5rem; }
.cr-auth-sub {
    font-size: .8rem;
    color: var(--cr-muted);
    margin-bottom: 1rem;
}
.cr-auth-sub strong {
    color: var(--cr-blue-light);
    display: block;
    font-size: .9rem;
}
.cr-field {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--cr-bg3);
    border: 1px solid rgba(0, 180, 255, .18);
    border-radius: var(--radius-sm);
    padding: 0 14px;
    margin-bottom: 10px;
    transition: border-color .2s, box-shadow .2s;
}
.cr-field:focus-within {
    border-color: var(--cr-blue);
    box-shadow: 0 0 0 3px rgba(0, 180, 255, .12);
}
.cr-field i { color: var(--cr-muted); }
.cr-field input {
    flex: 1;
    background: none;
    border: none;
    color: #fff;
    padding: 14px 0;
    font-size: .9rem;
    outline: none;
    font-family: inherit;
}

.cr-field select {
    flex: 1;
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    padding: 14px 0;
    font-size: .9rem;
    outline: none;
    font-family: inherit;
    appearance: none;
}
.cr-field select option {
    background: #071428;
    color: #fff;
}
.cr-field--phone .cr-phone-prefix {
    font-size: .8rem;
    color: var(--cr-muted);
    white-space: nowrap;
}
.cr-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.cr-eye {
    background: none;
    border: none;
    color: var(--cr-muted);
    cursor: pointer;
}
.cr-eye:hover { color: var(--cr-blue); }
.cr-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    color: var(--cr-muted);
    margin-bottom: 12px;
}
.cr-forgot {
    display: block;
    text-align: center;
    font-size: .8rem;
    color: var(--cr-muted);
    margin-top: 12px;
}
.cr-forgot:hover { color: var(--cr-blue); }
.cr-support-btn { margin-top: 12px; }
.cr-auth-switch {
    text-align: center;
    font-size: .8rem;
    color: var(--cr-muted);
    margin-top: 12px;
}
.cr-auth-switch a { color: var(--cr-blue); font-weight: 600; }
.cr-reg-form { padding: 0 1.5rem 1.5rem; }

/* Finance */
.cr-finance-tabs {
    display: flex;
    border-bottom: 1px solid var(--cr-border);
}
.cr-finance-tabs button {
    flex: 1;
    padding: 14px;
    background: none;
    border: none;
    color: var(--cr-muted);
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: .2s;
}
.cr-finance-tabs button.active {
    color: var(--cr-blue);
    border-bottom: 2px solid var(--cr-blue);
}
.cr-pay-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 16px;
}
.cr-pay-grid[hidden],
.cr-deposit-step[hidden] { display: none !important; }
.cr-pay-item {
    padding: 12px 8px;
    background: var(--cr-bg3);
    border: 1px solid var(--cr-border);
    border-radius: var(--radius-sm);
    text-align: center;
    cursor: pointer;
    font-size: .7rem;
    color: var(--cr-muted);
    transition: .2s;
}
.cr-pay-item:hover {
    border-color: var(--cr-blue);
    color: #fff;
    box-shadow: var(--cr-glow);
}
.cr-pay-item img {
    height: 32px;
    margin: 0 auto 6px;
    object-fit: contain;
}
.cr-deposit-step { padding: 16px 20px 20px; }
.cr-deposit-step__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--cr-muted);
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0 0 12px;
    font-family: inherit;
}
.cr-deposit-step__back:hover { color: var(--cr-blue); }
.cr-deposit-step__title {
    margin: 0 0 18px;
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
}
.cr-deposit-step__label {
    display: block;
    margin-bottom: 8px;
    color: var(--cr-blue-light);
    font-size: .85rem;
    font-weight: 600;
}
.cr-deposit-step__input {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 18px;
    background: rgba(0, 180, 255, .04);
    border: 1px solid var(--cr-border);
    border-radius: var(--radius);
    color: #fff;
    font-size: 1rem;
    outline: none;
    font-family: inherit;
    transition: .2s;
}
.cr-deposit-step__input:focus {
    border-color: var(--cr-blue);
    box-shadow: 0 0 0 3px rgba(0, 180, 255, .12);
}
.cr-deposit-step__form .cr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.cr-deposit-step__form .cr-btn:disabled {
    opacity: .55;
    cursor: not-allowed;
}

/* Finance — new Para Yatırma layout */
#financeModal.bx-m-finance .bx-m-finance__panel {
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    background: #07122c;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 18px 18px 22px;
}
#financeModal.bx-m-finance .bx-m-finance__close {
    top: 12px;
    right: 12px;
}
#financeModal .bx-m-finance__head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 36px 16px 0;
}
#financeModal .bx-m-finance__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #2f7cf6;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}
#financeModal .bx-m-finance__title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
}
#financeModal .bx-m-finance__sub {
    margin: 3px 0 0;
    font-size: .78rem;
    color: #8fa0c0;
}
#financeModal .bx-m-finance__tabs.cr-finance-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    border: none;
    margin-bottom: 16px;
}
#financeModal .bx-m-finance__tabs button {
    height: 44px;
    border-radius: 12px;
    background: #121f3d;
    color: #9aabc8;
    border: none;
    border-bottom: none;
    font-size: .95rem;
}
#financeModal .bx-m-finance__tabs button.active {
    background: #2f7cf6;
    color: #fff;
    border-bottom: none;
}
#financeModal .bx-m-finance__section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    font-size: .85rem;
    font-weight: 700;
    color: #e8eefc;
}
#financeModal .bx-m-finance__section-title i { color: #5b9bff; }
#financeModal .bx-m-pay-grid.cr-pay-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0;
}
#financeModal .bx-m-pay-card.cr-pay-item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    text-align: left;
    background: #102048;
    border: 1.5px solid rgba(255,255,255,.06);
    border-radius: 12px;
    color: #fff;
}
#financeModal .bx-m-pay-card.is-selected {
    border-color: #2f7cf6;
}
#financeModal .bx-m-pay-card__check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #2f7cf6;
    color: #fff;
    font-size: .55rem;
    display: none;
    align-items: center;
    justify-content: center;
}
#financeModal .bx-m-pay-card.is-selected .bx-m-pay-card__check {
    display: inline-flex;
}
#financeModal .bx-m-pay-card__top {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}
#financeModal .bx-m-pay-card__logo {
    width: 48px;
    height: 30px;
    object-fit: contain;
    background: #0a1630;
    border-radius: 6px;
    padding: 2px;
    margin: 0;
}
#financeModal .bx-m-pay-card__logo--empty {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6b7fa3;
}
#financeModal .bx-m-pay-card__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    flex: 1;
}
#financeModal .bx-m-pay-card__name {
    font-size: .78rem;
    font-weight: 800;
    color: #fff;
}
#financeModal .bx-m-pay-card__status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    padding: 2px 7px;
    border-radius: 999px;
    background: rgba(34, 197, 94, .12);
    color: #34d399;
    font-size: .58rem;
    font-weight: 800;
}
#financeModal .bx-m-pay-card__status i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
}
#financeModal .bx-m-pay-card__limits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}
#financeModal .bx-m-pay-card__limit {
    background: #0a142c;
    border-radius: 8px;
    padding: 8px;
}
#financeModal .bx-m-pay-card__limit-label {
    display: block;
    font-size: .52rem;
    font-weight: 700;
    color: #7d8bab;
    margin-bottom: 3px;
}
#financeModal .bx-m-pay-card__limit-val {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .68rem;
    font-weight: 700;
    color: #f1f5ff;
}
#financeModal .bx-m-pay-card__limit-val i {
    width: 6px;
    height: 6px;
    border-radius: 8px;
    background: #2f7cf6;
    display: inline-block;
}
#financeModal .bx-m-pay-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: #8896b3;
    padding: 24px;
    font-size: .85rem;
}
#financeModal .bx-m-pay-sheet.cr-deposit-step {
    position: fixed;
    inset: 0;
    z-index: 2100;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}
#financeModal .bx-m-pay-sheet[hidden] { display: none !important; }
#financeModal .bx-m-pay-sheet__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    border: none;
    cursor: pointer;
}
#financeModal .bx-m-pay-sheet__panel {
    position: relative;
    width: min(420px, 92vw);
    background: #0b1220;
    border-radius: 16px;
    padding: 16px 18px 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,.45);
}
#financeModal .bx-m-pay-sheet__handle { display: none; }
#financeModal .bx-m-pay-sheet__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
#financeModal .bx-m-pay-sheet__badge {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #2f7cf6;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
#financeModal .bx-m-pay-sheet__title {
    flex: 1;
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
}
#financeModal .bx-m-pay-sheet__x {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #c5d0e6;
    cursor: pointer;
}
#financeModal .bx-m-pay-sheet__hint {
    margin: 0 0 14px;
    font-size: .8rem;
    color: #8fa0c0;
}
#financeModal .bx-m-pay-sheet__label {
    color: #fff !important;
    font-weight: 700;
}
#financeModal .bx-m-pay-sheet__input {
    border: 1.5px solid #2f7cf6 !important;
    background: #121a2b !important;
}
#financeModal .bx-m-pay-sheet__info {
    background: rgba(120, 30, 40, .28);
    border: 1px solid rgba(180, 60, 70, .22);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 16px;
}
#financeModal .bx-m-pay-sheet__info-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a9bff;
    font-size: .72rem;
    font-weight: 800;
    margin-bottom: 8px;
}
#financeModal .bx-m-pay-sheet__info-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
#financeModal .bx-m-pay-sheet__info-list li {
    position: relative;
    padding-left: 12px;
    margin: 0 0 4px;
    color: #d5dcea;
    font-size: .78rem;
}
#financeModal .bx-m-pay-sheet__info-list li::before {
    content: "•";
    position: absolute;
    left: 0;
}
#financeModal .bx-m-pay-sheet__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
#financeModal .bx-m-pay-sheet__btn {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 12px;
    font-size: .92rem;
    font-weight: 800;
    cursor: pointer;
    font-family: inherit;
}
#financeModal .bx-m-pay-sheet__btn--primary {
    background: #2f7cf6;
    color: #fff;
}
#financeModal .bx-m-pay-sheet__btn--primary:disabled { opacity: .55; }
#financeModal .bx-m-pay-sheet__btn--ghost {
    background: #171f2e;
    color: #fff;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.cr-sidebar {
    position: fixed;
    top: 0; left: 0;
    width: 280px;
    height: 100%;
    z-index: 1100;
    background: var(--cr-bg2);
    border-right: 1px solid var(--cr-border);
    transform: translateX(-100%);
    transition: .3s;
    display: flex;
    flex-direction: column;
}
.cr-sidebar.open { transform: translateX(0); }
.cr-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 10, 23, .7);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}
.cr-overlay.open { opacity: 1; visibility: visible; }

/* Left drawer (bx-drawer — shared with mobile markup) */
.bx-drawer {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: min(82vw, 340px);
    z-index: 1200;
    pointer-events: none;
    transform: translateX(-105%);
    transition: transform .28s ease;
}
.bx-drawer.open {
    pointer-events: auto;
    transform: translateX(0);
}
.bx-drawer__panel {
    width: 100%;
    height: 100%;
    background: #05122b;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    box-shadow: 4px 0 24px rgba(0, 0, 0, .45);
}
.bx-drawer__panel::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #fff 20%, #7ec8ff 50%, #fff 80%, transparent);
    box-shadow: 0 0 10px rgba(255, 255, 255, .7), 0 0 20px rgba(77, 207, 255, .5);
    pointer-events: none;
}
.bx-drawer__head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    position: relative;
    flex-shrink: 0;
}
.bx-drawer__close {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 6px;
    background: #0a2a5c;
    color: #fff;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    flex-shrink: 0;
}
.bx-drawer__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    max-width: 60%;
}
.bx-drawer__logo img {
    max-height: 36px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}
.bx-drawer__brand {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    background: linear-gradient(180deg, #fff, #7ec8ff 55%, #2aa8ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bx-drawer__brand span {
    -webkit-text-fill-color: #4dcfff;
    filter: drop-shadow(0 0 8px rgba(77, 207, 255, .9));
}
.bx-drawer__nav {
    flex: 1;
    overflow-y: auto;
    padding: 0 0 8px;
}
.bx-drawer__item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: 52px;
    padding: 15px 16px;
    border: none;
    border-bottom: 1px solid #0b2553;
    background: transparent;
    color: #fff !important;
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none !important;
    text-align: left;
    font-family: inherit;
    cursor: pointer;
    box-sizing: border-box;
}
.bx-drawer__item i,
.bx-drawer__pp,
.bx-drawer__help,
.bx-drawer__flag {
    width: 24px;
    flex-shrink: 0;
    text-align: center;
    font-size: 1rem;
}
.bx-drawer__item > span:last-child { flex: 1; }
.bx-drawer__item.is-active {
    background: linear-gradient(90deg, rgba(30, 90, 180, .55), transparent);
}
.bx-drawer__item--lang {
    background: rgba(10, 34, 78, .4);
    gap: 10px;
}
.bx-drawer__dil { flex: 1 !important; opacity: .95; }
.bx-drawer__flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}
.bx-drawer__flag svg {
    display: block;
    width: 24px;
    height: 16px;
    border-radius: 8px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .12);
}
.bx-drawer__pp {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: linear-gradient(180deg, #fff, #c8d0dc);
    color: #0a1a30;
    font-size: .45rem;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.bx-drawer__wheel {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 10px 12px;
    padding: 12px 14px;
    border-radius: 10px;
    background: linear-gradient(90deg, #ff3d3d, #ff8a3d, #ffd24a, #4dff7c, #4dcfff, #a855f7, #ff3d8f, #ff3d3d);
    background-size: 200% 100%;
    animation: bx-rainbow 3s linear infinite;
    color: #fff !important;
    font-size: .9rem;
    font-weight: 800;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(0, 143, 213, .4);
}
.bx-drawer__wheel-img {
    width: 28px;
    height: 28px;
}
.bx-drawer__promo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px 14px 12px;
    height: 46px;
    border-radius: 10px;
    background: #2f7cf6;
    color: #fff !important;
    font-weight: 800;
    font-size: .88rem;
    letter-spacing: .04em;
    text-decoration: none !important;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(47, 124, 246, .4);
}
.bx-drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 1150;
    background: rgba(2, 8, 24, .62);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: .25s;
}
.bx-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}
.bx-drawer__ico { width: 20px; height: 20px; }

.cr-sidebar__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid var(--cr-border);
    color: var(--cr-blue);
    font-family: var(--font-sans);
    font-weight: 700;
}
.cr-sidebar__head button {
    background: none;
    border: none;
    color: var(--cr-muted);
    font-size: 1.2rem;
    cursor: pointer;
}
.cr-sidebar__nav { flex: 1; padding: 12px 0; overflow-y: auto; }
.cr-sidebar__nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--cr-muted);
    font-size: .9rem;
}
.cr-sidebar__nav a:hover {
    color: var(--cr-blue-light);
    background: rgba(0, 180, 255, .06);
}
.cr-sidebar__nav a i { width: 20px; color: var(--cr-blue); }

.cr-toast-box { position: fixed; top: 90px; right: 24px; z-index: 3000; }
.cr-toast {
    padding: 10px 16px;
    background: var(--cr-bg3);
    border: 1px solid var(--cr-border);
    border-radius: var(--radius-sm);
    margin-bottom: 6px;
    font-size: .85rem;
    box-shadow: var(--cr-glow);
}

.cr-bottom-nav { display: none !important; }
.cr-menu-sheet { display: none !important; }

/* ============================================================
   SLOT PAGE
   ============================================================ */
.cr-page--slot-d { padding-bottom: 32px; background: transparent; }
.cr-page--slot-catalog .cr-slot-d-hero {
    padding: 12px 0 0;
    margin: 0 0 14px;
    position: relative;
    z-index: 2;
}
.cr-page--slot-catalog .cr-slot-d-hero__frame {
    border-radius: 12px;
}
.cr-page--slot-catalog .cr-slot-d-hero::after {
    content: none;
    display: none;
}
.cr-page--slot-catalog {
    --cr-game-hero-h: 560px;
}
.cr-slot-d-hero {
    padding: 0 0 10px;
    margin: 0;
}
.cr-slot-d-hero .cr-container {
    padding-left: 8px;
    padding-right: 8px;
    max-width: none;
}
.cr-slot-d-hero__frame {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--cr-border);
    box-shadow: var(--cr-glow);
}
.cr-slot-d-hero__frame .cr-slot-hero-swiper,
.cr-slot-d-hero__frame .swiper-slide { height: var(--cr-game-hero-h); }
.cr-slot-d-hero__frame .swiper-slide a {
    display: block;
    height: 100%;
}
.cr-slot-d-hero__frame img,
.cr-slot-d-hero__img,
.cr-slot-hero-swiper .swiper-slide img {
    width: 100%;
    height: var(--cr-game-hero-h);
    object-fit: cover;
    display: block;
}
.cr-slot-d-hero .swiper-pagination { bottom: 10px !important; }

.cr-jackpot-ticker {
    padding: 12px 0;
    background: transparent;
}
.cr-jackpot-ticker__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    background: var(--cr-bg2);
    border: 1px solid var(--cr-border);
    padding: 12px;
    border-radius: var(--radius);
}
.cr-jp-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--cr-border);
    background: var(--cr-bg3);
}
.cr-jp-card i { font-size: .95rem; color: var(--cr-blue); }
.cr-jp-card small {
    font-size: .55rem;
    color: var(--cr-muted);
    letter-spacing: 1px;
}
.cr-jp-card strong { font-size: .88rem; font-weight: 800; color: #fff; }
.cr-jp-card--purple i,
.cr-jp-card--purple strong { color: var(--cr-blue-light); }
.cr-jp-card--blue i,
.cr-jp-card--blue strong { color: var(--cr-blue); }
.cr-jp-card--green i,
.cr-jp-card--green strong { color: #22c55e; }
.cr-jp-card--red i,
.cr-jp-card--red strong { color: #ef4444; }

.cr-slot-d-body { padding: 16px 0 0; }
.cr-slot-d-panel {
    position: relative;
    margin-bottom: 22px;
    padding: 14px 14px 18px;
    background: linear-gradient(180deg, #0b2553 0%, #0a224e 100%);
    border: 1px solid rgba(52, 131, 250, .35);
    border-radius: 14px 14px 0 0;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), 50% 100%, 0 calc(100% - 28px));
}
.cr-slot-d-panel .cr-search-bar--desktop {
    max-width: none;
    margin-bottom: 12px;
    background: rgba(4, 10, 23, .45);
}
.cr-slot-d-panel .cr-slot-tabs {
    margin-bottom: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2px;
}
.cr-slot-d-panel .cr-slot-tabs::-webkit-scrollbar { display: none; }

/* ---- Live casino catalog (desktop) ---- */
.cr-page--live-catalog .cr-slot-d-hero,
.cr-page--sanal-catalog .cr-slot-d-hero {
    padding: 12px 0 0;
    margin: 0 0 14px;
    position: relative;
    z-index: 2;
}
.cr-page--live-catalog .cr-slot-d-hero::after,
.cr-page--sanal-catalog .cr-slot-d-hero::after {
    content: none;
    display: none;
}
.cr-page--live-catalog .cr-slot-d-hero__frame,
.cr-page--sanal-catalog .cr-slot-d-hero__frame {
    border-radius: 12px;
}
.cr-page--live-catalog,
.cr-page--sanal-catalog {
    --cr-game-hero-h: 560px;
}
.cr-live-d-prov-carousel {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}
.cr-live-d-scroll {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(52, 131, 250, .35);
    background: #0a224e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
}
.cr-live-d-scroll:hover { background: #123268; }
.cr-live-d-prov-track {
    flex: 1;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    min-width: 0;
    padding: 2px 0;
}
.cr-live-d-prov-track::-webkit-scrollbar { display: none; }
.cr-live-d-prov-card {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 180px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(52, 131, 250, .35);
    background: #0a224e;
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    transition: border-color .2s, box-shadow .2s;
}
.cr-live-d-prov-card.active {
    border-color: #3483fa;
    box-shadow: 0 0 0 2px rgba(52, 131, 250, .35);
}
.cr-live-d-prov-card__logo {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: rgba(4, 10, 23, .45);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.cr-live-d-prov-card__logo img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}
.cr-live-d-prov-card__logo span {
    font-size: .7rem;
    font-weight: 800;
    color: #cfe3ff;
}
.cr-live-d-prov-card__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    text-align: left;
}
.cr-live-d-prov-card__text strong {
    font-size: .82rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cr-live-d-prov-card__text small {
    font-size: .68rem;
    color: rgba(255, 255, 255, .65);
}
.cr-live-d-search-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
    margin-bottom: 14px;
}
.cr-live-d-search {
    flex: 1;
    max-width: none;
    margin: 0;
}
.cr-live-d-all-prov {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 16px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(180deg, #4a9dff 0%, #2f7cf6 100%);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(47, 124, 246, .35);
}
.cr-live-d-all-prov i:last-child {
    font-size: .65rem;
    opacity: .9;
}
.cr-live-d-cat-panel {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    padding: 12px 10px 18px;
    background: linear-gradient(180deg, #0b2553 0%, #0a224e 100%);
    border: 1px solid rgba(52, 131, 250, .35);
    border-radius: 14px 14px 0 0;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), 50% 100%, 0 calc(100% - 28px));
}
.cr-live-d-cats {
    flex: 1;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    min-width: 0;
    padding: 2px 0;
}
.cr-live-d-cats::-webkit-scrollbar { display: none; }
.cr-live-d-cat {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .28);
    background: #071a40;
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
}
.cr-live-d-cat.active {
    background: #2f7cf6;
    border-color: #2f7cf6;
    box-shadow: 0 4px 12px rgba(47, 124, 246, .35);
}
.cr-live-d-cat i { font-size: .75rem; opacity: .92; }

.page-desktop .bx-m-prov-page__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}
.page-desktop .bx-m-prov-page {
    z-index: 1400;
}
.page-desktop body.bx-prov-sheet-open .cr-header,
.page-desktop body.bx-prov-sheet-open .cr-nav {
    pointer-events: none;
}

.cr-slot-d-title {
    font-family: var(--font-sans);
    font-size: .95rem;
    color: var(--cr-blue-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.cr-slot-tabs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.cr-slot-tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    font-size: .7rem;
    font-weight: 600;
    color: var(--cr-muted);
    background: var(--cr-bg3);
    border: 1px solid transparent;
    transition: .2s;
    cursor: pointer;
}
.cr-slot-tab:hover {
    color: var(--cr-blue);
    border-color: var(--cr-border);
}
.cr-slot-tab.active {
    background: linear-gradient(180deg, #4dcfff, #00b4ff);
    color: #04101f;
    border-color: transparent;
}

.cr-search-bar,
.cr-search-bar--desktop {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 360px;
    padding: 0 12px;
    margin-bottom: 12px;
    background: var(--cr-bg3);
    border: 1px solid var(--cr-border);
    border-radius: var(--radius-sm);
    transition: .2s;
}
.cr-search-bar:focus-within,
.cr-search-bar--desktop:focus-within {
    border-color: var(--cr-blue);
    box-shadow: 0 0 0 3px rgba(0, 180, 255, .12);
}
.cr-search-bar i,
.cr-search-bar--desktop i {
    color: var(--cr-muted);
    font-size: .85rem;
}
.cr-search-bar input,
.cr-search-bar--desktop input {
    flex: 1;
    background: none;
    border: none;
    color: #fff;
    padding: 10px 0;
    font-size: .8rem;
    outline: none;
    font-family: inherit;
}

.cr-provider-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 16px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
    scrollbar-color: rgba(77,207,255,.3) transparent;
}
.cr-provider-grid::-webkit-scrollbar { height: 4px; }
.cr-provider-grid::-webkit-scrollbar-thumb { background: rgba(77,207,255,.3); border-radius: 4px; }
.cr-provider-btn {
    flex: 0 0 auto;
    padding: 8px 14px;
    background: var(--cr-bg3);
    border: 1px solid var(--cr-border);
    border-radius: var(--radius-sm);
    color: var(--cr-muted);
    font-size: .68rem;
    font-weight: 600;
    cursor: pointer;
    transition: .2s;
    font-family: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 100px;
}
.cr-provider-btn:hover {
    border-color: var(--cr-blue);
    color: var(--cr-blue);
}
.cr-provider-btn.active {
    background: linear-gradient(180deg, #4dcfff, #00b4ff);
    color: #04101f;
    border-color: transparent;
}
.cr-provider-btn--logo {
    min-height: 48px;
    min-width: 110px;
    padding: 8px 12px;
}
.cr-provider-btn--logo img {
    max-height: 22px;
    width: auto;
    max-width: 110px;
    display: block;
}
.cr-provider-btn--logo span { line-height: 1.15; }
.cr-provider-btn__count {
    font-size: .56rem;
    font-weight: 500;
    color: var(--cr-muted);
    opacity: .8;
}
.cr-provider-btn.active .cr-provider-btn__count { color: #04101f; opacity: .7; }

.cr-slot-games {
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
}
@media (max-width: 1400px) {
    .cr-slot-games { grid-template-columns: repeat(8, minmax(0, 1fr)); }
}
@media (max-width: 1100px) {
    .cr-slot-games { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}
.cr-slot-game {
    cursor: pointer;
}
.cr-slot-game__inner {
    position: relative;
    background: var(--cr-bg2);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(0, 180, 255, .12);
    transition: border-color .28s ease, box-shadow .28s ease, transform .28s ease;
}
.cr-slot-game__inner:hover {
    border-color: var(--cr-blue);
    box-shadow: var(--cr-glow), 0 8px 18px rgba(0, 0, 0, .35);
    transform: translateY(-2px) scale(1.015);
}
.cr-slot-game__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}
.cr-slot-game__img[src=""],
.cr-slot-game__img:not([src]) { display: none; }
.cr-slot-game__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 10, 23, .15) 20%, rgba(4, 10, 23, .8) 72%, rgba(4, 10, 23, .95) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    opacity: 0;
    transition: opacity .25s;
    padding: 10px 8px;
    text-align: center;
}
.cr-slot-game__inner:hover .cr-slot-game__overlay { opacity: 1; }
.cr-slot-game__name {
    font-size: .7rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .65);
    transform: translateY(6px);
    opacity: .88;
    transition: transform .28s ease, opacity .28s ease;
}
.cr-slot-game__inner:hover .cr-slot-game__name {
    transform: translateY(0);
    opacity: 1;
}
.cr-slot-game__play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: calc(100% - 8px);
    max-width: 180px;
    padding: 7px 10px;
    background: linear-gradient(180deg, #4dcfff, #00b4ff);
    color: #04101f;
    font-weight: 800;
    font-size: .64rem;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transform: translateY(120%);
    transition: transform .28s ease;
    box-shadow: 0 4px 12px rgba(0, 180, 255, .35);
}
.cr-slot-game__hot,
.cr-slot-game__stats,
.cr-slot-game__brand { display: none; }
.cr-slot-game__media {
    display: block;
    position: relative;
    line-height: 0;
}
.cr-slot-game__info {
    display: flex;
    flex-direction: column;
    padding: 6px 6px 8px;
    gap: 1px;
}
.cr-slot-game__info .cr-slot-game__name {
    font-size: .62rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: none;
    transform: none;
    opacity: 1;
}
.cr-slot-game__info .cr-slot-game__provider {
    font-size: .54rem;
    color: var(--cr-muted);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cr-slot-game__overlay .cr-slot-game__name {
    /* restored via JS/HTML if present; desktop uses info name duplicate */
}
.cr-slot-game__inner:hover .cr-slot-game__play { transform: translateY(0); }

.cr-empty {
    text-align: center;
    padding: 36px 16px;
    color: var(--cr-muted);
}
.cr-empty i {
    font-size: 1.6rem;
    color: var(--cr-blue);
    margin-bottom: 10px;
    display: block;
    opacity: .5;
}
.cr-load-more { text-align: center; padding: 20px 0 8px; }

/* ============================================================
   PROMOTIONS
   ============================================================ */
.cr-page--promo-d { padding: 24px 0 48px; background: transparent; }
.cr-page--promo-d .cr-promo-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding: 0;
}
.cr-page--promo-d .cr-promo-card {
    border-radius: 14px;
    overflow: hidden;
    background: #0a224e;
    border: 1px solid rgba(52, 131, 250, .18);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .28);
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.cr-page--promo-d .cr-promo-card:hover {
    border-color: rgba(52, 131, 250, .45);
    box-shadow: 0 8px 24px rgba(0, 100, 255, .18);
    transform: translateY(-2px);
}
.cr-page--promo-d .cr-promo-card__btn {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    padding: 0 0 12px;
    text-align: center;
    cursor: pointer;
    font: inherit;
    color: inherit;
}
.cr-page--promo-d .cr-promo-card__media {
    position: relative;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
    background: #051539;
}
.cr-page--promo-d .cr-promo-card__media img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    display: block;
}
.cr-page--promo-d .cr-promo-card__detail {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    z-index: 2;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(77, 207, 255, .92);
    color: #fff;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .02em;
    white-space: nowrap;
    line-height: 1.2;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .35);
}
.cr-page--promo-d .cr-promo-card__title {
    margin: 12px 10px 10px;
    padding: 0;
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .02em;
}
.cr-page--promo-d .cr-promo-card__more {
    display: block;
    margin: auto 10px 0;
    padding: 10px 12px;
    border-radius: 10px;
    background: #2f7cf6;
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .02em;
    line-height: 1.2;
}
.cr-page--promo-d .cr-promo-card__btn:hover .cr-promo-card__more {
    background: #3483fa;
    filter: brightness(1.06);
}
@media (max-width: 1200px) {
    .cr-page--promo-d .cr-promo-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
    .cr-page--promo-d .cr-promo-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.cr-modal__panel--promo {
    max-width: 760px;
    padding: 0;
    overflow: hidden;
}
.cr-promo-modal { max-height: 90vh; overflow-y: auto; }
.cr-promo-modal__title {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    color: var(--cr-blue-light);
    padding: 20px 24px 12px;
    line-height: 1.3;
    font-weight: 700;
}
.cr-promo-modal__img img {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 280px;
}
.cr-promo-modal__body {
    padding: 20px 24px;
    background: var(--cr-bg3);
    color: var(--cr-muted);
    font-size: .88rem;
    line-height: 1.65;
    border-top: 1px solid var(--cr-border);
}
.cr-promo-modal__body p { margin-bottom: 10px; }
.cr-promo-modal__body strong { color: #fff; font-weight: 600; }
.cr-promo-modal__body ul,
.cr-promo-modal__body ol {
    padding-left: 1.25rem;
    margin-bottom: 10px;
}
.cr-promo-modal__actions {
    padding: 16px 24px 24px;
    text-align: center;
}

/* Promo detail overlay modal */
.cr-modal.bx-m-promo-fs {
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 2100;
}
.cr-modal.bx-m-promo-fs .cr-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 10, 23, .78);
}
.bx-m-promo-fs__panel {
    position: relative;
    width: min(760px, 100%);
    max-height: 90vh;
    height: auto;
    display: flex;
    flex-direction: column;
    background: #051539;
    border: 1px solid rgba(52, 131, 250, .35);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .55);
}
.bx-m-promo-fs__head {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 56px;
    padding: 12px 24px;
    background: #0a224e;
    border-bottom: 1px solid rgba(52, 131, 250, .25);
}
.bx-m-promo-fs__title {
    margin: 0;
    flex: 1;
    min-width: 0;
    font-size: .95rem;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.bx-m-promo-fs__close {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.bx-m-promo-fs__scroll {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    background: #051539;
}
.bx-m-promo-fs__hero {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    background: #040a17;
    line-height: 0;
}
.bx-m-promo-fs__hero img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    display: block;
}
.bx-m-promo-fs__body {
    max-width: 960px;
    margin: 0 auto;
    padding: 28px 28px 12px;
    background: transparent;
    color: rgba(255, 255, 255, .92);
    font-size: .9rem;
    line-height: 1.7;
    border-top: none;
}
.bx-m-promo-fs__body h1,
.bx-m-promo-fs__body h2,
.bx-m-promo-fs__body h3,
.bx-m-promo-fs__body h4,
.bx-m-promo-fs__body strong { color: #fff; font-weight: 800; }
.bx-m-promo-fs__body h2,
.bx-m-promo-fs__body h3 {
    font-size: 1.05rem;
    margin: 0 0 14px;
    text-transform: uppercase;
}
.bx-m-promo-fs__body p { margin: 0 0 12px; }
.bx-m-promo-fs__body ol,
.bx-m-promo-fs__body ul {
    margin: 0 0 16px;
    padding-left: 1.2em;
}
.bx-m-promo-fs__body li { margin-bottom: 8px; }
.bx-m-promo-fs__actions {
    max-width: 960px;
    margin: 0 auto;
    padding: 8px 28px 32px;
    text-align: center;
    background: transparent;
}
.bx-m-promo-fs__cta {
    min-width: 220px;
    height: 46px;
    border-radius: 10px;
    background: #2f7cf6 !important;
    border: none !important;
    color: #fff !important;
    font-weight: 800;
}
body.bx-promo-fs-open { overflow: hidden; }

/* ============================================================
   TOURNAMENTS
   ============================================================ */
.cr-page--tournaments-d {
    position: relative;
    padding: 20px 0 48px;
    isolation: isolate;
}
.cr-page--tournaments-d::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(180deg, rgba(4, 10, 23, .72) 0%, rgba(4, 10, 23, .9) 100%),
        radial-gradient(ellipse 90% 60% at 50% 20%, rgba(47, 124, 246, .14) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 80% 60%, rgba(255, 159, 26, .08) 0%, transparent 50%),
        #040a17;
    pointer-events: none;
}
.cr-page--tournaments-d .cr-container {
    position: relative;
    z-index: 1;
}
.bx-d-tournaments {
    border-radius: 20px;
    border: 1px solid rgba(52, 131, 250, .32);
    background: linear-gradient(180deg, rgba(11, 37, 83, .94) 0%, rgba(8, 28, 62, .96) 100%);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .45);
    padding: 22px 24px 28px;
    min-height: 520px;
}
.bx-d-tournaments__head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}
.bx-d-tournaments__badge {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(180deg, #4a9dff 0%, #2f7cf6 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    box-shadow: 0 6px 16px rgba(47, 124, 246, .35);
}
.bx-d-tournaments__title {
    margin: 0 0 6px;
    font-family: var(--font-sans);
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}
.bx-d-tournaments__title i {
    color: #ff9f1a;
    font-size: 1.1rem;
}
.bx-d-tournaments__sub {
    margin: 0;
    font-size: .82rem;
    color: rgba(255, 255, 255, .68);
    line-height: 1.45;
}
.bx-d-tournaments__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}
.bx-d-tournaments__tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(4, 10, 23, .35);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background .2s, border-color .2s, box-shadow .2s;
}
.bx-d-tournaments__tab i { font-size: .82rem; opacity: .92; }
.bx-d-tournaments__tab:hover {
    border-color: rgba(52, 131, 250, .45);
    background: rgba(15, 35, 70, .65);
}
.bx-d-tournaments__tab.active {
    background: linear-gradient(180deg, #4a9dff 0%, #2f7cf6 100%);
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(47, 124, 246, .35);
}
.bx-d-tournaments__body {
    min-height: 360px;
    border-radius: 14px;
    background: rgba(4, 10, 23, .35);
    border: 1px solid rgba(52, 131, 250, .15);
}
.bx-d-tournaments__panel[hidden] { display: none !important; }
.bx-d-tournaments__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 56px 24px 64px;
    min-height: 360px;
}
.bx-d-tournaments__empty > i {
    font-size: 3.2rem;
    color: #ff9f1a;
    margin-bottom: 18px;
    filter: drop-shadow(0 8px 18px rgba(255, 159, 26, .25));
}
.bx-d-tournaments__empty h2 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
}
.bx-d-tournaments__empty p {
    margin: 0;
    max-width: 420px;
    font-size: .82rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, .62);
}

/* ============================================================
   PROFILE MODAL
   ============================================================ */
.cr-modal--profile {
    align-items: center;
    justify-content: flex-end;
    padding: 0;
}
.cr-modal__panel--profile {
    width: 420px;
    max-width: 100%;
    max-height: 100vh;
    height: 100%;
    margin: 0;
    border: none;
    border-left: 1px solid var(--cr-border);
    border-radius: 0;
    background: var(--cr-bg2);
    overflow-y: auto;
    box-shadow: -8px 0 40px rgba(0, 0, 0, .4);
}
.cr-profile { padding: 16px 18px 28px; }
.cr-profile__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.cr-profile__back {
    width: 36px; height: 36px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    flex-shrink: 0;
}
.cr-profile__user {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.cr-profile__avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(180deg, #4dcfff, #00b4ff);
    color: #04101f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}
.cr-profile__meta strong {
    display: block;
    color: var(--cr-blue-light);
    font-size: .95rem;
    font-weight: 700;
}
.cr-profile__meta small { color: var(--cr-muted); font-size: .72rem; }
.cr-profile__balance {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    margin-bottom: 12px;
    background: var(--cr-bg3);
    border: 1px solid var(--cr-border);
    border-radius: 10px;
    font-size: .82rem;
}
.cr-profile__balance span { color: var(--cr-muted); }
.cr-profile__balance strong { color: var(--cr-blue-light); font-size: .95rem; }
.cr-profile__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 18px;
}
.cr-profile__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 10px;
    border-radius: var(--radius);
    border: 1px solid var(--cr-border);
    background: var(--cr-bg3);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: .2s;
}
.cr-profile__btn:hover {
    border-color: var(--cr-blue);
    box-shadow: var(--cr-glow);
}
.cr-profile__btn--gold {
    background: linear-gradient(180deg, #4dcfff, #00b4ff);
    color: #04101f;
    border-color: transparent;
}
.cr-profile__menu {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: var(--cr-bg3);
    border: 1px solid var(--cr-border);
    border-radius: 10px;
    overflow: hidden;
}
.cr-profile__item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px;
    border: none;
    border-bottom: 1px solid rgba(0, 180, 255, .1);
    background: transparent;
    color: #e8eef8;
    font-size: .82rem;
    font-weight: 600;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
    transition: .15s;
}
.cr-profile__item:last-child { border-bottom: none; }
.cr-profile__item:hover { background: rgba(0, 180, 255, .06); }
.cr-profile__item > i:first-child {
    width: 20px;
    color: var(--cr-blue);
    text-align: center;
}
.cr-profile__item span { flex: 1; }
.cr-profile__item > i:last-child { color: var(--cr-muted); font-size: .7rem; }
.cr-profile__item--logout { color: #ff8a8a; }
.cr-profile__item--logout > i:first-child { color: #ff8a8a; }
.cr-profile__info,
.cr-profile__history {
    margin-top: 16px;
    padding: 14px;
    background: var(--cr-bg3);
    border: 1px solid var(--cr-border);
    border-radius: 10px;
}
.cr-profile__info h4,
.cr-profile__history-head h4 {
    color: var(--cr-blue);
    font-size: .78rem;
    margin-bottom: 12px;
    letter-spacing: .3px;
}
.cr-profile__info dl { display: flex; flex-direction: column; gap: 10px; }
.cr-profile__info dl div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: .75rem;
}
.cr-profile__info dt { color: var(--cr-muted); }
.cr-profile__info dd { color: #fff; font-weight: 600; text-align: right; }
.cr-profile__history-head {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}
.cr-profile__history-tabs { display: flex; gap: 6px; }
.cr-profile__history-tabs button {
    flex: 1;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--cr-border);
    background: var(--cr-bg2);
    color: var(--cr-muted);
    font-size: .72rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}
.cr-profile__history-tabs button.active {
    background: linear-gradient(180deg, #4dcfff, #00b4ff);
    color: #04101f;
    border-color: transparent;
}
.cr-profile__history-loading,
.cr-profile__history-empty {
    text-align: center;
    padding: 24px 10px;
    color: var(--cr-muted);
    font-size: .78rem;
}
.cr-profile__history-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .68rem;
}
.cr-profile__history-table th {
    text-align: left;
    padding: 8px 6px;
    color: var(--cr-muted);
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 180, 255, .12);
}
.cr-profile__history-table td {
    padding: 9px 6px;
    border-bottom: 1px solid rgba(0, 180, 255, .06);
    color: #e8eef8;
    vertical-align: top;
}
.cr-profile__history-table .cr-h-bet { color: var(--cr-gold); font-weight: 700; }
.cr-profile__history-table .cr-h-win { color: #7ddea0; font-weight: 700; }
.cr-profile__history-table .cr-h-date {
    color: var(--cr-muted);
    font-size: .62rem;
    white-space: nowrap;
}
.cr-profile__history-table .cr-h-note {
    color: var(--cr-muted);
    font-size: .62rem;
    font-style: italic;
    padding-top: 0 !important;
}
.cr-profile__history-table .cr-h-actions { text-align: right; width: 72px; }
.cr-history-id { font-weight: 600; word-break: break-all; }

.cr-sport-status {
    display: inline-block;
    margin-top: 4px;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: .58rem;
    font-weight: 700;
    text-transform: uppercase;
}
.sport-status-pending {
    background: rgba(255, 159, 26, .18);
    color: var(--cr-gold);
}
.sport-status-won {
    background: rgba(125, 222, 160, .18);
    color: #7ddea0;
}
.sport-status-lost {
    background: rgba(240, 160, 160, .18);
    color: #f0a0a0;
}
.sport-status-cancelled {
    background: rgba(160, 160, 160, .18);
    color: #bbb;
}
.cr-sport-toggle {
    background: rgba(0, 180, 255, .1);
    border: 1px solid var(--cr-border);
    color: var(--cr-blue);
    font-size: .58rem;
    font-weight: 700;
    padding: 5px 8px;
    border-radius: 999px;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
}
.cr-sport-toggle.is-open {
    background: rgba(0, 180, 255, .2);
    border-color: var(--cr-blue);
    color: var(--cr-blue-light);
}
.cr-sport-expand-row td {
    padding: 0 0 10px !important;
    border-bottom: none !important;
}
.cr-sport-expand {
    margin-top: 4px;
    padding: 12px;
    border-radius: 10px;
    background: var(--cr-bg2);
    border: 1px solid var(--cr-border);
}
.cr-sport-expand__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 180, 255, .12);
    font-size: .68rem;
    color: var(--cr-muted);
}
.cr-sport-expand__meta strong { color: var(--cr-blue-light); }
.cr-sport-bet {
    background: var(--cr-bg3);
    border: 1px solid rgba(0, 180, 255, .1);
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 8px;
}
.cr-sport-bet:last-child { margin-bottom: 0; }
.cr-sport-bet__match {
    font-size: .78rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.cr-sport-live {
    font-size: .55rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    color: #bbb;
}
.cr-sport-live--on {
    background: rgba(255, 80, 80, .2);
    color: #ff8080;
}
.cr-sport-bet__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.cr-sport-bet__field span {
    display: block;
    font-size: .58rem;
    color: var(--cr-muted);
    margin-bottom: 2px;
}
.cr-sport-bet__field strong {
    font-size: .72rem;
    color: #eee;
    font-weight: 600;
}
.cr-sport-pick { color: var(--cr-gold) !important; }
.cr-sport-odd { color: var(--cr-blue-light) !important; }

/* ============================================================
   OTHER PAGES / SPORTS
   ============================================================ */
.cr-page-title {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    color: var(--cr-blue-light);
    padding: 24px 0 12px;
    font-weight: 700;
}
.cr-sports-frame-wrap {
    height: calc(100vh - 220px);
    min-height: 500px;
    border: 1px solid var(--cr-border);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}
.cr-sports-iframe { width: 100%; height: 100%; border: none; }
.cr-sports-loader {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--cr-bg);
    gap: 12px;
    z-index: 10;
}
.cr-sports-login-overlay {
    position: absolute;
    inset: 0;
    z-index: 20;
    cursor: pointer;
    background: transparent;
}
.cr-sports-login-hint {
    position: absolute;
    inset: 0;
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    color: #fff;
    background: #040a17;
}
.cr-sports-login-hint[hidden] { display: none !important; }
.cr-sports-login-hint span { color: var(--cr-gold); font-size: .9rem; }
.cr-sports-page__tabs,
.cr-sports-tab,
.cr-sports-page__head { display: none !important; }
body.page-desktop.page-sports { overflow: hidden; }
body.page-desktop.page-sports .cr-footer-d,
body.page-desktop.page-sports .cr-footer-m { display: none !important; }
body.page-desktop.page-sports .cr-main { padding: 0; max-width: none; }
body.page-desktop.page-sports .cr-sports-main {
    position: fixed;
    left: 0; right: 0;
    top: var(--cr-sports-top, 0px);
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    background: #040a17;
}
body.page-desktop.page-sports .cr-sports-frame-wrap {
    position: absolute;
    inset: 0;
    margin: 0;
    border: none;
    min-height: 0;
    height: auto;
    border-radius: 0;
}
body.page-desktop.page-sports .cr-sports-frame-wrap iframe,
body.page-desktop.page-sports .cr-sports-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    background: #040a17;
}
.cr-loader {
    width: 32px; height: 32px;
    border: 3px solid var(--cr-border);
    border-top-color: var(--cr-blue);
    border-radius: 50%;
    animation: crSpin .7s linear infinite;
}

/* ============================================================
   BONUS PAGE
   ============================================================ */
.cr-bonus-page { padding: 8px 0 40px; }
.cr-bonus-page__inner { max-width: 640px; margin: 0 auto; }
.cr-bonus-head {
    text-align: center;
    padding: 20px 0 28px;
}
.cr-bonus-head__icon {
    width: 80px; height: 80px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 255, .1);
    border: 2px solid var(--cr-blue);
    color: var(--cr-blue);
    font-size: 1.85rem;
    box-shadow: var(--cr-glow);
}
.cr-bonus-head__title {
    justify-content: center;
    padding: 0 0 8px;
    margin: 0;
    font-size: 1.75rem;
}
.cr-bonus-head__sub {
    margin: 0;
    color: var(--cr-muted);
    font-size: .9rem;
    line-height: 1.5;
}
.cr-bonus-card {
    background: var(--cr-bg3);
    border: 1px solid var(--cr-border);
    border-radius: 12px;
    padding: 32px 28px;
    margin-bottom: 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .25);
}
.cr-bonus-field { margin-bottom: 20px; }
.cr-bonus-field label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--cr-blue-light);
    font-size: .88rem;
    font-weight: 600;
}
.cr-bonus-field label i { width: 16px; text-align: center; }
.cr-bonus-input {
    width: 100%;
    padding: 13px 16px;
    background: rgba(0, 180, 255, .04);
    border: 1px solid var(--cr-border);
    border-radius: var(--radius);
    color: #fff;
    font-size: .95rem;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    font-family: inherit;
}
.cr-bonus-input:focus {
    border-color: var(--cr-blue);
    box-shadow: 0 0 0 3px rgba(0, 180, 255, .12);
}
.cr-bonus-input:read-only { opacity: .7; cursor: default; }
select.cr-bonus-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300b4ff' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}
select.cr-bonus-input option { background: var(--cr-bg2); color: #fff; }
textarea.cr-bonus-input { resize: vertical; min-height: 80px; }
.cr-bonus-submit {
    width: 100%;
    margin-top: 6px;
    padding: 15px 22px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}
.cr-bonus-submit:disabled { opacity: .55; cursor: not-allowed; }
.cr-bonus-history {
    background: var(--cr-bg3);
    border: 1px solid var(--cr-border);
    border-radius: 12px;
    padding: 22px 24px;
}
.cr-bonus-history__title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
}
.cr-bonus-history__title i { color: var(--cr-blue); }
.cr-bonus-empty {
    text-align: center;
    padding: 36px 16px;
    color: var(--cr-muted);
}
.cr-bonus-empty i {
    font-size: 2.2rem;
    opacity: .35;
    margin-bottom: 10px;
    display: block;
}
.cr-bonus-empty p { margin: 0; font-size: .85rem; }
.cr-bonus-item {
    background: rgba(0, 0, 0, .25);
    border: 1px solid rgba(0, 180, 255, .1);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}
.cr-bonus-item:last-child { margin-bottom: 0; }
.cr-bonus-item__row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
}
.cr-bonus-item__info { min-width: 0; flex: 1; }
.cr-bonus-item__info strong {
    display: block;
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.cr-bonus-item__info span {
    display: block;
    color: var(--cr-muted);
    font-size: .75rem;
}
.cr-bonus-item__info em {
    display: inline-block;
    margin-top: 6px;
    font-style: normal;
    color: var(--cr-blue-light);
    font-size: .82rem;
    font-weight: 700;
}
.cr-bonus-badge {
    flex-shrink: 0;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3px;
}
.cr-bonus-badge--pending {
    background: rgba(255, 159, 26, .18);
    color: var(--cr-gold-light);
}
.cr-bonus-badge--approved {
    background: rgba(0, 200, 80, .18);
    color: #5fff5f;
}
.cr-bonus-badge--rejected {
    background: rgba(255, 60, 60, .18);
    color: #ff7777;
}
.cr-bonus-item__note {
    margin: 0;
    padding: 12px 16px;
    border-top: 1px solid rgba(0, 180, 255, .08);
    color: var(--cr-muted);
    font-size: .78rem;
    line-height: 1.5;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}
.cr-bonus-item__note i {
    color: var(--cr-blue);
    opacity: .75;
    margin-top: 2px;
}

/* Scrollbar polish */
body.page-desktop::-webkit-scrollbar { width: 8px; height: 8px; }
body.page-desktop::-webkit-scrollbar-track { background: var(--cr-bg); }
body.page-desktop::-webkit-scrollbar-thumb {
    background: var(--cr-bg4);
    border-radius: 4px;
    border: 1px solid rgba(0, 180, 255, .2);
}
body.page-desktop::-webkit-scrollbar-thumb:hover { background: var(--cr-blue-dark); }

/* ============================================================
   BetXmen home extras (promo banners, auth)
   ============================================================ */
.bx-hero-fallback {
    min-height: var(--cr-home-hero-h);
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(0,180,255,.25), transparent 55%),
        linear-gradient(135deg, #061428, #0a1f3d 50%, #040a17);
    border: 1px solid var(--cr-border);
    border-radius: 12px;
    padding: 40px;
}
.bx-hero-fallback__copy { text-align: center; max-width: 560px; }
.bx-hero-fallback__copy h2 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: .02em;
    margin-bottom: 12px;
    text-shadow: 0 0 24px rgba(0,180,255,.35);
}
.bx-hero-fallback__copy p { color: var(--cr-muted); margin-bottom: 20px; }
.bx-more-wrap { text-align: center; margin-top: 18px; }

/* Alt promo bannerlar (Pragmatic / Spor / Canlı Casino) */
.bx-d-endbanners { padding: 8px 0 28px; }
.bx-d-endbanners .cr-container { padding-left: 8px; padding-right: 8px; }
.bx-d-endbanners__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.bx-d-endbanners__item {
    display: block;
    border-radius: 0;
    overflow: visible;
    border: none;
    box-shadow: none;
    line-height: 0;
    text-decoration: none !important;
    background: transparent;
    transition: filter .2s;
}
.bx-d-endbanners__item:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
    filter: brightness(1.05);
}
.bx-d-endbanners__item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}
@media (max-width: 1100px) {
    .bx-d-endbanners__grid { gap: 10px; }
}
@media (max-width: 900px) {
    .bx-d-endbanners__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

.bx-promo-banners { padding: 10px 0 32px; }
.bx-promo-banners__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.bx-promo-banner {
    display: flex;
    align-items: flex-end;
    min-height: 180px;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--cr-border);
    background:
        linear-gradient(90deg, rgba(4,10,23,.85), rgba(4,10,23,.35)),
        linear-gradient(135deg, #0d2448, #061428);
    color: #fff;
    transition: .2s;
}
.bx-promo-banner:hover {
    border-color: var(--cr-blue);
    box-shadow: var(--cr-glow);
    color: #fff;
}
.bx-promo-banner h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: .03em;
}
.bx-promo-banner--sport {
    background:
        linear-gradient(90deg, rgba(4,10,23,.85), rgba(4,10,23,.35)),
        linear-gradient(135deg, #122b1a, #061428);
}
.bx-vision { text-align: left; margin: 0 0 40px; }
.bx-vision .bx-section-title { margin-bottom: 16px; }
.bx-vision__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    color: var(--cr-muted);
    line-height: 1.7;
    font-size: .9rem;
}
.bx-auth-head { text-align: center; margin-bottom: 20px; }
.bx-auth-head h2 {
    font-size: 1.55rem;
    font-weight: 800;
    color: #4da3ff;
    margin-bottom: 6px;
}
.bx-auth-head p { color: var(--cr-muted); font-size: .9rem; }
.bx-field-label {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    color: var(--cr-blue-light);
    margin: 0 0 6px;
}
.bx-field-label em { color: #4dcfff; font-style: normal; }

.cr-birth-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin-bottom: 10px;
}
.bx-form-section {
    grid-column: 1 / -1;
    color: var(--cr-blue);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin: 8px 0 4px;
    padding-top: 8px;
    border-top: 1px solid rgba(0,180,255,.15);
}
.bx-auth-panel {
    background: linear-gradient(180deg, rgba(10,21,40,.97), rgba(4,10,23,.98)) !important;
    border: 1px solid var(--cr-border) !important;
    box-shadow: 0 24px 80px rgba(0,0,0,.55), var(--cr-glow) !important;
}
.bx-pay-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 18px 0 12px;
}
.bx-pay-row span {
    padding: 6px 12px;
    border-radius: 6px;
    background: var(--cr-bg3);
    border: 1px solid rgba(0,180,255,.15);
    color: #c5d4e8;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .04em;
}
.bx-footer-brand {
    text-align: center;
    padding: 28px 0 12px;
}
.bx-logo--footer .bx-logo__text { font-size: 1.6rem; }

/* Catalog provider/search sheets (desktop) */
.bx-m-prov-page {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: flex;
    flex-direction: column;
    background: #040a17;
    padding-top: env(safe-area-inset-top, 0px);
}
.bx-m-prov-page[hidden] { display: none !important; }
.bx-m-prov-page__hero {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 16px 30px;
    background:
        radial-gradient(120% 80% at 10% 0%, rgba(255,255,255,.18), transparent 55%),
        linear-gradient(180deg, #3483fa 0%, #2f7cf6 55%, #1f63d4 100%);
    color: #fff;
}
.bx-m-prov-page__hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 22px;
    background:
        radial-gradient(18px 14px at 12% 0, transparent 98%, #040a17) 0 0 / 36px 22px repeat-x,
        radial-gradient(18px 14px at 12% 0, transparent 98%, #040a17) 18px 0 / 36px 22px repeat-x;
}
.bx-m-prov-page__hero-text { position: relative; z-index: 1; min-width: 0; }
.bx-m-prov-page__hero-text h2 {
    margin: 0 0 6px;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: .01em;
}
.bx-m-prov-page__hero-text p {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: .72rem;
    font-weight: 600;
    opacity: .95;
}
.bx-m-prov-page__live {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.bx-m-prov-page__live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, .25);
}
.bx-m-prov-page__back {
    position: relative;
    z-index: 1;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    color: #fff;
    font-size: .95rem;
    cursor: pointer;
    flex-shrink: 0;
}
.bx-m-prov-page__body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 14px 12px calc(18px + env(safe-area-inset-bottom));
    -webkit-overflow-scrolling: touch;
}
.bx-m-prov-page__search {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 44px;
    padding: 0 14px;
    border-radius: 12px;
    background: #121820;
    border: 1px solid rgba(255, 255, 255, .08);
    margin-bottom: 12px;
    position: sticky;
    top: 0;
    z-index: 2;
}
.bx-m-prov-page__search i { color: rgba(255,255,255,.45); font-size: .85rem; }
.bx-m-prov-page__search input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    color: #fff;
    outline: none;
    font-size: .85rem;
    font-family: inherit;
}
.bx-m-prov-page__search input::placeholder { color: rgba(255,255,255,.4); }
.bx-m-prov-page__filters {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    margin-bottom: 14px;
}
.bx-m-prov-page__filters::-webkit-scrollbar { display: none; }
.bx-m-prov-page__filter {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: none;
    background: #161d27;
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
}
.bx-m-prov-page__filter i { font-size: .72rem; }
.bx-m-prov-page__filter[data-prov-filter="hot"] i { color: #60a5fa; }
.bx-m-prov-page__filter[data-prov-filter="popular"] i { color: #fbbf24; }
.bx-m-prov-page__filter[data-prov-filter="win"] i { color: #4ade80; }
.bx-m-prov-page__filter.active {
    background: #2f7cf6;
}
.bx-m-prov-page__filter.active i { color: #fff; }
.bx-m-prov-page__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.bx-m-prov-card {
    display: flex;
    flex-direction: column;
    min-height: 168px;
    padding: 8px 8px 10px;
    border-radius: 14px;
    background: #0b1018;
    border: 1px solid rgba(255, 255, 255, .06);
}
.bx-m-prov-card.active {
    border-color: rgba(47, 124, 246, .7);
    box-shadow: 0 0 0 1px rgba(47, 124, 246, .35);
}
.bx-m-prov-card[hidden] { display: none !important; }
.bx-m-prov-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4px;
    min-height: 22px;
}
.bx-m-prov-card__badges {
    display: flex;
    gap: 3px;
    flex-wrap: wrap;
}
.bx-m-prov-card__badge {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .48rem;
    color: #fff;
}
.bx-m-prov-card__badge--hot { background: #2563eb; }
.bx-m-prov-card__badge--popular { background: #f59e0b; }
.bx-m-prov-card__badge--win { background: #16a34a; }
.bx-m-prov-card__count {
    font-size: .48rem;
    font-weight: 800;
    letter-spacing: .02em;
    color: #9ec5ff;
    background: rgba(10, 20, 40, .9);
    border: 1px solid rgba(158, 197, 255, .25);
    border-radius: 6px;
    padding: 2px 5px;
    white-space: nowrap;
}
.bx-m-prov-card__logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 4px;
    min-height: 58px;
}
.bx-m-prov-card__logo img {
    max-width: 100%;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.bx-m-prov-card__logo span {
    font-size: .62rem;
    font-weight: 800;
    text-align: center;
    color: #cfe3ff;
    line-height: 1.2;
}
.bx-m-prov-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 30px;
    border: none;
    border-radius: 999px;
    background: #2f7cf6;
    color: #fff;
    font-size: .58rem;
    font-weight: 800;
    font-family: inherit;
    cursor: pointer;
}
.bx-m-prov-card__btn i {
    font-size: .5rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* legacy list sheet (unused) */
.bx-m-prov-sheet { display: none !important; }
body.bx-prov-sheet-open,
body.bx-search-sheet-open { overflow: hidden; }
body.bx-prov-sheet-open .cr-bottom-nav,
body.bx-search-sheet-open .cr-bottom-nav,
body.bx-prov-sheet-open .bx-m-livechat,
body.bx-search-sheet-open .bx-m-livechat,
body.bx-prov-sheet-open .cr-livechat-fab,
body.bx-search-sheet-open .cr-livechat-fab {
    visibility: hidden !important;
    pointer-events: none !important;
}

.bx-m-search-sheet {
    position: fixed;
    inset: 0;
    z-index: 1300;
}
.bx-m-search-sheet[hidden] { display: none !important; }
.bx-m-search-sheet__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 8, 24, .55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}
.bx-m-search-sheet__panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0b0f14;
    border-radius: 18px 18px 0 0;
    border-top: 1px solid rgba(52, 131, 250, .55);
    padding: 16px 16px calc(18px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -8px 28px rgba(0, 0, 0, .45);
}
.bx-m-search-sheet__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.bx-m-search-sheet__head strong {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
}
.bx-m-search-sheet__close {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: #1a222d;
    color: #fff;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}
.bx-m-search-sheet__form input[name="search"] {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border-radius: 14px;
    border: 1.5px solid #2f7cf6;
    background: #0b0f14;
    color: #fff;
    font-size: .9rem;
    font-weight: 500;
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
}
.bx-m-search-sheet__form input[name="search"]::placeholder {
    color: rgba(255, 255, 255, .45);
}
.bx-m-search-sheet__form input[name="search"]:focus {
    border-color: #3483fa;
    box-shadow: 0 0 0 3px rgba(47, 124, 246, .2);
}

/* ============================================================
   Desktop profile wallet dropdown (mobile-like)
   ============================================================ */
.bx-d-profile-drop {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.bx-d-wallet-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(47, 124, 246, .45);
    background: #0a1628;
    color: #4da3ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: .15s;
}
.bx-d-wallet-btn:hover {
    background: rgba(47, 124, 246, .15);
    color: #fff;
}
.bx-d-balance-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid rgba(47, 124, 246, .35);
    background: #0a1628;
    color: #fff;
    font-family: inherit;
    cursor: pointer;
    transition: .15s;
}
.bx-d-balance-pill:hover {
    border-color: #2f7cf6;
    background: rgba(47, 124, 246, .1);
}
.bx-d-balance-pill__amount {
    font-size: .9rem;
    font-weight: 800;
    letter-spacing: .02em;
}
.bx-d-balance-pill__chevron {
    font-size: .7rem;
    color: #8fa3c0;
    transition: transform .2s;
}
.bx-d-profile-drop.is-open .bx-d-balance-pill__chevron {
    transform: rotate(180deg);
}
.bx-d-profile-drop__backdrop {
    position: fixed;
    inset: 0;
    z-index: 1180;
    background: rgba(2, 8, 24, .35);
    border: none;
    padding: 0;
    margin: 0;
}
.bx-d-profile-drop__backdrop[hidden] { display: none !important; }
.bx-d-profile-drop__panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 300px;
    z-index: 1190;
    background: #0a1a38;
    border: 1.5px solid #2f7cf6;
    border-radius: 12px;
    padding: 14px 12px 10px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .5);
}
.bx-d-profile-drop__panel[hidden] { display: none !important; }
.bx-d-profile-drop__user {
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    padding: 0 4px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    margin-bottom: 10px;
}
.bx-d-profile-drop__wallet {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 4px 4px 12px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.bx-d-profile-drop__wallet-label {
    font-size: .8rem;
    font-weight: 600;
    color: #c8d4ea;
}
.bx-d-profile-drop__wallet-val {
    font-size: .9rem;
    font-weight: 800;
    color: #fff;
}
.bx-d-profile-drop__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}
.bx-d-profile-drop__act {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 40px;
    border-radius: 10px;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .03em;
    text-decoration: none !important;
    font-family: inherit;
    cursor: pointer;
}
.bx-d-profile-drop__act--outline {
    background: transparent;
    border: 1.5px solid #2f7cf6;
    color: #fff;
}
.bx-d-profile-drop__act--solid {
    background: #2f7cf6;
    border: 1.5px solid #2f7cf6;
    color: #fff;
}
.bx-d-profile-drop__act:hover { filter: brightness(1.08); color: #fff; }
.bx-d-profile-drop__nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.bx-d-profile-drop__item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 11px 8px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-align: left;
    text-decoration: none !important;
    font-family: inherit;
    cursor: pointer;
    border-radius: 8px;
    transition: background .15s;
}
.bx-d-profile-drop__item:hover {
    background: rgba(47, 124, 246, .12);
    color: #fff;
}
.bx-d-profile-drop__item i:first-child {
    width: 18px;
    text-align: center;
    color: #fff;
    font-size: .95rem;
}
.bx-d-profile-drop__item--acc {
    position: relative;
}
.bx-d-profile-drop__chevron {
    margin-left: auto;
    font-size: .65rem;
    color: #8fa3c0;
    transition: transform .2s;
}
.bx-d-profile-drop__item--acc.is-open .bx-d-profile-drop__chevron {
    transform: rotate(180deg);
}
.bx-d-profile-acc__sub {
    padding: 2px 0 6px 8px;
}
.bx-d-profile-acc__sub[hidden] { display: none !important; }
.bx-d-profile-drop__item--sub {
    padding-left: 14px;
    font-size: .72rem;
    color: #c8d4ea;
}
.bx-d-profile-drop__item--logout,
.bx-d-profile-drop__item--logout i,
.bx-d-profile-drop__item--logout span {
    color: #ff8a8a;
}

/* Finance page (desktop) */
.bx-d-finance-page {
    padding: 28px 16px 60px;
    display: flex;
    justify-content: center;
}
.bx-d-finance-page__card {
    width: 100%;
    max-width: 720px;
    background: #07122c;
    border: 1px solid rgba(77, 207, 255, .28);
    border-radius: 16px;
    padding: 24px 28px 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
}
body.page-desktop.page-finance .bx-m-finance__head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 0 18px;
}
body.page-desktop.page-finance .bx-m-finance__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #2f7cf6;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
body.page-desktop.page-finance .bx-m-finance__title {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
}
body.page-desktop.page-finance .bx-m-finance__sub {
    margin: 4px 0 0;
    font-size: .85rem;
    color: #8fa0c0;
}
body.page-desktop.page-finance .bx-m-finance__tabs.cr-finance-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    border: none;
    margin-bottom: 20px;
}
body.page-desktop.page-finance .bx-m-finance__tabs button {
    height: 48px;
    border-radius: 12px;
    background: #121f3d;
    color: #9aabc8;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
}
body.page-desktop.page-finance .bx-m-finance__tabs button.active {
    background: #2f7cf6;
    color: #fff;
}
body.page-desktop.page-finance .bx-m-finance__section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    font-size: .95rem;
    font-weight: 700;
    color: #e8eefc;
}
body.page-desktop.page-finance .bx-m-pay-grid.cr-pay-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0;
}
body.page-desktop.page-finance {
    background-color: #040a17;
    background-image:
        linear-gradient(180deg, rgba(4, 10, 23, .55) 0%, rgba(4, 10, 23, .72) 100%),
        url('../imgi_119_bg.webp');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-attachment: fixed;
}

/* Account pages wrapper */
.bx-d-account-page {
    max-width: 860px;
    margin: 0 auto;
    padding: 28px 16px 60px;
}
body.page-desktop.page-profile,
body.page-desktop.page-security,
body.page-desktop.page-promocode,
body.page-desktop.page-biometric,
body.page-desktop.page-casino-history,
body.page-desktop.page-history,
body.page-desktop.page-bonus-history,
body.page-desktop.page-wheel-history,
body.page-desktop.page-callback {
    background-color: #040a17;
    background-image:
        linear-gradient(180deg, rgba(4, 10, 23, .55) 0%, rgba(4, 10, 23, .72) 100%),
        url('../imgi_119_bg.webp');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-attachment: fixed;
}
/* Mobile account CSS uses body.page-mobile — enable key blocks on desktop wrappers */
body.page-desktop .bx-d-account-page .bx-m-casino-hist,
body.page-desktop .bx-d-account-page .bx-m-history-page,
body.page-desktop .bx-d-account-page .bx-m-auth,
body.page-desktop .bx-d-account-page .bx-m-profile,
body.page-desktop .bx-d-account-page .bx-m-security,
body.page-desktop .bx-d-account-page .bx-m-promo,
body.page-desktop .bx-d-account-page .bx-m-bio-card {
    max-width: 100%;
}
