:root {
    --primary: #00ffff; /* Valor padrão, será sobrescrito via PHP */
}

/* =========================================
   CORE RESET & BOX MODEL
========================================= */
* {
    box-sizing: border-box;
}

html,
body{
    margin:0;
    padding:0;
    width:100%;
    height:100%;
    font-family:'Outfit',sans-serif;

    background:
    radial-gradient(circle at top,#101a35 0%,#05070d 55%);

    color:#e2e8f0;

    overflow-x:hidden;
}
/* EFEITO GLOW NO FUNDO */

body::before{

content:'';

position:fixed;

top:-200px;
left:-200px;

width:500px;
height:500px;

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

filter:blur(120px);

border-radius:50%;

pointer-events:none;

z-index:0;
}

/* SEGUNDO GLOW */

body::after{

content:'';

position:fixed;

bottom:-250px;
right:-250px;

width:500px;
height:500px;

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

filter:blur(140px);

border-radius:50%;

pointer-events:none;

z-index:0;
}

/* =========================================
   CASINO LOBBY - NAVIGATION
========================================= */
.casino-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: rgba(8, 10, 16, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: 80px;
    display: flex;
    align-items: center;
    overflow: visible;
    /* Permite dropdown aparecer fora da barra */
}

.nav-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo img {
    height: 42px;
    width: auto;
    transform: scale(1.6);
    transform-origin: left center;
    /* Cresce a imagem sem empurrar a direita */
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.65);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Auth Buttons Group */
.auth-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-auth {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #e2e8f0;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    text-transform: uppercase;
    white-space: nowrap;
}

.btn-auth.signup {
    background: var(--primary);
    color: #080a10;
    border: none;
    font-weight: 700;
}

.btn-auth:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.btn-auth.signup:hover {
    background: #33ffff;
    border-color: transparent;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 255, 255, 0.15);
}

/* User & Balance Group */
.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: 15px;
}

#nav-username {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-logout {
    background: none;
    border: none;
    color: #ff6b6b;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.btn-logout:hover {
    opacity: 1;
}

/* Profile Dropdown */
.profile-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    border-radius: 10px;
    transition: background 0.2s ease;
    color: #e2e8f0;
}

.profile-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

#profile-pic {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 255, 0.4);
    object-fit: cover;
}

.profile-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e2e8f0;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-arrow {
    color: #64748b;
    transition: transform 0.25s ease;
}

.profile-btn.open .profile-arrow {
    transform: rotate(180deg);
}

.profile-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: #0f121d;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    min-width: 220px;
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.6);
    animation: dropIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10000;
    overflow: hidden;
}

@keyframes dropIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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

.dropdown-header {
    padding: 16px 18px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.d-name {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}

.d-status {
    font-size: 0.75rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    display: inline-block;
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
}

.profile-dropdown hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin: 4px 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.15s ease;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

.dropdown-item svg {
    flex-shrink: 0;
}

.logout-item {
    color: #f87171;
}

.logout-item:hover {
    background: rgba(248, 113, 113, 0.07);
    color: #ff6b6b;
}

.balance-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 6px 6px 6px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.balance-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.balance-box .label {
    font-size: 0.65rem;
    color: #94a3b8;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.balance-box .currency {
    font-weight: 700;
    color: var(--primary);
}

#nav-balance {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    font-family: monospace;
}

.btn-deposit-nav{

    height:46px;

    padding:0 20px;

    border:none;

    border-radius:14px;

    background:
    linear-gradient(
        90deg,
        #ff00aa,
        #7b00ff
    );

    color:#fff;

    font-size:13px;

    font-weight:800;

    letter-spacing:.5px;

    display:flex;

    align-items:center;

    gap:10px;

    cursor:pointer;

    transition:.25s ease;

    box-shadow:
    0 10px 25px rgba(255,0,170,.28);
}

/* HOVER */

.btn-deposit-nav:hover{

    transform:
    translateY(-2px)
    scale(1.03);

    box-shadow:
    0 16px 35px rgba(255,0,170,.4);
}

/* ÍCONE */

.btn-deposit-nav svg{

    width:16px;
    height:16px;
}
}

.btn-deposit-nav:hover {
    background: #33ffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 255, 255, 0.2);
}

.btn-deposit-nav svg {
    stroke-width: 3px;
}

/* MOBILE BREAKPOINTS — sempre em linha única */
@media (max-width: 900px) {
    .nav-container {
        padding: 0 15px;
    }

    .logo img {
        height: 35px;
        transform: scale(1.4);
        transform-origin: left center;
    }

    .btn-auth {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
}

@media (max-width: 650px) {
    .casino-navbar {
        height: 64px;
        overflow: visible;
    }

    .nav-container {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0;
        padding: 0 12px;
        overflow: visible;
    }

    .logo {
        flex-shrink: 0;
    }

    .logo img {
        height: 28px;
        transform: scale(1.4);
        transform-origin: left center;
    }

    .nav-right {
        flex: 1;
        justify-content: flex-end;
        gap: 8px;
        overflow: visible;
    }

    .user-profile {
        border: none;
        padding-right: 0;
        overflow: visible;
    }

    .balance-box {
        padding: 4px 4px 4px 10px;
        gap: 8px;
    }

    #nav-balance {
        font-size: 0.9rem;
    }

    .balance-box .currency {
        font-size: 0.8rem;
    }

    .btn-deposit-nav {
        display: none;
    }

    .auth-buttons {
        gap: 6px;
    }

    .btn-auth {
        padding: 7px 10px;
        font-size: 0.75rem;
    }

    #profile-pic {
        width: 30px;
        height: 30px;
    }

    .profile-dropdown {
        right: 0;
        left: auto;
        min-width: 200px;
        z-index: 99999;
    }

    /* FULL PAGE VIEW FOR DEPOSIT, AUTH, & AFFILIATE ON MOBILE */
    #deposit-modal, #auth-modal, #affiliate-modal {
        background: #080a10 !important;
        backdrop-filter: none !important;
        padding: 0 !important;
        bottom: 60px !important;
        height: calc(100% - 60px) !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    .deposit-modal-content, .auth-modal-content, .affiliate-modal-content {
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        max-height: none !important;
        border-radius: 0 !important;
        border: none !important;
        background: #080a10 !important;
        box-shadow: none !important;
        padding: 85px 20px 40px !important;
        /* Top padding for the header/back button */
        margin: 0 !important;
        position: relative;
        overflow-y: auto;
        animation: none !important;
        /* Instant transition for 'Page' feel */
    }

    #deposit-modal .modal-close, #auth-modal .modal-close, #affiliate-modal .modal-close {
        top: 25px;
        left: 20px;
        right: auto;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

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

/* =========================================
   AUTH MODALS (CLEAN UI)
========================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 5, 8, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.modal-content {
    background: #0f121d;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 16px;
    width: 100%;
    max-width: 420px;
    max-height: 90vh;
    overflow-y: auto;
    /* Adicionado Scroll */
    position: relative;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    animation: modalAppear 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scrollbar Personalizado para Modais */
