:root{
    --bg-body:#121212;
    --bg-home-section-one: #191919;
    --bg-home-section-two: #1F1F1F;
    --bg-section-one: #191919;
    --bg-section-two: #1F1F1F;
    --bg-section-three: #2D2D2D;
    --bg-header:#121212;
    --bg-sidebar:#191919;
    --bg-footer:#111827;
    --bg-card:#111827;
    --bg-soft:#1e293b;
    --bg-input:#020204;
    --bg-overlay:rgba(0,0,0,.5);
    --bg-auth-modal:#121212;
    --primary-hover:color-mix(in srgb, var(--primary) 60%, transparent);
    --bg-primary:var(--primary);
    --text-primary:var(--primary);
    --text-secondary:rgba(255,255,255,.60);
    --text-dark:#000000;
    --color-second:var(--primary);
    --color-second-hover:color-mix(in srgb, var(--primary) 60%, transparent);
    --border-color:rgba(255,255,255,.05);
    --icon-color:#ffffff;
    --icon-text-color:#ffffff;
    --icon-active-color:var(--primary);
    --icon-text-active-color:var(--primary);
    --icon-second-color:var(--primary);
    --icon-text-second-color:var(--primary);
    --bg-footer-guest: #121212;
    --border-footer-guest: rgba(255,255,255,.05);
    --bg-footer-auth-base-top: #2e2e2e;
    --bg-footer-auth-base-mid: #161616;
    --bg-footer-auth-base-bottom: #0a0a0a;
    --bg-footer-auth-spot-center: #4a4a4a;
    --bg-footer-auth-spot-mid: #1e1e1e;
    --border-footer-auth: #555555;
    --bg-toast: #ffffff;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter',sans-serif;
}

html,
body{
    width:100%;
    min-height:100%;
    font-family:'Inter',sans-serif;
}

body{
    background:var(--bg-body);
    color:var(--text-primary);
    font-family:'Inter',sans-serif;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    user-select:none;
    pointer-events:none;
}

.header{
    background:var(--bg-header);
    border-color:var(--border-color);
}

.sidebar{
    background:var(--bg-sidebar);
}

.auth-modal{
    background:var(--bg-auth-modal);
}

.footer{
    background:var(--bg-footer);
    border-color:var(--border-color);
}

.footer-guest-menu{
    background: var(--bg-footer-guest);
    border-top: 1px solid var(--border-footer-guest);
}

.footer-auth-menu{
    background: var(--bg-footer-auth-base-bottom);
}

.card{
    background:var(--bg-card);
}

.soft-bg{
    background:var(--bg-soft);
}

.input-bg{
    background:var(--bg-input);
    color:var(--text-primary);
}

.btn-primary{
    background:var(--primary);
    color:var(--text-dark);
}

.btn-primary:hover{
    background:var(--primary-hover);
}

.btn-second{
    background:var(--color-second);
    color:var(--text-primary);
}

.btn-second:hover{
    background:var(--color-second-hover);
}

.text-brand{
    color:var(--primary);
}

.text-secondary-color{
    color:var(--text-secondary);
}

.icon{
    color:var(--icon-color);
}

.icon svg{
    stroke:var(--icon-color);
    fill:var(--icon-color);
}

.icon-text{
    color:var(--icon-text-color);
}

.icon-active{
    color:var(--icon-active-color);
}

.icon-active svg{
    stroke:currentColor;
    fill:currentColor;
}

.icon-text-active{
    color:var(--icon-text-active-color);
}

.icon-second{
    color:var(--icon-second-color);
}

.icon-second svg{
    stroke:var(--icon-second-color);
    fill:var(--icon-second-color);
}

.icon-text-second{
    color:var(--icon-text-second-color);
}

.overlay-bg{
    background:var(--bg-overlay);
}

#sidebar.active{
    left:0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px var(--bg-input) inset !important;
    box-shadow: 0 0 0px 1000px var(--bg-input) inset !important;
    -webkit-text-fill-color: #ffffff !important;
    caret-color: #ffffff;
    transition: background-color 9999s ease-in-out 0s;
}

.tab-btn .tab-icon-box{
    background-color: rgba(255,255,255,0.08);
}

.tab-btn .tab-icon{
    filter: brightness(0) invert(1);
    opacity: 0.6;
}

.tab-btn .tab-label{
    color: rgba(255,255,255,0.6);
}

.tab-btn.active-tab .tab-icon-box{
    background-color: var(--bg-primary, var(--icon-second-color, #f59e0b));
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

.tab-btn.active-tab .tab-icon{
    filter: brightness(0) invert(1);
    opacity: 1;
}

.tab-btn.active-tab .tab-label{
    color: #ffffff;
}

.nav-menu-item .nav-svg{
    color: #ffffff;
}

.nav-menu-item .nav-label{
    color: #ffffff;
}

.nav-menu-item.active-nav .nav-svg{
    color: var(--text-primary);
}

.nav-menu-item.active-nav .nav-label{
    color: var(--text-primary);
}

.footer-active { color: var(--text-primary) !important; }
.footer-active i, .footer-active span { color: var(--text-primary) !important; }

.login-blink { animation: loginBlink 1.8s ease-in-out infinite; }
@keyframes loginBlink {
    0%,100% { opacity:1; color:var(--text-primary); }
    50%      { opacity:.45; color:#fff; }
}

.footer-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 10px;
    gap: 4px;
    font-size: 11px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.deposit-btn-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 10px;
    gap: 4px;
    cursor: pointer;
}
.deposit-circle-outer {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 4px solid var(--bg-background);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    transform: translateY(-28px);
    margin-bottom: -28px;
}
.deposit-circle-inner {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
}

#depositPopup {
    position: fixed;
    background: var(--bg-primary, #e00000);
    border-radius: 14px;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    z-index: 500;
    overflow: visible;
    opacity: 0; pointer-events: none;
    transform: translateY(6px);
    transition: opacity .2s ease, transform .2s ease;
}
#depositPopup.open { opacity:1; pointer-events:auto; transform:translateY(0); }
.deposit-popup-inner { display:flex; align-items:stretch; border-radius:14px; overflow:hidden; }
#depositPopup a {
    color:#fff; font-weight:800; font-size:13px; letter-spacing:.04em;
    padding:13px 22px; text-decoration:none;
    display:flex; align-items:center; justify-content:center;
    background:var(--bg-primary,#e00000); transition:background .15s;
}
#depositPopup a:hover { background:rgba(255,255,255,.15); }
.popup-divider { width:1.5px; background:rgba(255,255,255,.3); align-self:stretch; margin:8px 0; }
#depositPopupArrow {
    position:absolute; bottom:-7px;
    transform:translateX(-50%);
    width:0; height:0;
    border-left:6px solid transparent;
    border-right:6px solid transparent;
    border-top:7px solid var(--bg-primary,#e00000);
    pointer-events:none;
}

#deposit-overlay { display:none; position:fixed; inset:0; z-index:490; }
#deposit-overlay.active { display:block; }
#float-overlay { display:none; position:fixed; inset:0; z-index:590; background:rgba(0,0,0,.4); backdrop-filter:blur(2px); }
#float-overlay.active { display:block; }

#floatMenuBtn {
    position: fixed !important;
    left: 14px !important;
    bottom: 30% !important;
    width: 54px; height: 54px;
    border-radius: 18px;
    border: none; outline: none;
    cursor: pointer;
    z-index: 600;
    overflow: hidden;
    background: var(--bg-primary, #e00000);
    box-shadow:
        0 0 0 2px rgba(255,255,255,0.18),
        0 0 20px 4px rgba(var(--bg-primary-rgb, 200,0,0),.45),
        0 6px 24px rgba(0,0,0,.55);
    display: flex; align-items: center; justify-content: center;
    transition: border-radius .35s ease, box-shadow .3s ease, transform .2s ease;
}



#floatMenuBtn:active { transform: scale(.92); }
#floatMenuBtn.open {
    border-radius: 50%;
    box-shadow:
        0 0 0 2px rgba(255,255,255,0.3),
        0 0 28px 6px rgba(var(--bg-primary-rgb,200,0,0),.6),
        0 6px 24px rgba(0,0,0,.55);
}
#floatMenuBtn::before {
    content:'';
    position:absolute; inset:-6px;
    border-radius: inherit;
    border:2px solid var(--bg-primary,#e00000);
    opacity:0;
    animation: floatPulse 2.4s ease-out infinite;
}
@keyframes floatPulse {
    0%   { transform:scale(.85); opacity:.7; }
    70%  { transform:scale(1.35); opacity:0; }
    100% { opacity:0; }
}
.fham {
    position: absolute;
    display: flex; flex-direction: column; gap: 5px;
    transition: opacity .25s ease, transform .35s cubic-bezier(.4,0,.2,1);
}
.fham span {
    display: block;
    width: 24px; height: 2.5px;
    border-radius: 2px;
    background: #ffffff;
    transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .2s ease;
}
#floatMenuBtn.open .fham span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
#floatMenuBtn.open .fham span:nth-child(2) { opacity:0; transform: scaleX(0); }
#floatMenuBtn.open .fham span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

#floatMenu {
    position: fixed;
    left: 14px;
    z-index: 595;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}
.float-item {
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: none;
    opacity: 0;
    transform: translateX(-20px) scale(.7) rotate(-120deg);
    transform-origin: 27px center;
    transition: opacity .4s ease, transform .4s cubic-bezier(.34,1.56,.64,1);
}
.float-item.visible { opacity:1; transform:translateX(0) scale(1) rotate(0deg); pointer-events:auto; }
#floatMenu .float-item:nth-child(5).visible { transition-delay:.00s; }
#floatMenu .float-item:nth-child(4).visible { transition-delay:.07s; }
#floatMenu .float-item:nth-child(3).visible { transition-delay:.14s; }
#floatMenu .float-item:nth-child(2).visible { transition-delay:.21s; }
#floatMenu .float-item:nth-child(1).visible { transition-delay:.28s; }
#floatMenu .float-item:nth-child(1) { transition-delay:.00s; }
#floatMenu .float-item:nth-child(2) { transition-delay:.05s; }
#floatMenu .float-item:nth-child(3) { transition-delay:.10s; }
#floatMenu .float-item:nth-child(4) { transition-delay:.15s; }
#floatMenu .float-item:nth-child(5) { transition-delay:.20s; }
.float-item-icon {
    width: 50px; height: 50px;
    border-radius: 15px;
    background: rgba(10,10,10,.92);
    border: 2px solid var(--bg-primary,#e00000);
    box-shadow: 0 4px 18px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.06);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.float-item-icon::after {
    content:''; position:absolute; inset:0; border-radius:inherit;
    background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,.08), transparent 70%);
    pointer-events:none;
}
.float-item-icon i { font-size:22px; color:#fff; position:relative; z-index:1; }
.float-item-icon.ic-fb { border-color:#1877f2; }
.float-item-icon.ic-fb i { color:#1877f2; }
.float-item-icon.ic-tg { border-color:#229ed9; }
.float-item-icon.ic-tg i { color:#229ed9; }
.float-item-icon.ic-wa { border-color:#25d366; }
.float-item-icon.ic-wa i { color:#25d366; }
.float-item-icon.ic-apk { border-color:#a4c639; }
.float-item-icon.ic-apk i { color:#a4c639; }
.float-item-icon.ic-rtp { border-color:var(--bg-primary,#e00000); background:var(--bg-primary,#e00000); }
.float-item-icon.ic-rtp i { color:#fff; }
.float-item-label {
    background: rgba(10,10,10,.82);
    border: 1px solid rgba(255,255,255,.1);
    color: #fff;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .03em;
    padding: 5px 11px;
    border-radius: 20px;
    white-space: nowrap;
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 10px rgba(0,0,0,.4);
}

@media (min-width: 1024px) {
    .footer-auth-menu,
    .footer-guest-menu { display: none !important; }
    #floatMenuBtn { display: none !important; }
}

/* =========================================
   MODAL
========================================= */

@media (min-width: 768px) {

    #registerModal {
        background: rgba(0,0,0,.72);
    }

}

.register-card {

    background: var(--bg-section-one);

    border:
        1px solid rgba(255,255,255,.07);

    box-shadow:
        0 25px 80px rgba(0,0,0,.45);
}


/* =========================================
   IMAGE
========================================= */

.register-image {
    position: relative;
    overflow: hidden;
    background: #111;
}

.register-image img {
    transition: transform .5s ease;
}

.register-card:hover .register-image img {
    transform: scale(1.04);
}

.register-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.05),
            rgba(0,0,0,.35) 55%,
            rgba(0,0,0,.88)
        );
}

.register-image-content {
    position: absolute;
    left: 25px;
    bottom: 28px;
    z-index: 2;
}

.register-logo-circle {
    width: 43px;
    height: 43px;

    border-radius: 13px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--color-second),
            rgba(255,255,255,.15)
        );
}


/* =========================================
   HEADER
========================================= */

.register-header {
    background: var(--bg-section-one);

    border-bottom:
        1px solid rgba(255,255,255,.06);
}

.register-close {
    background:
        rgba(255,255,255,.08);

    transition:
        all .2s ease;
}

.register-close:hover {
    background:
        rgba(255,255,255,.16);

    transform:
        rotate(90deg);
}


/* =========================================
   PROGRESS
========================================= */

.register-progress {

    height: 58px;

    padding:
        9px 15px;

    display: flex;
    align-items: center;

    border-bottom:
        1px solid rgba(255,255,255,.05);

    background:
        rgba(255,255,255,.015);
}

.register-progress-item {

    display: flex;
    align-items: center;

    gap: 7px;

    opacity: .38;

    transition:
        all .3s ease;
}

.register-progress-item.active {
    opacity: 1;
}

.register-progress-item > span {

    width: 28px;
    height: 28px;

    border-radius: 9px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        rgba(255,255,255,.07);

    color: white;

    font-size: 10px;
    font-weight: 700;
}

.register-progress-item.active > span {

    background:
        var(--color-second);

    box-shadow:
        0 5px 15px rgba(0,0,0,.2);
}

.register-progress-item b {

    display: block;

    color: white;

    font-size: 9px;
}

.register-progress-item small {

    display: block;

    color: rgba(255,255,255,.4);

    font-size: 7px;

    margin-top: 1px;
}

.register-progress-line {

    flex: 1;

    height: 2px;

    margin:
        0 9px;

    background:
        rgba(255,255,255,.08);

    overflow: hidden;

    border-radius: 10px;
}

.register-progress-line span {

    display: block;

    width: 0%;

    height: 100%;

    background:
        var(--color-second);

    transition:
        width .35s ease;
}


/* =========================================
   SLIDE AREA
========================================= */

.register-steps-viewport {

    height:
        calc(100% - 110px);

    overflow:
        hidden;
}

.register-steps {

    display: flex;

    width: 200%;

    height: 100%;

    transition:
        transform .4s cubic-bezier(.4,0,.2,1);
}

.register-step {

    width: 50%;

    flex:
        0 0 50%;

    height: 100%;

    overflow: hidden;
}

.register-scroll {

    height: 100%;

    overflow-y: auto;

    padding:
        16px 15px 30px;
}

.register-scroll::-webkit-scrollbar {
    width: 3px;
}

.register-scroll::-webkit-scrollbar-thumb {
    background:
        rgba(255,255,255,.12);

    border-radius: 10px;
}


/* =========================================
   SECTION
========================================= */

.register-section {
    margin-bottom: 19px;
}

.register-section-title {

    display: flex;
    align-items: center;

    gap: 8px;

    color: white;

    font-size: 12px;
    font-weight: 700;

    margin-bottom: 10px;
}

.section-icon {

    width: 25px;
    height: 25px;

    border-radius: 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    color:
        var(--color-second);

    background:
        rgba(255,255,255,.06);

    font-size: 10px;
}


/* =========================================
   INPUT
========================================= */

.register-input-group {

    position: relative;

    margin-bottom: 9px;
}

.register-input {

    width: 100%;
    height: 39px;

    border-radius: 11px;

    background:
        var(
            --input-bg,
            rgba(255,255,255,.045)
        );

    border:
        1px solid rgba(255,255,255,.08);

    padding-left: 39px;
    padding-right: 12px;

    color: white;

    font-size: 12px;

    outline: none;

    transition:
        border-color .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.register-input::placeholder {
    color:
        rgba(255,255,255,.42);
}

.register-input:focus {

    border-color:
        var(--color-second);

    background:
        rgba(255,255,255,.065);

    box-shadow:
        0 0 0 3px
        rgba(255,255,255,.025);
}

.register-input-icon {

    position: absolute;

    left: 13px;
    top: 50%;

    transform:
        translateY(-50%);

    color:
        rgba(255,255,255,.45);

    font-size: 13px;

    z-index: 2;

    pointer-events: none;
}


/* =========================================
   PASSWORD
========================================= */

.register-input-password {
    padding-right: 40px;
}

.register-password-toggle {

    position: absolute;

    right: 12px;
    top: 50%;

    transform:
        translateY(-50%);

    color:
        rgba(255,255,255,.45);

    font-size: 13px;
}

.register-password-toggle:hover {
    color: white;
}


/* =========================================
   SELECT
========================================= */

.register-select {

    appearance: none;

    -webkit-appearance: none;

    cursor: pointer;
}

.register-select option {

    background: #181818;

    color: white;
}


/* =========================================
   VERIFY
========================================= */

.register-input-verify {
    padding-right: 105px;
}

.register-verify-button {

    position: absolute;

    right: 5px;
    top: 50%;

    transform:
        translateY(-50%);

    height: 29px;

    padding:
        0 10px;

    border-radius: 7px;

    background:
        var(--color-second);

    color: white;

    font-size: 9px;

    font-weight: 700;

    white-space: nowrap;

    z-index: 3;

    transition:
        all .2s ease;
}

.register-verify-button:hover {
    filter:
        brightness(1.08);
}

.register-verify-status {

    padding:
        8px 10px;

    border-radius:
        8px;

    font-size:
        9px;

    line-height:
        14px;

    margin-top:
        -3px;

    margin-bottom:
        9px;

    background:
        rgba(255,255,255,.035);

    border:
        1px solid rgba(255,255,255,.06);
}


/* =========================================
   HELP
========================================= */

.register-help {

    font-size: 9px;

    line-height: 15px;

    color:
        var(--text-secondary);

    margin-top: -3px;

    margin-bottom: 9px;

    padding-left: 2px;
}


/* =========================================
   BANNER
========================================= */

.register-banner {

    position: relative;

    height: 95px;

    border-radius: 13px;

    overflow: hidden;

    margin:
        -3px 0 19px;

    border:
        1px solid rgba(255,255,255,.07);

    background:
        rgba(255,255,255,.04);
}

.register-banner img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

.register-banner-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.78),
            rgba(0,0,0,.20)
        );
}

.register-banner-content {

    position: absolute;

    left: 14px;
    top: 50%;

    transform:
        translateY(-50%);

    z-index: 2;
}

.register-banner-badge {

    display: inline-block;

    padding:
        3px 7px;

    border-radius: 5px;

    background:
        var(--color-second);

    color: white;

    font-size: 7px;

    font-weight: 700;

    margin-bottom: 5px;
}

.register-banner-title {

    color: white;

    font-size: 12px;

    font-weight: 700;
}

.register-banner-text {

    color:
        rgba(255,255,255,.65);

    font-size: 8px;

    margin-top: 3px;
}


/* =========================================
   NEXT
========================================= */

.register-next-button {

    width: 100%;
    height: 40px;

    border-radius: 11px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    background:
        var(--color-second);

    color: white;

    font-size: 11px;

    font-weight: 700;

    box-shadow:
        0 7px 20px rgba(0,0,0,.18);

    transition:
        all .2s ease;
}

.register-next-button:hover {

    filter:
        brightness(1.08);

    transform:
        translateY(-1px);
}


/* =========================================
   BACK
========================================= */

.register-back-button {

    width: 100%;

    height: 36px;

    margin-top: 9px;

    border-radius: 10px;

    color:
        rgba(255,255,255,.55);

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.06);

    font-size: 9px;

    transition:
        all .2s ease;
}

.register-back-button:hover {

    color: white;

    background:
        rgba(255,255,255,.07);
}


/* =========================================
   PRIVACY
========================================= */

.register-privacy {

    display: flex;

    align-items: flex-start;

    gap: 8px;

    font-size: 9px;

    line-height: 15px;

    color:
        var(--text-secondary);

    margin-bottom: 15px;

    padding:
        10px 11px;

    border-radius: 10px;

    background:
        rgba(255,255,255,.025);

    border:
        1px solid rgba(255,255,255,.05);
}

.register-privacy i {

    color:
        var(--color-second);

    margin-top: 2px;
}


/* =========================================
   SUBMIT
========================================= */

.register-submit {

    transition:
        transform .2s ease,
        filter .2s ease,
        box-shadow .2s ease;

    box-shadow:
        0 7px 20px rgba(0,0,0,.18);
}

.register-submit:hover {

    filter:
        brightness(1.08);

    transform:
        translateY(-1px);
}


/* =========================================
   DIVIDER
========================================= */

.register-divider {

    display: flex;

    align-items: center;

    justify-content: center;

    padding:
        16px 0;
}

.register-divider span {

    width: 75px;

    height: 1px;

    background:
        rgba(255,255,255,.08);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .register-card {
        background:
            var(--bg-section-one);
    }

    .register-progress {
        height: 55px;
    }

    .register-steps-viewport {
        height:
            calc(100% - 107px);
    }

    .register-scroll {
        padding:
            15px 14px 30px;
    }

    .register-input {
        height: 38px;
    }

    .register-banner {
        height: 90px;
    }

    .register-input-verify {
        padding-right: 95px;
    }

    .register-verify-button {

        right: 5px;

        padding:
            0 8px;

        font-size: 8px;
    }

}


/* =========================================
   MOBILE SLIDE
========================================= */

@media (max-width: 767px) {

    #registerSteps {

        transition:
            transform .38s
            cubic-bezier(.4,0,.2,1);
    }
    
    

}

/* =========================================================
   LOGIN MODAL
========================================================= */

@media (min-width: 768px) {

    #loginModal {
        background: rgba(0, 0, 0, .72);
    }

}


/* =========================================================
   CARD
========================================================= */

.login-card {

    background: var(--bg-section-one);

    border: 1px solid rgba(255,255,255,.07);

    box-shadow:
        0 25px 80px rgba(0,0,0,.45),
        0 0 0 1px rgba(255,255,255,.02);

}


/* =========================================================
   IMAGE
========================================================= */

.login-image {

    position: relative;

    overflow: hidden;

    background: #111;

}


.login-image img {

    transition:
        transform .5s ease;

}


.login-card:hover .login-image img {

    transform: scale(1.04);

}


.login-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.05) 0%,
            rgba(0,0,0,.35) 55%,
            rgba(0,0,0,.88) 100%
        );

}