.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: scale(0.97) translateY(10px);
    }

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #64748b;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #fff;
}

.modal-title {
    color: #fff;
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.modal-title span {
    color: var(--primary);
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.modal-content input {
    -webkit-appearance: none;
    appearance: none;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 16px;
    border-radius: 10px;
    color: #e2e8f0;
    font-size: 1rem;
    outline: none;
    width: 100%;
    transition: all 0.2s ease;
}

.modal-content input:focus {
    border-color: var(--primary);
    background: rgba(0, 255, 255, 0.02);
}

/* Security Specifics */
input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none;
}

.password-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.password-wrapper input {
    padding-right: 45px !important;
}

.eye-toggle {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 45px;
    background: transparent;
    border: none;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

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

.strength-meter {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin-top: -6px;
    overflow: hidden;
}

#strength-bar {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease, background 0.3s ease;
}

#strength-bar.weak {
    width: 33%;
    background: #ef4444;
}

#strength-bar.medium {
    width: 66%;
    background: #f59e0b;
}

#strength-bar.strong {
    width: 100%;
    background: #10b981;
}

.modal-btn {
    background: var(--primary);
    color: #080a10;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    margin-top: 5px;
}

.modal-btn:hover {
    background: #33ffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 255, 255, 0.15);
}

.modal-switch {
    text-align: center;
    color: #94a3b8;
    margin-top: 25px;
    font-size: 0.9rem;
}

.modal-switch a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-left: 6px;
    transition: color 0.2s;
}

.modal-switch a:hover {
    color: #fff;
}

@media (max-width: 450px) {
    .modal-content {
        padding: 30px 20px;
    }

    .modal-title {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }
}

/* =========================================
   DEPOSIT MODAL SPECIFICS
 ========================================= */
.deposit-modal-content {
    max-width: 440px;
    background: #0f121d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8);
}

.deposit-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.preset-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.preset-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #94a3b8;
    padding: 12px 0;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.preset-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transform: translateY(-2px);
}

.preset-btn.active {
    background: var(--primary);
    color: #080a10 !important;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(255, 255, 255, 0.02);
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.input-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.deposit-input {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    color: #fff !important;
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    font-family: monospace;
    outline: none;
    width: 100%;
}

.deposit-input::placeholder {
    color: rgba(255, 255, 255, 0.1);
}

#deposit-cpf {
    font-size: 1.1rem !important;
    letter-spacing: 1px;
}

.input-hint {
    color: #475569;
    font-size: 0.65rem;
    font-weight: 500;
}

.deposit-submit-btn {
    padding: 18px !important;
    font-size: 1rem !important;
    margin-top: 5px;
    background: var(--primary) !important;
    color: #080a10 !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* =========================================
   CAROUSEL (PREMIUM VIEW)
========================================= */
.casino-carousel {
    max-width: 1400px;
    width: 100%;
    padding: 0 20px;
    margin: 110px auto 35px;
    position: relative;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Clean container border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel-track {
    display: flex;
    will-change: transform;
}

.banner {
    flex: 0 0 33.333%;
    padding: 0 10px;
    box-sizing: border-box;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    filter: brightness(0.5);
    /* Escurece os não-focados levemente */
    transform: scale(0.92);
    z-index: 1;
}

.banner.center-banner {
    filter: brightness(1);
    transform: scale(1);
    z-index: 2;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1168 / 784;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.6s ease;
}

.banner.center-banner .banner-img {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

/* Pontinhos de Navegação */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 1024px) {
    .banner {
        flex: 0 0 100%;
        padding: 0;
    }

    .carousel-container {
        border-radius: 12px;
    }

    .banner.center-banner {
        transform: scale(1);
    }
}

/* =========================================
   NEWS TICKER (CLEAN MARQUEE)
========================================= */
.news-ticker-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.ticker-box {
    background: #0f121d;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    height: 50px;
    padding: 0 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.ticker-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background: #0f121d;
    position: relative;
    height: 100%;
}

.icon-left {
    padding-right: 16px;
    box-shadow: 15px 0 15px -5px rgba(15, 18, 29, 1);
}

.icon-right {
    padding-left: 16px;
    box-shadow: -15px 0 15px -5px rgba(15, 18, 29, 1);
    cursor: pointer;
}

.ticker-icon svg {
    color: #94a3b8;
    stroke: currentColor;
    transition: color 0.2s ease;
}

.icon-right svg {
    stroke: var(--primary);
}

.ticker-badge {
    position: absolute;
    top: 6px;
    right: -6px;
    background: #ef4444;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.ticker-text-wrapper {
    flex: 1;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.ticker-text {
    display: inline-block;
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 400;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
    padding-left: 100%;
}

.ticker-text .highlight {
    color: var(--primary);
    font-weight: 600;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 1024px) {
    .news-ticker-container {
        margin: 0 auto 35px;
    }
}

/* =========================================
   GAMES GRID (MINIMALIST CARDS)
========================================= */
.casino-games-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.section-title {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.games-grid{
    display:grid;

    grid-template-columns:
    repeat(auto-fill,minmax(420px,1fr));

    gap:40px;
}

.game-card {
    background: #121722;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    transition: all .25s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
    position: relative;
}

.game-card:hover {
    transform:
    translateY(-6px)
    scale(1.01);

    box-shadow:
    0 20px 40px rgba(0,0,0,.45);

    border-color:
    rgba(255,255,255,.14);
}

.game-thumb {
    position: relative;
    height: 240px;
    width: 100%;
    overflow: hidden;
}

.game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: transform 0.4s ease;
}

.game-card:hover .game-thumb img {
    transform: scale(1.05);
}

.game-thumb .overlay {
    position:absolute;
   bottom:16px;
right:16px;

    display:flex;
    align-items:flex-start;
    justify-content:flex-end;

    opacity:1;

    transition:.25s ease;

    pointer-events:none;
}

.game-thumb .overlay span {

    padding:10px 18px;

    background:
    linear-gradient(
        90deg,
        #ff00aa,
        #7b00ff
    );

    border-radius:12px;

    font-weight:800;

    font-size:.78rem;

    color:#fff;

    letter-spacing:.5px;

    text-transform:uppercase;

    backdrop-filter:blur(10px);

    box-shadow:
    0 8px 25px rgba(255,0,170,.35);
}
.game-info {
    padding: 22px;
    position: relative;
}

.game-info h3 {
    margin: 0;
    font-size: 1.60rem;
    color: rgba(255,255,255,.68);
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.game-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.5;
}
/* =========================================
   FOOTER (CLEAN)
========================================= */
.casino-footer {
    background: #080a10;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.footer-text {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 5px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
}

/* =========================================
   FULLSCREEN GAME ENGINE (HUD CLEANUP)
========================================= */
#game-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: #080a10;
    overflow: hidden;
    touch-action: none;
    user-select: none;
}

#game-container::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/fundo.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
    mix-blend-mode: screen;
}

#game-canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    display: block;
    width: 100%;
    height: 100%;
}

/* Game HUD Overlays */
#ui-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#score-container {
    margin-top: 30px;
    background: rgba(15, 18, 29, 0.8);
    padding: 16px 48px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.score-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 2px;
}

#balance {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    font-family: monospace;
    letter-spacing: -1px;
}

#hint-text {
    margin-top: 110px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #cbd5e1;
    letter-spacing: 1px;
    background: rgba(15, 18, 29, 0.8);
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.neon-red {
    color: #ef4444;
    font-weight: 700;
}

#swipe-hint {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    animation: blink 2s infinite;
}

#btn-back-lobby {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 10000;
    background: rgba(15, 18, 29, 0.8);
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#btn-back-lobby:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-1px);
}

.screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(8, 10, 16, 0.85);
    backdrop-filter: blur(12px);
    z-index: 100;
    color: white;
}

.menu-panel {
    background: #0f121d;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 45px 40px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    min-width: 330px;
    position: relative;
    overflow: hidden;
}

.sys-status {
    font-size: 0.75rem;
    color: #94a3b8;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.cyber-title {
    font-size: 4rem;
    line-height: 0.9;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 800;
    letter-spacing: -2px;
}

.cyber-title span {
    color: var(--primary);
}

.subtitle {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: #64748b;
    margin-bottom: 40px;
}

.alert-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.gameover-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ef4444;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.stats-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 35px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-box p {
    font-size: 0.8rem;
    color: #94a3b8;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 500;
}

.stats-box h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin: 0;
    letter-spacing: -1px;
}

.btn-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.cyber-btn {
    pointer-events: all;
    width: 100%;
    background: var(--primary);
    color: #080a10;
    border: none;
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cyber-btn:hover {
    background: #33ffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.25);
}

@keyframes blink {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.8;
    }
}

@media (max-width: 600px) {
    #score-container {
        padding: 12px 30px;
    }

    #balance {
        font-size: 2.5rem;
    }

    .menu-panel {
        padding: 35px 25px;
        min-width: unset;
        width: 90%;
        max-width: 360px;
    }

    .cyber-title {
        font-size: 3.2rem;
    }

    .cyber-btn {
        padding: 15px 20px;
        font-size: 0.9rem;
    }

    #swipe-hint {
        font-size: 0.75rem;
        bottom: 40px;
    }
}

/* =========================================
   BOTTOM NAVIGATION BAR (MOBILE ONLY)
========================================= */
.bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    #casino-lobby {
        padding-bottom: 80px;
    }

    .bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: #0c0e17;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        z-index: 10005;
        align-items: stretch;
    }

    .bottom-nav-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        color: #64748b;
        text-decoration: none;
        font-size: 0.6rem;
        font-weight: 600;
        letter-spacing: 0.3px;
        text-transform: uppercase;
        transition: color 0.2s ease;
        position: relative;
    }

    .bottom-nav-item svg {
        width: 20px;
        height: 20px;
        stroke: currentColor;
        flex-shrink: 0;
    }

    .bottom-nav-item span {
        line-height: 1;
    }

    /* Indicador ativo */
    .bottom-nav-item.active {
        color: var(--primary);
    }

    .bottom-nav-item.active:not(#bnav-deposit)::after {
        content: '';
        position: absolute;
        top: 0;
        left: 25%;
        right: 25%;
        height: 2px;
        background: var(--primary);
        border-radius: 0 0 3px 3px;
    }

    /* Botão Depósito — elevado acima da barra */
    #bnav-deposit {
        position: relative;
        justify-content: flex-end;
        padding-bottom: 8px;
        color: #94a3b8;
    }

    .deposit-circle {
        position: absolute;
        top: -18px;
        left: 50%;
        transform: translateX(-50%);
        width: 46px;
        height: 46px;
        background: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 14px rgba(0, 255, 255, 0.4);
        border: 4px solid #0c0e17;
        transition: all 0.2s ease;
    }

    .deposit-circle svg {
        width: 0px;
        height: 0px;
        stroke: #080a10;
        stroke-width: 2.5;
    }

    #bnav-deposit.active .deposit-circle {
        background: var(--primary);
        box-shadow: 0 4px 20px rgba(0, 255, 255, 0.4);
    }

    .bnav-label {
        margin-top: 2px;
        font-size: 0.6rem;
    }

    .bnav-badge {
        position: absolute;
        top: 6px;
        right: calc(50% - 22px);
        width: 8px;
        height: 8px;
        background: #ef4444;
        border-radius: 50%;
        border: 2px solid #0c0e17;
    }
}

/* PIX PAYMENT MODAL PREMIUM */
#pix-result-modal .modal-content {
    max-width: 400px;
    text-align: center;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.payment-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 255, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.pix-instructions {
    text-align: left;
    background: rgba(255, 255, 255, 0.02);
    padding: 15px;
    border-radius: 10px;
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 20px;
}

.pix-instructions p {
    margin: 4px 0;
}

#btn-copy-pix {
    background: var(--primary) !important;
    /* Cor Primária Neon */
    color: #080a10 !important;
    /* Texto Escuro contrastante */
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 15px !important;
    border-radius: 10px;
}

#btn-copy-pix:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.4);
    background: #33ffff !important;
}

#pix-qr-img {
    image-rendering: auto;
    border-radius: 8px;
}

/* WITHDRAW FORM PREMIUM */
.withdraw-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 16px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.withdraw-field-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.withdraw-field-wrapper:focus-within {
    border-color: var(--primary);
    background: rgba(0, 255, 255, 0.02);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
}

.withdraw-field-wrapper .prefix {
    font-size: 1.2rem;
    font-weight: 800;
    color: #475569;
    margin-right: 12px;
}

.withdraw-field-wrapper input {
    background: transparent !important;
    border: none !important;
    padding: 10px 0 !important;
    font-size: 1.8rem !important;
    font-weight: 900 !important;
    color: #fff !important;
    font-family: 'Outfit', sans-serif;
    width: 100%;
    outline: none !important;
}

.withdraw-input-text {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 16px !important;
    border-radius: 12px !important;
    color: #fff !important;
    font-size: 1rem !important;
    width: 100%;
    outline: none;
    transition: all 0.3s ease;
}

.withdraw-input-text:focus {
    border-color: var(--primary) !important;
    background: rgba(0, 255, 255, 0.02) !important;
}

.input-hint {
    margin-top: 8px;
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 500;
}