.login-image-content {

    position: absolute;

    left: 25px;

    bottom: 28px;

    z-index: 2;

}


.login-logo-circle {

    width: 43px;
    height: 43px;

    border-radius: 13px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--color-second),
            rgba(255,255,255,.15)
        );

    box-shadow:
        0 8px 25px rgba(0,0,0,.3);

}


/* =========================================================
   HEADER
========================================================= */

.login-header {

    background:
        var(--bg-section-one);

    border-bottom:
        1px solid rgba(255,255,255,.06);

}


.login-close {

    background:
        rgba(255,255,255,.08);

    transition:
        all .2s ease;

}


.login-close:hover {

    background:
        rgba(255,255,255,.16);

    transform:
        rotate(90deg);

}


/* =========================================================
   SECTION
========================================================= */

.login-section {

    margin-bottom: 20px;

}


.login-section-title {

    display: flex;

    align-items: center;

    gap: 8px;

    color: white;

    font-size: 12px;

    font-weight: 700;

    margin-bottom: 10px;

}


.login-section-icon {

    width: 25px;
    height: 25px;

    border-radius: 8px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--color-second);

    background:
        rgba(255,255,255,.06);

    font-size: 10px;

}


/* =========================================================
   INPUT GROUP
========================================================= */

.login-input-group {

    position: relative;

    margin-bottom: 10px;

}


.login-input {

    width: 100%;

    height: 39px;

    border-radius: 11px;

    background:
        var(
            --input-bg,
            rgba(255,255,255,.045)
        );

    border:
        1px solid rgba(255,255,255,.08);

    padding-left: 39px;

    padding-right: 12px;

    color: white;

    font-size: 12px;

    outline: none;

    transition:
        border-color .2s ease,
        background .2s ease,
        box-shadow .2s ease;

}


.login-input::placeholder {

    color:
        rgba(255,255,255,.42);

}


.login-input:focus {

    border-color:
        var(--color-second);

    background:
        rgba(255,255,255,.065);

    box-shadow:
        0 0 0 3px rgba(255,255,255,.025);

}


/* =========================================================
   INPUT ICON
========================================================= */

.login-input-icon {

    position: absolute;

    left: 13px;

    top: 50%;

    transform:
        translateY(-50%);

    color:
        rgba(255,255,255,.45);

    font-size: 13px;

    z-index: 2;

    pointer-events: none;

}


/* =========================================================
   PASSWORD
========================================================= */

.login-input-password {

    padding-right: 40px;

}


.login-password-toggle {

    position: absolute;

    right: 12px;

    top: 50%;

    transform:
        translateY(-50%);

    color:
        rgba(255,255,255,.45);

    font-size: 13px;

    transition:
        color .2s ease;

}


.login-password-toggle:hover {

    color: white;

}


/* =========================================================
   LOGIN BUTTON
========================================================= */

.login-main-button {

    transition:
        transform .2s ease,
        filter .2s ease,
        box-shadow .2s ease;

    box-shadow:
        0 7px 20px rgba(0,0,0,.18);

}


.login-main-button:hover {

    filter:
        brightness(1.08);

    transform:
        translateY(-1px);

    box-shadow:
        0 9px 24px rgba(0,0,0,.25);

}


.login-main-button:active {

    transform:
        translateY(0);

}


/* =========================================================
   DIVIDER
========================================================= */

.login-divider {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 17px 0;

}


.login-divider span {

    flex: 1;

    height: 1px;

    background:
        rgba(255,255,255,.08);

}


.login-divider-text {

    color:
        rgba(255,255,255,.30);

    font-size: 9px;

}


/* =========================================================
   REGISTER CARD
========================================================= */

.login-register-card {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 58px;

    border-radius: 11px;

    background:
        rgba(255,255,255,.025);

    border:
        1px solid rgba(255,255,255,.07);

    transition:
        background .2s ease,
        border-color .2s ease;

}


.login-register-card:hover {

    background:
        rgba(255,255,255,.04);

    border-color:
        rgba(255,255,255,.10);

}


.login-register-icon {

    width: 30px;
    height: 30px;

    border-radius: 9px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(255,255,255,.06);

    color:
        var(--color-second);

    font-size: 11px;

}


.login-register-content {

    text-align: center;

}


/* =========================================================
   MOBILE
========================================================= */

.login-mobile-welcome {

    text-align: center;

    margin-bottom: 20px;

}


.login-mobile-icon {

    width: 48px;
    height: 48px;

    margin: auto;

    border-radius: 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    color:
        var(--color-second);

    background:
        rgba(255,255,255,.06);

    border:
        1px solid rgba(255,255,255,.08);

    font-size: 18px;

}


@media (max-width: 767px) {

    .login-card {

        background:
            var(--bg-section-one);

    }

    .login-header {

        height: 50px;

    }

    .login-section {

        margin-bottom: 17px;

    }

    .login-input {

        height: 38px;

    }

}

/* =========================================================
   MODERN WALLET UI
   ========================================================= */

.wallet-page {
    min-height: 100vh;
    padding-bottom: 40px;
}

/* ---------- POPUP ---------- */

.wallet-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.wallet-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.78);
    backdrop-filter: blur(8px);
}

.wallet-popup {
    position: relative;
    z-index: 2;
    width: min(100%, 390px);
    overflow: hidden;
    border-radius: 18px;
    background: var(--bg-section-one);
    box-shadow: 0 25px 70px rgba(0,0,0,.5);
    animation: walletPopup .28s ease;
}

.wallet-popup-header {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    background:
        linear-gradient(
            135deg,
            var(--bg-primary),
            color-mix(in srgb, var(--bg-primary) 65%, #000)
        );
}

.wallet-popup-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.wallet-popup-close {
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.16);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .2s;
}

.wallet-popup-close:hover {
    background: #fff;
    color: #111;
    transform: rotate(90deg);
}

.wallet-popup-image {
    width: 100%;
    display: block;
    background: #000;
}

.wallet-popup-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 75vh;
    object-fit: contain;
}


/* ---------- PAGE ---------- */

.wallet-main {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 12px 80px;
}


/* ---------- BALANCE CARD ---------- */

.wallet-balance-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 20px;
    background:
        linear-gradient(
            135deg,
            var(--bg-primary),
            color-mix(in srgb, var(--bg-primary) 48%, #000)
        );
    box-shadow:
        0 15px 40px rgba(0,0,0,.20);
}

.wallet-balance-card::before {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    right: -75px;
    top: -95px;
    border-radius: 50%;
    background: rgba(255,255,255,.09);
}

.wallet-balance-card::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: 40px;
    bottom: -90px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
}

.wallet-balance-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wallet-user {
    display: flex;
    align-items: center;
    gap: 11px;
}

.wallet-user-icon {
    width: 43px;
    height: 43px;
    border-radius: 13px;
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.wallet-user-label {
    color: rgba(255,255,255,.62);
    font-size: 11px;
    margin-bottom: 2px;
}

.wallet-username {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.wallet-balance-label {
    position: relative;
    z-index: 2;
    margin-top: 22px;
    color: rgba(255,255,255,.65);
    font-size: 11px;
}

.wallet-balance {
    position: relative;
    z-index: 2;
    margin-top: 3px;
    color: #fff;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -.5px;
}

.wallet-refresh {
    position: relative;
    z-index: 2;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 10px;
    background: rgba(255,255,255,.12);
    color: #fff;
    cursor: pointer;
}

.wallet-actions {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
    margin-top: 20px;
}

.wallet-action {
    min-width: 0;
    border: 0;
    border-radius: 13px;
    padding: 10px 5px;
    background: rgba(255,255,255,.12);
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: .18s ease;
}

.wallet-action:hover {
    background: rgba(255,255,255,.20);
    transform: translateY(-2px);
}

.wallet-action-icon {
    width: 34px;
    height: 34px;
    margin: 0 auto 6px;
    border-radius: 10px;
    background: rgba(255,255,255,.13);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.wallet-action span {
    display: block;
    font-size: 10px;
    font-weight: 700;
}


/* ---------- BONUS BANNER ---------- */

.wallet-bonus-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    padding: 14px 16px;
    border-radius: 15px;
    color: #fff;
    text-decoration: none;
    background:
        linear-gradient(
            135deg,
            var(--bg-section-three),
            color-mix(in srgb, var(--bg-section-three) 70%, #000)
        );
    border: 1px solid rgba(255,255,255,.07);
    transition: .2s;
}

.wallet-bonus-banner:hover {
    transform: translateY(-1px);
}

.wallet-bonus-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    position: relative;
}

.wallet-bonus-icon .new {
    position: absolute;
    right: -7px;
    top: -7px;
    padding: 2px 5px;
    border-radius: 5px;
    background: #fff;
    color: #111;
    font-size: 7px;
    font-weight: 900;
}

.wallet-bonus-text strong {
    display: block;
    font-size: 12px;
}

.wallet-bonus-text small {
    display: block;
    margin-top: 3px;
    color: rgba(255,255,255,.55);
    font-size: 10px;
}


/* ---------- SECTION ---------- */

.wallet-section {
    margin-top: 16px;
}

.wallet-section-title {
    margin-bottom: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}


/* ---------- DEPOSIT TYPE ---------- */

.wallet-type-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.wallet-type {
    position: relative;
    height: 58px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    background: rgba(255,255,255,.035);
    color: rgba(255,255,255,.65);
    cursor: pointer;
    transition: .2s;
}

.wallet-type:hover {
    border-color: rgba(255,255,255,.18);
}

.wallet-type.active {
    color: #fff;
    border-color: var(--bg-primary);
    background:
        color-mix(
            in srgb,
            var(--bg-primary) 18%,
            transparent
        );
    box-shadow:
        inset 0 0 0 1px
        color-mix(
            in srgb,
            var(--bg-primary) 20%,
            transparent
        );
}

.wallet-type-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.wallet-type-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.07);
}

.wallet-type.active .wallet-type-icon {
    background: var(--bg-primary);
    color: #fff;
}

.wallet-type-title {
    font-size: 12px;
    font-weight: 800;
}

.wallet-type-sub {
    margin-top: 2px;
    font-size: 9px;
    color: rgba(255,255,255,.42);
}


/* ---------- PAYMENT CARD ---------- */

.payment-panel {
    margin-top: 12px;
    padding: 14px;
    border-radius: 17px;
    background: var(--bg-section-one);
    border: 1px solid rgba(255,255,255,.055);
}

.payment-input {
    position: relative;
    display: flex;
    align-items: center;
    height: 54px;
    margin-bottom: 10px;
    padding: 0 14px;
    border-radius: 13px;
    background: var(--input-bg);
    border: 1px solid rgba(255,255,255,.06);
    transition: .2s;
}

.payment-input:focus-within {
    border-color:
        color-mix(
            in srgb,
            var(--bg-primary) 65%,
            transparent
        );
    box-shadow:
        0 0 0 3px
        color-mix(
            in srgb,
            var(--bg-primary) 12%,
            transparent
        );
}