/* MOBILE FIX FOR PORTAL MODALS */
@media (max-width: 650px) {

    #deposit-modal,
    #pix-result-modal,
    #profile-modal,
    #withdraw-modal,
    #wallet-modal,
    #history-modal {
        background: #080a10 !important;
        backdrop-filter: none !important;
        padding: 0 !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        height: 100vh !important;
        width: 100vw !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        z-index: 100000 !important;
        /* Total coverage including HUD/BottomNav */
    }

    #deposit-modal .modal-content,
    #pix-result-modal .modal-content,
    #profile-modal .modal-content,
    #withdraw-modal .modal-content,
    #wallet-modal .modal-content,
    #history-modal .modal-content {
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        max-height: none !important;
        border-radius: 0 !important;
        border: none !important;
        background: #080a10 !important;
        box-shadow: none !important;
        padding: 60px 24px 80px !important;
        margin: 0 !important;
        position: relative;
        overflow-y: auto;
        animation: none !important;
    }

    /* Ajuste fino para os títulos em tela cheia */
    .modal-title {
        text-align: left;
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .modal-close {
        top: 20px !important;
        right: 20px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        width: 40px !important;
        height: 40px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 100001 !important;
    }

    /* Padding extra para o histórico em mobile */
    .history-table-wrapper {
        margin: 0 -24px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
}

/* TABS & MODAL NAVIGATION */
.tabs-nav {
    display: flex;
    gap: 10px;
    background: rgba(0, 0, 0, 0.2);
    padding: 5px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: #64748b;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn.active {
    background: var(--primary);
    color: #080a10;
}

/* PREMIUM DATA TABLE */
.history-table-wrapper {
    background: rgba(15, 18, 29, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.premium-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.85rem;
}

.premium-table thead th {
    background: rgba(255, 255, 255, 0.02);
    padding: 14px 18px;
    color: #64748b;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.premium-table tbody td {
    padding: 14px 18px;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.premium-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* BADGES DE STATUS NO HISTÓRICO */
.status-pill {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
}

.status-pill.win {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.status-pill.lose {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.status-pill.pending {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.status-pill.completed {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

/* STACKED INPUT GROUPS */
.input-group-stack {
    text-align: left;
}

.input-group-stack .input-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* JUMP PROGRESS HUD (SÉRGIO STYLE) */
#game-progress-hud {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    z-index: 100;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.p-chip {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.p-bet {
    background: #ddb100;
    /* Gold/Yellow from print */
    color: #000;
}

.p-win {
    background: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
}

.progress-track {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

#progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ddb100, #ffea00);
    box-shadow: 0 0 10px rgba(221, 177, 0, 0.5);
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* CUSTOM MODAL SCROLLBAR */
.history-table-wrapper::-webkit-scrollbar {
    width: 5px;
}

.history-table-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.history-table-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

/* FLOATING PROFIT ANIMATION (JUMP CA$H STYLE) */
.floating-profit {
    position: absolute;
    color: #00ffcc;
    font-weight: 900;
    font-size: 1.6rem;
    pointer-events: none;
    z-index: 10000;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.5), 0 0 20px rgba(0, 0, 0, 0.8);
    font-family: 'Outfit', sans-serif;
    animation: floatUpFade 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes floatUpFade {
    0% {
        opacity: 0;
        transform: translate(-50%, 0) scale(0.5);
    }

    15% {
        opacity: 1;
        transform: translate(-50%, -20px) scale(1.1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -100px) scale(1);
    }
}

/* =========================================
   CUSTOM SCROLLBAR
========================================= */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #080a10;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

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

/* =========================================
   CASINO FOOTER - PREMIUM REDESIGN
========================================= */
.casino-footer {
    background: #0d111b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.2));
}

.brand-desc {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: #080a10;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
}

.footer-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-list li a:hover {
    color: var(--primary);
}

.payment-methods {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.pix-badge {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.pix-badge img {
    height: 25px;
    opacity: 0.9;
}

.payment-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0.6;
}

.badge-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    height: 24px;
}

.age-badge {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 800;
}

.secure-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    text-align: center;
}

.copyright {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
}

/* RESPONSIVE FOOTER */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .brand-info {
        grid-column: span 2;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col {
        align-items: center;
    }
    .brand-info {
        grid-column: span 1;
    }
    .casino-footer {
        padding-bottom: 100px; /* Space for bottom nav */
    }
}

/* =========================================
   LIVE PLAYERS INDICATOR
========================================= */
.live-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 5;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.game-card:hover .live-badge {
    transform: scale(1.05);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #00ff88;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid #00ff88;
    animation: live-pulse 1.5s ease-out infinite;
    opacity: 0;
}

@keyframes live-pulse {
    0% { transform: scale(0.5); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}

.live-text {
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.js-live-count {
    color: #00ff88;
    font-variant-numeric: tabular-nums;
}

/* =========================================
   LIVE RECENT WINS TICKER
========================================= */
.recent-wins-section {
    width: 100%;
    background: rgba(15, 18, 29, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    margin-top: 40px;
}

.ticker-header {
    max-width: 1200px;
    margin: 0 auto 10px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.win-ticker-container {
    width: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.win-ticker-track {
    display: flex;
    gap: 15px;
    padding: 10px 20px;
    animation: ticker-slide 60s linear infinite;
    width: max-content;
}

.win-ticker-track:hover {
    animation-play-state: paused;
}

@keyframes ticker-slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.win-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 10px 16px;
    border-radius: 12px;
    min-width: 200px;
    transition: all 0.2s ease;
}

.win-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.win-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: #080a10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.75rem;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
}

.win-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.win-user {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
}

.win-amount {
    font-size: 0.7rem;
    font-weight: 800;
    color: #00ff88;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .recent-wins-section {
        margin-top: 30px;
        padding: 10px 0;
    }
}

/* =========================================
   PIX DEPOSIT STEPPER (TUTORIAL)
========================================= */
.pix-stepper {
    text-align: left;
    margin: 15px 0 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.step-item:hover {
    background: rgba(0, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.1);
    transform: translateX(5px);
}

.step-number {
    width: 26px;
    height: 26px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.step-title {
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.step-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

.step-icon {
    color: rgba(255, 255, 255, 0.4);
    opacity: 0.8;
}

.step-item:hover .step-icon {
    color: var(--primary);
    opacity: 1;
}

@media (max-width: 480px) {
    .step-item {
        padding: 10px;
        gap: 10px;
    }
    .step-title {
        font-size: 0.7rem;
    }
    .step-desc {
        font-size: 0.65rem;
    }
}

/* =========================================
   SIDEBAR NAVIGATION
========================================= */
.sidebar {
    position: fixed;
    top: 80px;
    left: -280px;
    width: 280px;
    height: calc(100vh - 80px);
    background: rgba(8, 10, 16, 0.98);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.sidebar.show {
    left: 0;
    box-shadow: 20px 0 50px rgba(0, 0, 0, 0.5);
}

.sidebar-overlay {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.show {
    display: block;
    opacity: 1;
}

/* Sidebar Header (User Info) */
.sidebar-header {
    padding: 25px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sidebar-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%; /* Igual à barra de cima */
    border: 2px solid var(--primary);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
    object-fit: cover; /* Impede que a imagem estique */
}

.user-meta {
    display: flex;
    flex-direction: column;
}

.sb-username {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    text-transform: capitalize;
}

.sb-balance {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 800;
    margin-top: 2px;
}

/* Sidebar Content (Links) */
.sidebar-content {
    flex: 1;
    padding: 15px 0;
}

.sidebar-section {
    padding: 10px 15px;
}

.section-title {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    padding-left: 10px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    margin-bottom: 2px;
}

.sidebar-item:hover {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
}

.sidebar-item.active {
    background: rgba(0, 255, 255, 0.05);
    color: var(--primary);
}

.sidebar-item svg {
    opacity: 0.7;
}

.sidebar-item:hover svg,
.sidebar-item.active svg {
    opacity: 1;
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sb-footer-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-size: 0.75rem;
    margin-right: 15px;
    font-weight: 600;
    transition: color 0.2s;
}

.sb-footer-link:hover {
    color: #fff;
}

.btn-logout-sidebar {
    width: 100%;
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
}

.btn-logout-sidebar:hover {
    background: #ff6b6b;
    color: #fff;
}

/* Hamburger Btn */
.nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hamburger-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 5px;
    opacity: 0.8;
    transition: all 0.2s;
}

.hamburger-btn:hover {
    opacity: 1;
    color: var(--primary);
}

@media (max-width: 768px) {
    .sidebar {
        top: 0;
        height: 100vh;
        z-index: 11000; /* Higher than bottom-nav (10005) */
        left: -280px;
        padding-bottom: 100px; /* Space for bottom nav */
    }
    .sidebar-overlay {
        top: 0;
        z-index: 10999;
    }
    .sidebar.show {
        left: 0 !important;
    }
    #casino-lobby {
        padding-left: 0 !important;
    }
}


/* Fix sidebar open on desktop */
@media (min-width: 769px) {
    .sidebar {
        left: 0; /* Aberta por padrão */
    }
    
    #casino-lobby {
        padding-left: 280px; /* Conteúdo empurrado na inicialização */
        transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    /* Quando colapsada no PC via clique no botão */
    body.sidebar-collapsed .sidebar {
        left: -280px !important;
    }
    
    body.sidebar-collapsed #casino-lobby {
        padding-left: 0;
    }
    
    .sidebar-overlay {
        display: none !important; /* Sem overlay no PC para navegação contínua */
    }
}
/* OVERLAY */

.deposit-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.75);
  backdrop-filter:blur(10px);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:99999;
  padding:20px;
  overflow-y:auto;
-webkit-overflow-scrolling:touch;

}

/* MODAL */

.deposit-modal{
    overflow-y: auto;
  width:100%;
  max-width:460px;
  
  max-height: 95vh;

  background:
  linear-gradient(
    180deg,
    rgba(18,18,35,.98),
    rgba(8,8,18,.98)
  );

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

  border-radius:28px;

  padding:28px;

  position:relative;

  box-shadow:
  0 0 60px rgba(183,0,255,.18);

  animation:modalShow .25s ease;
}

@keyframes modalShow{
  from{
    opacity:0;
    transform:translateY(15px) scale(.97);
  }
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

/* CLOSE */

.modal-close{
  position:absolute;
  top:16px;
  right:16px;

  width:38px;
  height:38px;

  border:none;
  border-radius:12px;

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

  color:#fff;

  cursor:pointer;

  transition:.2s;
}

.modal-close:hover{
  background:rgba(255,255,255,.12);
}

/* HEADER */

.deposit-header{
  text-align:center;
  margin-bottom:20px;
}

.deposit-header h2{
  color:#fff;
  font-size:32px;
  font-weight:800;
  margin-bottom:8px;
}

.deposit-header p{
  color:rgba(255,255,255,.65);
  font-size:14px;
}

/* BONUS */

.deposit-bonus{
  background:
  linear-gradient(
    90deg,
    rgba(255,0,170,.18),
    rgba(132,0,255,.18)
  );

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

  padding:14px;
  border-radius:16px;

  text-align:center;

  color:#fff;

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

  margin-bottom:22px;
}

/* VALORES */

.deposit-values{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-bottom:22px;
}

.preset-btn{
  height:62px;

  border-radius:18px;

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

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

  color:#fff;

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

  cursor:pointer;

  transition:.2s;
}

.preset-btn:hover{
  transform:translateY(-2px);

  border-color:#c400ff;

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

.preset-btn.active{
  background:
  linear-gradient(
    135deg,
    #ff00aa,
    #7b00ff
  );

  border:none;
}

/* INPUTS */

.input-group{
  margin-bottom:18px;
}

.input-group label{
  display:block;

  margin-bottom:10px;

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

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

  letter-spacing:1px;
}

.deposit-input{
  width:100%;

  height:68px;

  border-radius:18px;

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

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

  padding:0 18px;

  color:#fff;

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

  outline:none;

  transition:.2s;
}

.deposit-input:focus{
  border-color:#d000ff;

  box-shadow:
  0 0 20px rgba(208,0,255,.25);
}

.deposit-input::placeholder{
  color:rgba(255,255,255,.25);
}

.cpf-input{
  font-size:22px;
}

.input-group small{
  display:block;
  margin-top:8px;

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

  font-size:12px;
}

/* BOTÃO */

.deposit-submit-btn{
  width:100%;
  height:68px;

  border:none;

  border-radius:20px;

  margin-top:10px;

  background:
  linear-gradient(
    90deg,
    #ff00aa,
    #7b00ff
  );

  color:#fff;

  font-size:18px;
  font-weight:900;

  letter-spacing:.5px;

  cursor:pointer;

  transition:.2s;

  box-shadow:
  0 0 35px rgba(255,0,170,.35);
}

.deposit-submit-btn:hover{
  transform:scale(1.02);

  box-shadow:
  0 0 45px rgba(255,0,170,.5);
}

/* FOOTER */

.deposit-footer{
  text-align:center;

  margin-top:18px;

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

  font-size:12px;
}
@media (max-width: 768px){

  .deposit-overlay{
    padding:16px;
    align-items:center;
    justify-content:center;
  }

  .deposit-modal{
    width:100%;
    max-width:100%;

    padding:22px;

    border-radius:22px;

    margin:auto;
  }

  .deposit-header h2{
    font-size:26px;
  }

  .deposit-values{
    grid-template-columns:1fr 1fr;
  }

  .preset-btn{
    height:56px;
    font-size:16px;
  }

  .deposit-input{
    height:60px;
    font-size:24px;
  }

  .cpf-input{
    font-size:18px;
  }

  .deposit-submit-btn{
    height:60px;
    font-size:16px;
  }

}
/* ========================= */
/* SIDEBAR PREMIUM */
/* ========================= */

.sidebar-menu{
    padding:10px;
}

/* TÍTULOS */

.menu-section-title{

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

    font-size:12px;

    font-weight:800;

    letter-spacing:1.5px;

    margin:
    28px 14px 12px;
}

/* BOTÕES */

.sidebar-item{

    position:relative;

    display:flex;

    align-items:center;

    gap:14px;

    height:58px;

    padding:0 18px;

    border-radius:18px;

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

    font-weight:700;

    text-decoration:none;

    transition:.22s ease;

    overflow:hidden;

    margin-bottom:10px;

    border:1px solid transparent;

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

    backdrop-filter:blur(8px);
}

/* HOVER */

.sidebar-item:hover{

    transform:translateX(4px);

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

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

    color:#fff;
}

/* ÍCONES */

.sidebar-item svg{

    width:20px;
    height:20px;

    opacity:.9;
}

/* BOTÃO ATIVO */

.sidebar-item.active{

    background:
    linear-gradient(
        90deg,
        rgba(0,255,255,.12),
        rgba(0,255,255,.03)
    );

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

    color:#00ffff;

    box-shadow:
    inset 0 0 20px rgba(0,255,255,.04);
}

/* BOTÃO DEPOSITAR */

.sidebar-item.deposit-item{

    background:
    linear-gradient(
        90deg,
        #ffd500,
        #ffb300
    );

    color:#000;

    font-weight:800;

    box-shadow:
    0 10px 25px rgba(255,200,0,.18);
}

.sidebar-item.deposit-item:hover{

    transform:
    translateX(4px)
    scale(1.02);

    box-shadow:
    0 14px 30px rgba(255,200,0,.28);
}

/* CONVIDAR */

.sidebar-item.invite-item{

    color:#ff00aa;
}

/* TELEGRAM */

.logout-item{
    background:#ff0000 !important;
    color:#fff !important;
    border-radius:14px;
}
/* 🔥 TÍTULO JUMP CASH */
.menu-panel h1 {
    background: linear-gradient(90deg, #ffffff, #ff00cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 0, 200, 0.5);
}

/* 💡 TEXTO CONECTADO */
.menu-panel p {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff88;
}

/* 💰 VALOR DA APOSTA (CAIXA) */
#bet-input,
input[type="number"] {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #00ffff;
    border-radius: 12px;
    color: #fff;
    font-size: 26px;
    text-align: center;
    padding: 10px;
    box-shadow:
        0 0 10px #00ffff,
        inset 0 0 10px #00ffff55;
    transition: all 0.3s ease;
}

/* 🔥 ANIMAÇÃO QUANDO FOCA */
#bet-input:focus,
input[type="number"]:focus {
    outline: none;
    box-shadow:
        0 0 20px #00ffff,
        0 0 40px #00ffff,
        inset 0 0 15px #00ffff;
    transform: scale(1.05);
}

/* ✨ LABEL "VALOR DA APOSTA" */
.label-bet {
    color: #00ffff;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 0 0 10px #00ffff88;
}

/* 🔥 BOTÃO COMO JOGAR */
.cyber-btn {
    background: linear-gradient(45deg, #ff00cc, #ff4dff);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 14px;
    box-shadow: 
        0 0 15px #ff00cc,
        0 0 30px #ff00cc55;
    transition: all 0.3s ease;
}

/* 🚀 HOVER BOTÃO */
.cyber-btn:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 25px #ff00cc,
        0 0 50px #ff00cc;
}

/* 💥 CLIQUE */
.cyber-btn:active {
    transform: scale(0.95);
}

/* 🌌 FUNDO DO CARD */
.menu-panel {
    background: rgba(10, 10, 20, 0.9);
    border-radius: 20px;
    box-shadow:
        0 0 30px rgba(0, 255, 255, 0.1),
        0 0 60px rgba(255, 0, 200, 0.1);
    backdrop-filter: blur(10px);
}

/* 🔁 ANIMAÇÃO LEVE PULSANTE */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 10px #00ffff; }
    50% { box-shadow: 0 0 25px #00ffff; }
    100% { box-shadow: 0 0 10px #00ffff; }
}

#bet-input {
    animation: pulseGlow 2s infinite;
}


/* HOVER */
#win-screen .cyber-btn:hover {

    transform: scale(1.04);

    box-shadow:
        0 0 25px rgba(255,0,170,0.70),
        0 0 60px rgba(255,0,170,0.35),
        0 0 100px rgba(255,0,170,0.20),
        inset 0 0 14px rgba(255,255,255,0.16);
}

/* CLICK */
#win-screen .cyber-btn:active {

    transform: scale(0.97);
}

/* ANIMAÇÕES */

@keyframes neonSwipe {

    0% {
        left: -120%;
    }

    100% {
        left: 140%;
    }
}

@keyframes floatWin {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes pulseWin {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.04);
    }
}

/* TEXTO */
#win-screen .stats-box p {

    position: relative;

    text-align: center;

    color: #00eaff;

    font-size: 24px;

    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 12px;

    text-shadow:
        0 0 10px rgba(0,234,255,0.7);
}

/* VALOR */
#win-score {

    position: relative;

    text-align: center;

    font-size: 92px;

    line-height: 1;

    font-weight: 900;

    color: #fff;

    text-shadow:
        0 0 15px rgba(255,255,255,0.8),
        0 0 30px rgba(255,0,200,0.5);

    animation:
        pulseValue 1.5s infinite alternate;
}

/* =========================================
   🔘 BOTÃO
========================================= */

#win-screen .cyber-btn {

    position: relative;

    width: 100%;

    height: 88px;

    border: none !important;

    border-radius: 24px;

    background:
        linear-gradient(
            180deg,
            #ff2ad4,
            #ff00a6
        ) !important;

    color: #fff !important;

    font-size: 34px;

    font-weight: 900;

    letter-spacing: 2px;

    text-transform: uppercase;

    box-shadow:
        0 0 18px rgba(255,0,180,0.9),
        0 0 40px rgba(255,0,180,0.55),
        0 0 90px rgba(255,0,180,0.35);

    overflow: hidden;

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

/* BRILHO MOVENDO */
#win-screen .cyber-btn::before {

    content: "";

    position: absolute;

    top: -50%;
    left: -120%;

    width: 80%;
    height: 220%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.45),
            transparent
        );

    transform: rotate(25deg);

    animation:
        swipeGlow 2.5s linear infinite;
}

/* HOVER */
#win-screen .cyber-btn:hover {

    transform: scale(1.03);

    box-shadow:
        0 0 25px rgba(255,0,180,1),
        0 0 60px rgba(255,0,180,0.65),
        0 0 120px rgba(255,0,180,0.4);
}

/* CLICK */
#win-screen .cyber-btn:active {

    transform: scale(0.97);
}

/* =========================================
   ✨ ANIMAÇÕES
========================================= */

@keyframes glowTitle {

    from {

        text-shadow:
            0 0 10px #ff00cc,
            0 0 25px rgba(255,0,200,0.7);
    }

    to {

        text-shadow:
            0 0 20px #ff00cc,
            0 0 45px rgba(255,0,200,1),
            0 0 90px rgba(255,0,200,0.55);
    }
}

@keyframes pulseValue {

    from {

        transform: scale(1);
    }

    to {

        transform: scale(1.04);
    }
}

@keyframes pulseIcon {

    0%,100% {

        transform: scale(1);
    }

    50% {

        transform: scale(1.06);
    }
}

@keyframes pulseRing {

    0% {

        transform: scale(0.8);
        opacity: 0.7;
    }

    100% {

        transform: scale(1.25);
        opacity: 0;
    }
}

@keyframes swipeGlow {

    0% {

        left: -120%;
    }

    100% {

        left: 140%;
    }
}
/* =========================================
   🏆 WIN SCREEN IGUAL DA IMAGEM
========================================= */

#win-screen {

    position: fixed;
    inset: 0;

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

    padding: 18px;

    background:
        radial-gradient(circle at top,
            rgba(255,0,170,0.12),
            transparent 45%),
        linear-gradient(
            180deg,
            #050510,
            #090915
        );

    overflow: hidden;
}