.payment-input i {
    width: 25px;
    margin-right: 8px;
    flex-shrink: 0;
    color: rgba(255,255,255,.42);
}

.payment-input input {
    width: 100%;
    height: 100%;
    outline: none;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.payment-input input::placeholder {
    color: rgba(255,255,255,.38);
}


/* ---------- PAYMENT SELECT ---------- */

.payment-select {
    position: relative;
    margin-bottom: 10px;
}

.payment-select-trigger {
    height: 54px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    border-radius: 13px;
    background: var(--input-bg);
    border: 1px solid rgba(255,255,255,.06);
    color: #fff;
    cursor: pointer;
    transition: .2s;
}

.payment-select-trigger:hover {
    border-color: rgba(255,255,255,.16);
}

.payment-select-label {
    flex: 1;
    font-size: 12px;
    font-weight: 700;
}

.payment-dropdown {
    position: absolute;
    z-index: 100;
    left: 0;
    right: 0;
    top: 57px;
    overflow: hidden;
    border-radius: 13px;
    background: var(--bg-section-three);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 20px 45px rgba(0,0,0,.38);
}


/* ---------- QRIS INFO ---------- */

.qris-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 14px;
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.015)
        );
    border: 1px solid rgba(255,255,255,.05);
}

.qris-info-content {
    flex: 1;
}

.qris-info-title {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.qris-info-description {
    margin-top: 4px;
    color: rgba(255,255,255,.48);
    font-size: 10px;
    line-height: 1.5;
}

.qris-logo {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 13px;
    background: rgba(255,255,255,.07);
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ---------- PROCESS BUTTON ---------- */

.payment-process {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 52px;
    margin: 12px 0;
    border: 0;
    border-radius: 13px;
    background:
        linear-gradient(
            135deg,
            var(--bg-primary),
            color-mix(
                in srgb,
                var(--bg-primary) 70%,
                #000
            )
        );
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .8px;
    cursor: pointer;
    box-shadow:
        0 10px 25px
        color-mix(
            in srgb,
            var(--bg-primary) 18%,
            transparent
        );
    transition: .2s;
}

.payment-process:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
}

.payment-process:active {
    transform: scale(.985);
}


/* ---------- NOTICE ---------- */

.wallet-notice {
    padding: 14px;
    border-radius: 14px;
    background: rgba(255,190,0,.055);
    border: 1px solid rgba(255,190,0,.20);
}

.wallet-notice-title {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 8px;
    color: #ffd43b;
    font-size: 12px;
    font-weight: 900;
}

.wallet-notice ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.wallet-notice li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    margin-bottom: 5px;
    color: rgba(255,255,255,.72);
    font-size: 10px;
    line-height: 1.45;
}

.wallet-notice li::before {
    content: "•";
    color: #ffd43b;
    font-weight: 900;
}


/* ---------- BANK INFO ---------- */

.bank-info-card {
    margin-top: 10px;
    padding: 15px;
    border-radius: 14px;
    background: var(--input-bg);
    border: 1px solid rgba(255,255,255,.05);
}

.bank-info-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.bank-info-title {
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.copy-btn {
    height: 30px;
    padding: 0 11px;
    border: 0;
    border-radius: 8px;
    background: var(--bg-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
}

.bank-info-row {
    display: grid;
    grid-template-columns: 105px 1fr;
    gap: 5px;
    margin-bottom: 8px;
    color: rgba(255,255,255,.52);
    font-size: 11px;
}

.bank-info-row strong {
    color: rgba(255,255,255,.9);
}


/* ---------- WITHDRAW ---------- */

.withdraw-card {
    padding: 15px;
    border-radius: 17px;
    background: var(--bg-section-one);
    border: 1px solid rgba(255,255,255,.055);
}


/* ---------- MOBILE ---------- */

@media (max-width: 767px) {

    .wallet-main {
        padding: 12px 10px 80px;
    }

    .wallet-balance-card {
        padding: 17px;
        border-radius: 18px;
    }

    .wallet-balance {
        font-size: 23px;
    }

    .wallet-action {
        padding: 9px 3px;
    }

    .wallet-action-icon {
        width: 32px;
        height: 32px;
    }

    .payment-panel {
        padding: 11px;
    }
}


/* ---------- DESKTOP ---------- */

@media (min-width: 768px) {

    .wallet-main {
        padding-left: 18px;
        padding-right: 18px;
    }

    .wallet-balance-card {
        padding: 25px;
    }

    .wallet-actions {
        max-width: 430px;
    }

    .payment-panel {
        max-width: 720px;
    }
}


@keyframes walletPopup {

    from {
        opacity: 0;
        transform: translateY(20px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}

 /* =========================================================
   MODERN HOMEPAGE UI
   Tampilan saja — tidak mengubah PHP / database
========================================================= */

/* ---------- GLOBAL ---------- */

body {
    background: #0b0d10;
}

main,
#app {
    background: #0b0d10;
}

img {
    user-select: none;
    -webkit-user-drag: none;
}


/* ---------- BANNER ---------- */

section.relative.w-full.overflow-hidden {
    border-radius: 0 0 14px 14px;
}

.banner-slide img,
.banner-slide-left img,
.banner-slide-right img {
    transition: transform .6s ease, filter .4s ease;
}

.banner-slide:hover img,
.banner-slide-left:hover img,
.banner-slide-right:hover img {
    transform: scale(1.015);
}


/* ---------- WELCOME ---------- */

.relative.z-\[10\].px-2.lg\:px-1.-mt-5 > div {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
}


/* ---------- SECTION TITLE ---------- */

.flex.items-center.justify-between.px-2.lg\:px-1.py-3.mt-2 {
    padding-top: 18px;
    padding-bottom: 10px;
}

.flex.items-center.justify-between.px-2.lg\:px-1.py-3.mt-2 > div:first-child {
    position: relative;
}

.flex.items-center.justify-between.px-2.lg\:px-1.py-3.mt-2 > div:first-child::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 28px;
    height: 2px;
    border-radius: 99px;
    background: var(--text-primary);
}

.flex.items-center.justify-between.px-2.lg\:px-1.py-3.mt-2 a {
    transition: all .25s ease;
}

.flex.items-center.justify-between.px-2.lg\:px-1.py-3.mt-2 a:hover {
    transform: translateX(3px);
}


/* =====================================================
   GAME SLIDER
===================================================== */

.auto-game-slider {
    padding-top: 4px;
    padding-bottom: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: auto;

    -ms-overflow-style: none;
    scrollbar-width: none;

    user-select: none;
    -webkit-user-select: none;
    touch-action: auto;
}

.auto-game-slider::-webkit-scrollbar {
    display: none;
}

.auto-game-slider .game-slider-track {
    display: flex;
    gap: 10px;
    width: max-content;
}

.auto-game-slider a {
    flex-shrink: 0;
}

.auto-game-slider a > div {
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.07);
    background: #14171c;
    overflow: hidden;

    box-shadow:
        0 6px 18px rgba(0,0,0,.22);
}

.auto-game-slider img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auto-game-slider .absolute.bottom-0 {
    background: linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.35),
        transparent
    );

    padding-top: 18px;
}

.provider-slider img {
    width: 75%;
    height: 75%;
    object-fit: contain;
    margin: auto;
}


/* =====================================================
   PERMAINAN LAINNYA
   JANGAN UBAH UKURAN DARI HTML
===================================================== */

.other-game-slider {
    overflow-x: hidden;
    overflow-y: hidden;
    padding: 3px 0 8px;
}

.other-game-slider .game-slider-track {
    display: flex;
    gap: 10px;
}

.other-game-slider a {
    flex-shrink: 0;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.07);
    background: #14171c;
    overflow: hidden;

    box-shadow:
        0 7px 20px rgba(0,0,0,.22);
}

.other-game-slider img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}


/* ---------- DOWNLOAD APP ---------- */

.relative.mt-8.w-full.bg-\[var\(--bg-home-section-two\)\] {
    margin-top: 22px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.06);
    background:
        radial-gradient(
            circle at right,
            rgba(255,255,255,.06),
            transparent 45%
        ),
        #12151a !important;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,.2);
}

.relative.mt-8.w-full.bg-\[var\(--bg-home-section-two\)\] a {
    transition: all .25s ease;
    box-shadow: 0 5px 12px rgba(0,0,0,.18);
}

.relative.mt-8.w-full.bg-\[var\(--bg-home-section-two\)\] a:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}


/* ---------- FOOTER INFO ---------- */

.w-full.px-3.lg\:px-1.py-6 {
    padding-top: 28px;
    padding-bottom: 22px;
}


/* Section label */

.w-full.px-3.lg\:px-1.py-6
.flex.items-center.gap-2.mb-3 {
    opacity: .95;
}

.w-full.px-3.lg\:px-1.py-6
.flex.items-center.gap-2.mb-3 > span:first-child {
    background: var(--text-primary);
    box-shadow: 0 0 8px rgba(255,255,255,.15);
}


/* License logo */

.w-full.px-3.lg\:px-1.py-6 img {
    transition: opacity .25s ease;
}


/* ---------- RESPONSIBLE / BROWSER ---------- */

.w-full.px-3.lg\:px-1.py-6
.grid.grid-cols-2 > div {
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.07);
    background: rgba(255,255,255,.025);
    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.w-full.px-3.lg\:px-1.py-6
.grid.grid-cols-2 > div:hover {
    background: rgba(255,255,255,.045);
    border-color: rgba(255,255,255,.13);
    transform: translateY(-2px);
}


/* ---------- PAYMENT AREA ---------- */

.w-full.bg-\[var\(--bg-home-section-two\)\].border-t {
    background: transparent !important;
    border-top: 0 !important;
    padding-top: 4px;
}


/* Individual payment */

.w-full.bg-\[var\(--bg-home-section-two\)\].border-t
.grid > div {
    border-radius: 10px;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.06);
    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.w-full.bg-\[var\(--bg-home-section-two\)\].border-t
.grid > div:hover {
    background: rgba(255,255,255,.05);
    border-color: rgba(255,255,255,.13);
    transform: translateY(-2px);
}


/* Payment logo */

.w-full.bg-\[var\(--bg-home-section-two\)\].border-t
.grid img {
    opacity: .65;
    transition: opacity .25s ease;
}

.w-full.bg-\[var\(--bg-home-section-two\)\].border-t
.grid > div:hover img {
    opacity: .9;
}


/* ---------- ONLINE STATUS ---------- */

.text-green-400 {
    letter-spacing: .3px;
}


/* ---------- SEO CONTENT ---------- */

#seoContent {
    border-radius: 12px;
    padding: 16px;
    background: rgba(255,255,255,.018);
    border: 1px solid rgba(255,255,255,.05);
}

#seoContent h2 {
    font-weight: 700;
}

#seoContent p {
    color: rgba(255,255,255,.58);
}

#toggleSeo {
    border-radius: 10px;
    background: rgba(255,255,255,.025);
    transition: all .25s ease;
}

#toggleSeo:hover {
    background: rgba(255,255,255,.06);
}


/* ---------- MOBILE ---------- */

@media (max-width: 640px) {

    .auto-game-slider .game-slider-track {
        gap: 8px;
    }

    .auto-game-slider a {
        width: 108px !important;
    }

    .other-game-slider .game-slider-track {
        gap: 8px;
    }

    .relative.mt-8.w-full.bg-\[var\(--bg-home-section-two\)\] {
        margin-left: 8px;
        margin-right: 8px;
        width: calc(100% - 16px);
    }

    .w-full.px-3.lg\:px-1.py-6 {
        padding-left: 10px;
        padding-right: 10px;
    }

    #seoContent {
        padding: 14px;
    }

}


/* ---------- SMOOTH SCROLL ---------- */

html {
    scroll-behavior: smooth;
}