/* CARD */
#win-screen .menu-panel {

    position: relative;

    width: 100%;
    max-width: 360px;

    padding:
        22px 18px 20px;

    border-radius: 30px;

    background:
        linear-gradient(
            180deg,
            rgba(8,8,20,0.98),
            rgba(5,5,15,0.98)
        );

    border:
        2px solid rgba(255,0,200,0.75);

    box-shadow:
        0 0 20px rgba(255,0,200,0.55),
        0 0 70px rgba(255,0,200,0.22),
        inset 0 0 20px rgba(255,255,255,0.03);

    overflow: hidden;
}

/* BRILHO EXTERNO */
#win-screen .menu-panel::before {

    content: "";

    position: absolute;
    inset: -2px;

    border-radius: 30px;

    background:
        linear-gradient(
            180deg,
            rgba(255,0,200,0.18),
            transparent 35%
        );

    pointer-events: none;
}

/* =========================================
   💸 ÍCONE REDONDO
========================================= */

#win-screen .alert-icon {

    position: relative;

    width: 82px;
    height: 82px;

    margin:
        0 auto 16px;

    border-radius: 50%;

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

    background:
        radial-gradient(
            circle,
            rgba(255,0,200,0.18),
            rgba(255,0,200,0.05)
        );

    border:
        4px solid #ff00cc;

    box-shadow:
        0 0 18px #ff00cc,
        0 0 45px rgba(255,0,200,0.45);

    animation:
        pulseIcon 2s infinite ease-in-out;
}

/* EMOJI */
#win-screen .alert-icon i,
#win-screen .alert-icon span {

    font-size: 34px;

    filter:
        drop-shadow(0 0 10px rgba(255,255,255,0.55));
}

/* RAIOS */
#win-screen .alert-icon::before {

    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    border-radius: 50%;

    background:
        radial-gradient(
            rgba(255,0,200,0.22),
            transparent 65%
        );

    animation:
        pulseRing 2s infinite;
}

/* =========================================
   🎉 TÍTULO
========================================= */

#win-screen .gameover-title {

    text-align: center;

    font-size: 58px;

    line-height: 0.95;

    font-weight: 900;

    margin-bottom: 10px;

    color: #fff;

    text-transform: uppercase;

    text-shadow:
        0 0 10px #ff00cc,
        0 0 30px #ff00cc,
        0 0 60px rgba(255,0,200,0.85);

    animation:
        glowTitle 2s infinite alternate;
}

/* TEXTO AZUL */
#win-screen .win-subtitle {

    position: relative;

    text-align: center;

    color: #00eaff;

    font-size: 15px;

    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 24px;

    text-shadow:
        0 0 10px rgba(0,234,255,0.8),
        0 0 25px rgba(0,234,255,0.4);
}

/* LINHAS */
#win-screen .win-subtitle::before,
#win-screen .win-subtitle::after {

    content: "";

    position: absolute;

    top: 50%;

    width: 48px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #ff00cc
        );

    box-shadow:
        0 0 10px #ff00cc;
}