/* ---------- SCROLLBAR DESKTOP ---------- */

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.12);
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,.22);
}

 /* ========================================================
       PAGE
    ======================================================== */

    .promo-page {
        width: 100%;
        min-height: 100vh;
        padding-bottom: 80px;
    }


    /* ========================================================
       CATEGORY
    ======================================================== */

    .promo-category-wrapper {
        width: 100%;
        padding: 10px 12px;
        background: var(--bg-home-section-two);
        border-bottom: 1px solid rgba(255,255,255,.06);
    }

    .promo-category-scroll {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 7px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .promo-category-scroll::-webkit-scrollbar {
        display: none;
    }


    .promo-category {
        position: relative;
        flex: 0 0 auto;

        min-width: 66px;
        height: 66px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 5px;

        border: 0;
        outline: none;

        background: transparent;
        color: rgba(255,255,255,.4);

        cursor: pointer;

        transition:
            transform .2s ease,
            color .2s ease;
    }

    .promo-category:hover {
        transform: translateY(-2px);
    }


    .promo-category-icon {
        width: 38px;
        height: 38px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 10px;

        background: rgba(255,255,255,.06);

        border: 1px solid rgba(255,255,255,.06);

        transition: all .2s ease;
    }


    .promo-category-icon img {
        width: 20px;
        height: 20px;

        object-fit: contain;

        filter: invert(1) opacity(.35);

        transition: filter .2s ease;
    }


    .promo-category-label {
        max-width: 65px;

        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;

        font-size: 9px;
        font-weight: 500;

        transition: all .2s ease;
    }


    /* ACTIVE */

    .promo-category.active {
        color: #fff;
    }


    .promo-category.active .promo-category-icon {
        background: var(--bg-primary);

        border-color: var(--bg-primary);

        box-shadow:
            0 6px 18px
            color-mix(
                in srgb,
                var(--bg-primary) 35%,
                transparent
            );
    }


    .promo-category.active .promo-category-icon img {
        filter: invert(1) opacity(1);
    }


    .promo-category.active .promo-category-label {
        font-weight: 700;
    }


    /* ========================================================
       CONTENT
    ======================================================== */

    .promo-content {
        width: 100%;
        padding: 14px 12px;
    }


    .promo-tab {
        width: 100%;
    }


    .promo-tab.hidden {
        display: none;
    }


    /* ========================================================
       GRID
    ======================================================== */

    .promo-grid {
        display: grid;

        grid-template-columns: 1fr;

        gap: 14px;
    }


    /* ========================================================
       CARD
    ======================================================== */

    .promo-card {
        position: relative;

        width: 100%;

        overflow: hidden;

        border-radius: 14px;

        background: var(--bg-section-one);

        border: 1px solid rgba(255,255,255,.07);

        box-shadow:
            0 8px 25px rgba(0,0,0,.15);

        transition:
            transform .25s ease,
            box-shadow .25s ease,
            border-color .25s ease;
    }


    .promo-card:hover {
        transform: translateY(-3px);

        border-color: rgba(255,255,255,.15);

        box-shadow:
            0 14px 35px rgba(0,0,0,.25);
    }


    /* ========================================================
       IMAGE
    ======================================================== */

    .promo-image-wrapper {
        position: relative;

        width: 100%;

        overflow: hidden;

        background: rgba(255,255,255,.04);
    }


    .promo-image {
        display: block;

        width: 100%;
        height: auto;

        object-fit: cover;

        transition:
            transform .45s ease;
    }


    .promo-card:hover .promo-image {
        transform: scale(1.025);
    }


    /* ========================================================
       GRADIENT
    ======================================================== */

    .promo-image-gradient {
        position: absolute;

        left: 0;
        right: 0;
        bottom: 0;

        height: 45%;

        pointer-events: none;

        background:
            linear-gradient(
                to top,
                rgba(0,0,0,.7),
                rgba(0,0,0,0)
            );
    }


    /* ========================================================
       BADGE
    ======================================================== */

    .promo-badge {
        position: absolute;

        top: 10px;
        left: 10px;

        z-index: 5;

        display: flex;
        align-items: center;
        gap: 5px;

        padding: 5px 9px;

        border-radius: 999px;

        background: var(--bg-primary);

        color: #fff;

        font-size: 9px;
        font-weight: 700;

        box-shadow:
            0 5px 14px rgba(0,0,0,.25);
    }


    .promo-badge i {
        font-size: 8px;
    }


    /* ========================================================
       DETAIL BUTTON
    ======================================================== */

    .promo-detail-button {
        position: absolute;

        right: 10px;
        bottom: 10px;

        z-index: 5;

        height: 32px;

        display: flex;
        align-items: center;

        gap: 7px;

        padding: 0 12px;

        border-radius: 8px;

        border: 1px solid rgba(255,255,255,.18);

        background: rgba(0,0,0,.48);

        backdrop-filter: blur(10px);

        color: #fff;

        font-size: 10px;
        font-weight: 700;

        cursor: pointer;

        transition: all .2s ease;
    }


    .promo-detail-button:hover {
        background: var(--bg-primary);

        border-color: var(--bg-primary);
    }


    .promo-detail-button i {
        font-size: 9px;

        transition:
            transform .2s ease;
    }


    .promo-detail-button:hover i {
        transform: translateX(3px);
    }


    /* ========================================================
       NO IMAGE
    ======================================================== */

    .promo-no-image {
        width: 100%;
        min-height: 170px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 8px;

        color: rgba(255,255,255,.25);

        font-size: 11px;
    }


    .promo-no-image i {
        font-size: 28px;
    }


    /* ========================================================
       EMPTY
    ======================================================== */

    .promo-empty {
        min-height: 240px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        border-radius: 14px;

        border: 1px dashed rgba(255,255,255,.1);

        background: rgba(255,255,255,.025);
    }


    .promo-empty-icon {
        width: 54px;
        height: 54px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 50%;

        background: rgba(255,255,255,.06);

        margin-bottom: 12px;

        color: rgba(255,255,255,.3);

        font-size: 21px;
    }


    .promo-empty-title {
        color: rgba(255,255,255,.65);

        font-size: 13px;
        font-weight: 700;
    }


    .promo-empty-text {
        margin-top: 4px;

        color: rgba(255,255,255,.3);

        font-size: 11px;
    }


    /* ========================================================
       MODAL
    ======================================================== */

    .promo-modal {
        position: fixed;

        inset: 0;

        z-index: 9999;

        display: flex;
        align-items: center;
        justify-content: center;

        padding: 20px;

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        transition:
            opacity .25s ease,
            visibility .25s ease;
    }


    .promo-modal.show {
        opacity: 1;

        visibility: visible;

        pointer-events: auto;
    }


    .promo-modal-backdrop {
        position: absolute;

        inset: 0;

        background: rgba(0,0,0,.72);

        backdrop-filter: blur(7px);
    }


    .promo-modal-content {
        position: relative;

        z-index: 2;

        width: min(620px, 100%);

        max-height: 85vh;

        display: flex;
        flex-direction: column;

        overflow: hidden;

        border-radius: 18px;

        background: var(--bg-body);

        border: 1px solid rgba(255,255,255,.08);

        box-shadow:
            0 30px 90px rgba(0,0,0,.5);

        transform: translateY(20px) scale(.97);

        transition:
            transform .3s ease;
    }


    .promo-modal.show .promo-modal-content {
        transform: translateY(0) scale(1);
    }


    /* ========================================================
       MODAL HEADER
    ======================================================== */

    .promo-modal-header {
        flex-shrink: 0;

        height: 54px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        padding: 0 14px;

        background: var(--bg-section-one);

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


    .promo-modal-header-left {
        display: flex;
        align-items: center;

        gap: 9px;
    }


    .promo-modal-header-icon {
        width: 32px;
        height: 32px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 9px;

        background: var(--bg-primary);

        color: #fff;

        font-size: 14px;
    }


    .promo-modal-label {
        color: var(--bg-primary);

        font-size: 8px;
        font-weight: 800;

        letter-spacing: 1.5px;
    }


    .promo-modal-heading {
        margin-top: 1px;

        color: #fff;

        font-size: 12px;
        font-weight: 700;
    }


    .promo-modal-close {
        width: 30px;
        height: 30px;

        display: flex;
        align-items: center;
        justify-content: center;

        border: 0;

        border-radius: 50%;

        background: rgba(255,255,255,.08);

        color: #fff;

        cursor: pointer;

        transition: all .2s ease;
    }


    .promo-modal-close:hover {
        background: var(--bg-primary);

        transform: rotate(90deg);
    }


    /* ========================================================
       MODAL BODY
    ======================================================== */

    .promo-modal-body {
        flex: 1;

        overflow-y: auto;
    }


    .promo-modal-image {
        width: 100%;

        background: #000;
    }


    .promo-modal-image img {
        display: block;

        width: 100%;
        height: auto;

        object-fit: cover;
    }


    .promo-modal-info {
        padding: 16px 15px 25px;
    }


    .promo-modal-title-row {
        display: flex;
        align-items: flex-start;

        gap: 9px;
    }


    .promo-modal-title-icon {
        flex-shrink: 0;

        width: 30px;
        height: 30px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 8px;

        background:
            color-mix(
                in srgb,
                var(--bg-primary) 18%,
                transparent
            );

        color: var(--bg-primary);

        font-size: 12px;
    }


    .promo-modal-title {
        margin: 0;

        color: #fff;

        font-size: 17px;

        line-height: 1.35;
    }


    .promo-divider {
        width: 100%;
        height: 1px;

        margin: 14px 0;

        background: rgba(255,255,255,.08);
    }


    .promo-modal-description {
        color: rgba(255,255,255,.68);

        font-size: 12px;

        line-height: 1.75;
    }


    .promo-modal-description p {
        margin-bottom: 8px;
    }


    .promo-modal-description img {
        max-width: 100%;
        height: auto;
    }


    .promo-modal-description a {
        color: var(--bg-primary);

        text-decoration: underline;
    }


    /* QUILL */

    .promo-modal-description .ql-align-center {
        text-align: center;
    }

    .promo-modal-description .ql-align-right {
        text-align: right;
    }

    .promo-modal-description .ql-align-justify {
        text-align: justify;
    }

    .promo-modal-description .ql-align-left {
        text-align: left;
    }


    /* ========================================================
       DESKTOP
    ======================================================== */

    @media (min-width: 768px) {

        .promo-category-wrapper {
            position: sticky;

            top: 0;

            z-index: 20;

            width: 90px;

            min-height: 100vh;

            padding: 14px 8px;

            border-bottom: 0;

            background: var(--bg-home-section-two);
        }


        .promo-page {
            display: flex;
            align-items: flex-start;
        }


        .promo-category-scroll {
            flex-direction: column;

            overflow: visible;

            gap: 5px;
        }


        .promo-category {
            width: 100%;

            min-width: 0;

            height: 68px;
        }


        .promo-content {
            flex: 1;

            min-width: 0;

            padding: 16px;
        }


        .promo-grid {
            grid-template-columns:
                repeat(2, minmax(0, 1fr));

            gap: 16px;
        }


        .promo-modal {
            padding: 25px;
        }


        .promo-modal-content {
            max-height: 82vh;
        }

    }


    /* ========================================================
       MOBILE
    ======================================================== */

    @media (max-width: 767px) {

        .promo-modal {
            align-items: flex-end;

            padding: 0;
        }


        .promo-modal-content {
            width: 100%;

            max-height: 90vh;

            border-radius: 18px 18px 0 0;

            transform:
                translateY(100%);
        }


        .promo-modal.show .promo-modal-content {
            transform:
                translateY(0);
        }

    }
    
    /* =========================================
   PASSWORD PAGE
========================================= */

.password-page-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            var(--bg-primary),
            rgba(255,255,255,0.08)
        );

    color: #fff;

    font-size: 18px;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.25);
}


/* =========================================
   CARD
========================================= */

.password-card {
    width: 100%;

    padding: 16px;

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.025)
        );

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 12px 35px rgba(0,0,0,0.18);
}


/* =========================================
   LABEL
========================================= */

.password-field label {
    display: flex;
    align-items: center;
    gap: 7px;

    color: rgba(255,255,255,0.75);

    font-size: 11px;
    font-weight: 600;

    margin-bottom: 7px;
}

.password-field label i {
    color: var(--bg-primary);
    font-size: 11px;
}


/* =========================================
   INPUT
========================================= */

.password-input {
    width: 100%;
    height: 40px;

    border-radius: 9px;

    background:
        rgba(255,255,255,0.045);

    border: 1px solid rgba(255,255,255,0.09);

    padding:
        0 42px 0 13px;

    color: #fff;

    font-size: 12px;

    outline: none;

    transition:
        border-color .2s,
        background .2s,
        box-shadow .2s;
}

.password-input::placeholder {
    color: rgba(255,255,255,0.32);
}

.password-input:focus {
    border-color: var(--bg-primary);

    background:
        rgba(255,255,255,0.065);

    box-shadow:
        0 0 0 3px rgba(255,255,255,0.025);
}


/* =========================================
   EYE BUTTON
========================================= */

.password-eye {
    position: absolute;

    right: 0;
    top: 0;

    width: 42px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: rgba(255,255,255,0.45);

    background: transparent;

    border: 0;

    cursor: pointer;

    transition:
        color .2s;
}

.password-eye:hover {
    color: #fff;
}


/* =========================================
   STRENGTH
========================================= */

.password-strength {
    margin-top: 8px;
}

.strength-bar {
    width: 100%;
    height: 4px;

    border-radius: 99px;

    overflow: hidden;

    background:
        rgba(255,255,255,0.08);
}

#strengthProgress {
    width: 0;
    height: 100%;

    border-radius: 99px;

    background: var(--bg-primary);

    transition:
        width .25s ease;
}