#win-screen .win-subtitle::before {

    left: 0;
}

#win-screen .win-subtitle::after {

    right: 0;

    transform: rotate(180deg);
}

/* =========================================
   💰 BOX VALOR
========================================= */

#win-screen .stats-box {

    position: relative;

    padding:
        22px 14px;

    border-radius: 24px;

    margin-bottom: 24px;

    background:
        linear-gradient(
            180deg,
            rgba(15,15,35,0.98),
            rgba(8,8,18,0.98)
        );

    border:
        2px solid rgba(255,0,200,0.5);

    box-shadow:
        0 0 18px rgba(255,0,200,0.35),
        inset 0 0 18px rgba(255,255,255,0.02);

    overflow: hidden;
}

/* HEXAGONOS */
#win-screen .stats-box::before {

    content: "";

    position: absolute;
    inset: 0;

    opacity: 0.06;

    background-image:
        radial-gradient(circle at 1px 1px,
        #fff 1px,
        transparent 0);

    background-size: 16px 16px;
}

/* TEXTO */
#win-screen .stats-box p {

    position: relative;

    text-align: center;

    color: #00eaff;

    font-size: 20px;

    font-weight: 800;

    margin-bottom: 10px;

    text-shadow:
        0 0 10px rgba(0,234,255,0.75);
}

/* VALOR */
#win-score {

    position: relative;

    text-align: center;

    font-size: 74px;

    line-height: 1;

    font-weight: 900;

    color: #fff;

    text-shadow:
        0 0 14px rgba(255,255,255,0.85),
        0 0 35px rgba(255,0,200,0.5);

    animation:
        pulseValue 1.4s infinite alternate;
}

/* =========================================
   🔘 BOTÃO
========================================= */

#win-screen .cyber-btn {

    position: relative;

    width: 100%;

    height: 72px;

    border: none !important;

    border-radius: 22px;

    background:
        linear-gradient(
            180deg,
            #ff38da,
            #ff00a6
        ) !important;

    color: #fff !important;

    font-size: 30px;

    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;

    box-shadow:
        0 0 20px rgba(255,0,180,0.95),
        0 0 50px rgba(255,0,180,0.55),
        0 0 90px rgba(255,0,180,0.28);

    overflow: hidden;

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

/* REFLEXO */
#win-screen .cyber-btn::before {

    content: "";

    position: absolute;

    top: -50%;
    left: -120%;

    width: 75%;
    height: 220%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.45),
            transparent
        );

    transform: rotate(25deg);

    animation:
        swipeGlow 2.5s linear infinite;
}

/* HOVER */
#win-screen .cyber-btn:hover {

    transform: scale(1.03);

    box-shadow:
        0 0 25px rgba(255,0,180,1),
        0 0 60px rgba(255,0,180,0.7),
        0 0 110px rgba(255,0,180,0.35);
}

/* =========================================
   ✨ ANIMAÇÕES
========================================= */

@keyframes glowTitle {

    from {

        text-shadow:
            0 0 10px #ff00cc,
            0 0 25px rgba(255,0,200,0.7);
    }

    to {

        text-shadow:
            0 0 18px #ff00cc,
            0 0 40px rgba(255,0,200,1),
            0 0 80px rgba(255,0,200,0.55);
    }
}

@keyframes pulseValue {

    from {

        transform: scale(1);
    }

    to {

        transform: scale(1.04);
    }
}

@keyframes pulseIcon {

    0%,100% {

        transform: scale(1);
    }

    50% {

        transform: scale(1.06);
    }
}

@keyframes pulseRing {

    0% {

        transform: scale(0.8);
        opacity: 0.7;
    }

    100% {

        transform: scale(1.25);
        opacity: 0;
    }
}

@keyframes swipeGlow {

    0% {

        left: -120%;
    }

    100% {

        left: 140%;
    }
}
/* ===================================
   PIX PREMIUM MODAL
=================================== */