#strengthText {
    color: rgba(255,255,255,0.55);
}


/* =========================================
   PASSWORD MATCH
========================================= */

.password-match {
    margin-top: 7px;

    font-size: 10px;
}

.password-match.match {
    color: #22c55e;
}

.password-match.no-match {
    color: #ef4444;
}


/* =========================================
   INFO
========================================= */

.password-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    padding: 11px;

    margin-bottom: 15px;

    border-radius: 9px;

    background:
        rgba(255,255,255,0.035);

    border: 1px solid rgba(255,255,255,0.06);
}

.password-info-icon {
    width: 24px;
    height: 24px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 7px;

    background:
        rgba(255,255,255,0.06);

    color: var(--bg-primary);

    font-size: 11px;
}


/* =========================================
   SUBMIT
========================================= */

.password-submit {
    width: 100%;
    height: 40px;

    border: 0;
    border-radius: 9px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    background:
        var(--bg-primary);

    color: #fff;

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform .15s,
        filter .2s,
        box-shadow .2s;
}

.password-submit:hover {
    filter: brightness(1.08);

    box-shadow:
        0 7px 20px rgba(0,0,0,0.2);
}

.password-submit:active {
    transform: scale(.98);
}

.password-submit i {
    font-size: 12px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 480px) {

    .password-card {
        padding: 14px;
        border-radius: 12px;
    }

    .password-page-icon {
        width: 40px;
        height: 40px;
    }

}

/* =========================================================
   HEADER
========================================================= */

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

    padding:14px 15px;
    margin-bottom:14px;

    border-radius:12px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.07),
            rgba(255,255,255,.025)
        );

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
        0 8px 25px rgba(0,0,0,.12);
}

.history-header-icon {
    width:42px;
    height:42px;

    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:11px;

    background:var(--bg-primary);

    color:#fff;

    font-size:18px;

    box-shadow:
        0 5px 16px rgba(0,0,0,.2);
}

.history-header-text {
    min-width:0;
}

.history-header-text h2 {
    margin:0;

    color:#fff;

    font-size:15px;
    font-weight:700;
}

.history-header-text p {
    margin:3px 0 0;

    color:rgba(255,255,255,.5);

    font-size:11px;
}


/* =========================================================
   FILTER CARD
========================================================= */

.history-filter-card {

    width:100%;

    padding:15px;

    margin-bottom:14px;

    border-radius:12px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.065),
            rgba(255,255,255,.025)
        );

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
        0 8px 25px rgba(0,0,0,.12);
}


/* FILTER TITLE */

.history-filter-title {
    display:flex;
    align-items:center;

    gap:10px;

    margin-bottom:15px;
}

.history-filter-title-icon {

    width:34px;
    height:34px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:9px;

    background:rgba(255,255,255,.07);

    color:var(--bg-primary);

    font-size:14px;
}

.history-filter-title strong {

    display:block;

    color:#fff;

    font-size:13px;
}

.history-filter-title small {

    display:block;

    margin-top:2px;

    color:rgba(255,255,255,.45);

    font-size:10px;
}


/* =========================================================
   FIELD
========================================================= */

.history-field {
    margin-bottom:11px;
}

.history-field label {

    display:flex;
    align-items:center;

    gap:6px;

    margin-bottom:6px;

    color:rgba(255,255,255,.8);

    font-size:11px;
    font-weight:600;
}

.history-field label i {

    color:var(--bg-primary);

    font-size:11px;
}


/* INPUT */

.history-input-wrap {

    position:relative;

    width:100%;
}

.history-input {

    width:100%;
    height:39px;

    padding:0 40px 0 12px;

    border-radius:9px;

    background:
        rgba(255,255,255,.045);

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    font-size:12px;

    outline:none;

    appearance:none;

    transition:
        .2s ease;
}

.history-input:focus {

    border-color:var(--bg-primary);

    background:
        rgba(255,255,255,.065);

    box-shadow:
        0 0 0 2px rgba(255,255,255,.03);
}


/* DATE ICON */

.history-input-icon {

    position:absolute;

    right:13px;
    top:50%;

    transform:translateY(-50%);

    pointer-events:none;

    color:rgba(255,255,255,.5);

    font-size:12px;
}


/* SELECT */

.history-select option {

    background:#151515;

    color:#fff;
}


/* =========================================================
   FILTER BUTTON
========================================================= */

.history-filter-button {

    width:100%;
    height:39px;

    margin-top:4px;

    border:0;
    border-radius:9px;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:8px;

    background:var(--bg-primary);

    color:#fff;

    font-size:11px;
    font-weight:700;

    letter-spacing:1px;

    cursor:pointer;

    box-shadow:
        0 5px 15px rgba(0,0,0,.2);

    transition:
        transform .15s ease,
        opacity .15s ease;
}

.history-filter-button:hover {

    opacity:.9;
}

.history-filter-button:active {

    transform:scale(.98);
}


/* =========================================================
   HISTORY CARD
========================================================= */

.history-card {

    width:100%;

    border-radius:12px;

    overflow:hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.055),
            rgba(255,255,255,.02)
        );

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
        0 8px 25px rgba(0,0,0,.12);
}


/* CARD HEADER */

.history-card-header {

    padding:14px 15px;

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

.history-card-title {

    display:flex;
    align-items:center;

    gap:10px;
}

.history-card-title-icon {

    width:32px;
    height:32px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:8px;

    background:rgba(255,255,255,.06);

    color:var(--bg-primary);

    font-size:13px;
}

.history-card-title strong {

    display:block;

    color:#fff;

    font-size:13px;
}

.history-card-title small {

    display:block;

    margin-top:2px;

    color:rgba(255,255,255,.42);

    font-size:10px;
}


/* =========================================================
   TABLE
========================================================= */

.history-table-wrapper {

    width:100%;

    overflow-x:auto;

    -webkit-overflow-scrolling:touch;
}

.history-table {

    width:100%;

    border-collapse:collapse;

    color:#fff;

    font-size:10px;
}

.history-table thead {

    background:
        rgba(255,255,255,.045);
}

.history-table th {

    height:40px;

    padding:7px 8px;

    color:rgba(255,255,255,.8);

    font-size:9px;

    font-weight:700;

    text-align:left;

    white-space:nowrap;

    border-bottom:
        1px solid rgba(255,255,255,.08);
}

.history-table th i {

    margin-right:4px;

    color:var(--bg-primary);

    font-size:9px;
}

.history-table td {

    padding:9px 8px;

    color:rgba(255,255,255,.82);

    font-size:10px;

    vertical-align:middle;

    border-bottom:
        1px solid rgba(255,255,255,.055);

    word-break:break-word;
}

.history-table tbody tr {

    transition:
        background .15s ease;
}

.history-table tbody tr:hover {

    background:
        rgba(255,255,255,.025);
}


/* =========================================================
   EMPTY STATE
========================================================= */

.history-empty {

    min-height:150px;

    display:flex;

    flex-direction:column;

    align-items:center;
    justify-content:center;

    gap:5px;

    text-align:center;
}

.history-empty-icon {

    width:44px;
    height:44px;

    margin-bottom:4px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:
        rgba(255,255,255,.05);

    color:rgba(255,255,255,.3);

    font-size:18px;
}

.history-empty strong {

    color:rgba(255,255,255,.7);

    font-size:12px;
}

.history-empty span {

    color:rgba(255,255,255,.35);

    font-size:10px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width:480px) {

    .history-header {
        padding:12px;
    }

    .history-header-icon {
        width:38px;
        height:38px;
        font-size:16px;
    }

    .history-header-text h2 {
        font-size:14px;
    }

    .history-filter-card {
        padding:13px;
    }

    .history-card-header {
        padding:12px;
    }

    .history-table th,
    .history-table td {
        padding-left:7px;
        padding-right:7px;
    }

}


/* =========================================================
   DATE INPUT FIX
========================================================= */

input[type="date"]::-webkit-calendar-picker-indicator {

    opacity:0;

    position:absolute;

    right:10px;

    width:20px;
    height:20px;

    cursor:pointer;
}

.bonus-mobile-notification {
    position: absolute;
    top: -8px;
    right: -11px;

    min-width: 17px;
    height: 17px;
    padding: 0 4px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ef4444;
    color: #fff;

    border: 2px solid var(--bg-home-section-two);
    border-radius: 999px;

    font-size: 8px;
    font-weight: 800;
    line-height: 1;

    box-sizing: border-box;

    animation: bonusMobilePulse 1.5s ease-in-out infinite;
}

@keyframes bonusMobilePulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}






    
    
    
    
    
    