.pix-premium-modal{

    max-width:420px !important;

    text-align:center;

    padding:28px;

    border-radius:30px;

    background:
    linear-gradient(
    180deg,
    #081120 0%,
    #0d1320 100%);

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

    box-shadow:
    0 0 40px rgba(255,0,255,.18),
    0 0 90px rgba(0,255,255,.08);

    overflow:hidden;

    position:relative;
}

/* glow */

.pix-premium-modal::before{

    content:'';

    position:absolute;

    width:300px;
    height:300px;

    background:
    radial-gradient(circle,
    rgba(255,0,255,.18),
    transparent 70%);

    top:-150px;
    right:-100px;

    pointer-events:none;
}

/* fechar */

.premium-close{

    width:42px;
    height:42px;

    border-radius:50%;

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

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

    color:#fff;
}

/* badge */

.premium-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 18px;

    border-radius:999px;

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

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

    color:#00ffd5;

    font-weight:800;

    font-size:.78rem;

    margin-bottom:22px;
}

/* valor */

.pix-value-box{

    margin-bottom:24px;
}

.pix-value-label{

    display:block;

    font-size:.72rem;

    color:#7f8a9c;

    letter-spacing:2px;

    margin-bottom:12px;

    font-weight:700;
}

.pix-value{

    font-size:3rem;

    font-weight:900;

    color:#fff;

    text-shadow:
    0 0 25px rgba(255,0,255,.35);
}

.pix-timer{

    margin-top:10px;

    color:#ffb84d;

    font-size:.9rem;

    font-weight:700;
}

/* titulo */

.premium-title{

    font-size:2rem;

    font-weight:900;

    margin-bottom:22px;
}

.premium-title span{

    color:#ff00ff;

    text-shadow:
    0 0 20px rgba(255,0,255,.4);
}

/* qr */

.premium-qr-box{

    background:#fff;

    padding:8px;

    border-radius:22px;

    width:240px;
    height:240px;

    margin:20px auto;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

    box-shadow:
    0 0 35px rgba(255,255,255,.12);

    animation:zoomIn .4s ease;
}

#pix-qr-img{

    width:100%;
    height:100%;

    object-fit:contain;

    display:block;

    border-radius:14px;
}

/* passos */

.pix-stepper{

    margin-top:10px;
}

.step-item{

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

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

    border-radius:18px;

    padding:14px;

    margin-bottom:12px;

    display:flex;

    align-items:center;

    gap:14px;

    transition:.2s;
}

.step-item:hover{

    transform:translateY(-2px);

    border-color:
    rgba(255,0,255,.25);
}

.step-number{

    min-width:34px;
    height:34px;

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #ff00ff,
    #00ffff);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:900;
}

.step-content{

    text-align:left;

    flex:1;
}

.step-title{

    display:block;

    color:#fff;

    font-weight:800;

    font-size:.85rem;
}

.step-desc{

    color:#95a0b3;

    font-size:.72rem;
}

/* copy */

.premium-copy-box{

    margin-top:22px;
}

.premium-textarea{

    width:100%;

    height:70px;

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

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

    border-radius:14px;

    color:#fff;

    padding:14px;

    font-size:.75rem;

    resize:none;

    margin-bottom:14px;
}

.premium-copy-btn{

    width:100%;

    height:62px;

    border:none;

    border-radius:18px;

    background:
    linear-gradient(
    90deg,
    #ff00ff,
    #ff0080) !important;

    color:#fff !important;

    font-size:1rem;

    font-weight:900;

    letter-spacing:2px;

    box-shadow:
    0 10px 30px rgba(255,0,140,.35);

    transition:.2s;
}

.premium-copy-btn:hover{

    transform:
    translateY(-2px)
    scale(1.01);
}

/* aviso */

.pix-warning-box{

    margin-top:20px;

    padding:14px;

    border-radius:14px;

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

    border:
    1px solid rgba(255,184,77,.12);

    color:#ffb84d;

    font-size:.8rem;

    font-weight:700;
}

/* overlay */

.modal-overlay{

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

    backdrop-filter:blur(10px);
}

/* animação */

@keyframes zoomIn{

    from{

        opacity:0;

        transform:scale(.92);
    }

    to{

        opacity:1;

        transform:scale(1);
    }
}
/* =========================
   QR CODE MOBILE FIX
========================= */

@media (max-width: 768px) {

    .pix-premium-modal {

        width:92%;
        max-width:420px;

        margin:0 auto;

        padding:20px 16px;
    }

    .premium-qr-box{

        width:220px;
        height:220px;

        padding:6px;

        border-radius:20px;
    }

    .pix-value-box,
    .premium-title,
    .pix-stepper,
    .premium-copy-box,
    .pix-warning-box {

        width:100%;

        text-align:center;
    }

}
@media (max-width:768px){

#bnav-deposit{
    display:flex !important;
    flex-direction:row !important;
    align-items:center !important;
    justify-content:center !important;
    top: 5px !important;

    width:200px !important;
    height:40px !important;

    gap:14px;
    border-radius:10px !important;

    background:linear-gradient(135deg,#ff00b8,#7b00ff) !important;

    box-shadow:
        0 0 25px rgba(255,0,180,.35),
        inset 0 0 12px rgba(255,255,255,.12);

    transform:translateY(-12px) !important;
}

.deposit-circle{
    all:unset !important;
    display:flex !important;
    align-items:center;
    justify-content:center;
}

.deposit-circle svg{
    width:24px !important;
    height:24px !important;
    stroke:#fff !important;
    stroke-width:3 !important;
}

#bnav-deposit .bnav-label{
    color:#fff !important;
    
    font-size:14px !important;
    font-weight:900 !important;
    letter-spacing:.4px;
    margin:0 !important;
}
}
@media (max-width:768px){

#bnav-deposit{
    margin:0 auto !important;
    transform:translateY(-2px) !important;
}

.bottom-nav{
    justify-content:space-around !important;
    align-items:center !important;
}

}
@media (max-width:768px){

#bnav-deposit .bnav-label{
    position:relative !important;
    top:6px !important;
}

}
@media (max-width:768px){

#bnav-deposit .deposit-circle{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
}

#bnav-deposit .deposit-circle svg{
    position:relative !important;
    top:6px !important;
    left:1px !important;
}

}
.game-card {
    margin-bottom: 35px;
}

.other-games-title {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    opacity: .9;
}
.play-button,
.play-btn,
.btn-play,
.game-button {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
}
.game-card:hover .play-button,
.game-card:hover .play-btn,
.game-card:hover .btn-play,
.game-card:hover .game-button {
    opacity: 1 !important;
    transform: translateY(0) scale(1.05) !important;
}
.game-info .mini-btn{
    background: linear-gradient(
        90deg,
        #ff00aa,
        #7b00ff
    );

    color:#fff;

    padding:16px 30px;
    
font-size:1.1rem;

    border-radius:12px;

    font-weight:800;

    text-transform:uppercase;

    letter-spacing:.5px;

    box-shadow:
    0 10px 20px rgba(255,0,170,.25);

    white-space:nowrap;
}