
        /* ==============================================
           TEMA: casa_chinesa           ============================================== */

        body {
            background-color: #18370c;
                        background: linear-gradient(180deg, #285313 0%, #17370b 30%, #102907 100%);
            background-attachment: fixed;
                        margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
        }

        /* Estilos para barra topo */
        .bonus-cadastro {
            width: 100%;
            position: relative;
            box-sizing: border-box;
            background: linear-gradient(135deg, #09a85e 0%, #0cc878 100%);
            color: #ffffff;
            text-align: center;
            padding: 7px;
            font-size: 15px;
            font-weight: bold;
            z-index: 999;
            letter-spacing: 0.5px;
        }

        /* Estilos para o topo */
        .top-bar {
            background-color: #214b12;
            width: 100%;
            box-shadow: 0 12px 26px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.04);
            padding: 10px 0;
                        border-bottom: 1px solid #7edb3433;
                    }
        .container {
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-sizing: border-box;
        }
        .logo img {
            width: 100px;
            height: auto;
        }
        .buttons {
            display: flex;
            gap: 10px;
        }
        .button {
            padding: 10px 20px;
            background: linear-gradient(135deg, #09a85e 0%, #0cc878 100%);
            color: #ffffff;
            border: none;
                        border-radius: 10px;
                        cursor: pointer;
            text-align: center;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            letter-spacing: 0.3px;
        }
        .button:hover {
            background-color: #ff9b21;
                        transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
                    }

        /* Termos boxs */
        .sidebar {
            position: fixed;
            left: -300px;
            top: 0;
            width: 300px;
            height: 100%;
            background-color: #214b12;
            box-shadow: 0 12px 26px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.04);
            transition: left 0.3s ease-in-out;
            z-index: 9999;
                        border-right: 1px solid #7edb3433;
                    }
        .sidebar.show {
            left: 0;
        }
        .sidebar-content {
            position: absolute;
            top: 40px;
            bottom: 0;
            overflow-y: auto;
            padding: 15px;
            text-align: justify;
            font-size: 12px;
            color: #fff;
            scrollbar-width: thin;
            scrollbar-color: #7edb34 #18370c;
        }
        .sidebar-content::-webkit-scrollbar {
            width: 8px;
        }
        .sidebar-content::-webkit-scrollbar-thumb {
            background-color: #18370c;
            border-radius: 10px;
        }
        .sidebar-content::-webkit-scrollbar-thumb:hover {
            background-color: #18370c;
        }
        .sidebar-content::-webkit-scrollbar-track {
            background: #18370c;
        }
        .close-sidebar {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 20px;
            cursor: pointer;
            color: #7edb34;
            transition: color 0.3s;
        }
        .close-sidebar:hover {
            color: #ff9b21;
        }

        /* BotÃ£o Esporte */
        .botao-esporte {
            width: 200px;
            height: 60px;
            background: linear-gradient(135deg, #09a85e 0%, #0cc878 100%);
                        border-radius: 0 14px 14px 0;
                        overflow: hidden;
            display: flex;
            transition: all 0.3s ease;
        }
        .botao-esporte .botao-esporte-card {
            width: 100%;
            height: 100%;
        }
        .botao-esporte .botao-esporte-btn {
            width: 100%;
            height: 100%;
            background: transparent;
            border: none;
            color: #ffffff;
            font-weight: 600;
            font-size: 12px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            letter-spacing: 0.5px;
        }
        .botao-esporte-btn i {
            margin-right: 5px;
        }
        .botao-esporte:hover {
            filter: brightness(1.1);
                    }

        /* Estilos para o slider */
        .slider-wrapper {
            max-width: 1000px;
            margin: 40px auto;
        }
        .slider-container {
            width: 100%;
            height: 200px;
            overflow: hidden;
            position: relative;
            border-radius: 8px;
                        border: 1px solid #7edb3422;
                    }
        .slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        .slide {
            flex: 0 0 100%;
            height: 200px;
        }
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 8px;
        }
        .dots {
            text-align: center;
            margin-top: 10px;
        }
        .dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            margin: 0 5px;
            background-color: #bbb;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .dot.active {
            background-color: #7edb34;
                    }

        /* Estilos para busca */
        .busca-container {
            margin: 40px auto 0 auto;
            text-align: center;
            width: 100%;
            max-width: 1000px;
        }
        .busca-form-row {
            display: flex;
            justify-content: center;
            margin-bottom: 10px;
        }
        .busca-input-icon {
            position: relative;
            width: 100%;
        }
        .busca-input-icon i {
            position: absolute;
            top: 50%;
            left: 12px;
            transform: translateY(-50%);
            color: #7edb34;
        }
        .busca-input {
            width: 100%;
            padding: 6px 8px 6px 40px;
            border: none;
            border-radius: 8px;
            height: 50px;
            background-color: #214b12;
            color: #fff;
            font-size: 16px;
                        border: 1px solid #7edb3422;
                        transition: all 0.3s ease;
        }
        .busca-input:focus {
            outline: none;
            border: 1px solid #7edb34;
            box-shadow: 0 0 10px #7edb3433;
        }
        .busca-container,
        .busca-input-icon,
        .busca-input {
            box-sizing: border-box;
        }
        .busca-resultado {
            max-width: 600px;
            margin: 0 auto;
            text-align: left;
        }
        .busca-tabela-resultado {
            width: 100%;
            max-width: 1000px;
            margin: 5px auto;
            border-collapse: collapse;
            background-color: #214b12;
            color: #fff;
            border-radius: 8px;
            box-shadow: 0 12px 26px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.04);
            overflow: hidden;
            table-layout: fixed;
                        border: 1px solid #7edb3422;
                    }
        .busca-tabela-resultado td {
            padding: 8px 10px;
            vertical-align: middle;
            overflow: hidden;
        }
        .col-img {
            width: 60px;
            text-align: center;
            padding-left: 5px;
            padding-right: 5px;
        }
        .col-nome {
            width: 45%;
            font-size: 16px;
        }
        .col-jogadores {
            overflow: visible !important;
            white-space: normal !important;
            text-overflow: clip !important;
            font-size: 12px;
            text-align: center;
        }
        .col-jogar {
            width: 120px;
            text-align: right;
        }
        .busca-img {
            width: 50px;
            height: 50px;
            object-fit: contain;
            border-radius: 5px;
            background-color: transparent;
        }
        .btn-jogar {
            padding: 6px 12px;
            background: linear-gradient(135deg, #09a85e 0%, #0cc878 100%);
            border: none;
            color: #ffffff;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
            font-weight: 600;
        }
        .btn-jogar:hover {
            background-color: #ff9b21;
                        transform: translateY(-2px);
                    }
        .online-dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            margin-right: 6px;
            background-color: #00ff00;
            border-radius: 50%;
            animation: piscar 1s infinite;
            vertical-align: middle;
        }
        @keyframes piscar {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.2; }
        }
        .sem-resultado {
            text-align: center;
            color: #fff;
            padding: 20px;
            font-size: 16px;
            background-color: transparent;
        }

        /* carrossel-ganhadores */
        .ganhos-container {
            display: flex;
            overflow: hidden;
            height: 80px;
            margin-top: 40px;
        }
        .ganhos-fixo {
            flex: 0 0 150px;
            background: linear-gradient(135deg, #09a85e 0%, #0cc878 100%);
            color: #ffffff;
            font-weight: bold;
            text-align: left;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            gap: 10px;
            padding: 10px;
            box-sizing: border-box;
            height: 100%;
                        border-radius: 0 14px 14px 0;
                    }
        .ganhos-fixo i {
            font-size: 30px;
            color: #ffffff;
        }
        .ganhos-fixo span {
            line-height: 1.2;
        }
        .ganhos-rolando {
            flex: 1;
            overflow: hidden;
            position: relative;
            height: 100%;
        }
        .ganhos-slider {
            display: flex;
            align-items: center;
            height: 100%;
        }
        .card {
            display: flex;
            align-items: center;
            background-color: #214b12;
            color: #fff;
            padding: 10px;
            margin-right: 15px;
            border-radius: 8px;
            min-width: 220px;
            height: 100%;
            box-sizing: border-box;
                        border: 1px solid #7edb3422;
                    }
        .card img {
            width: 50px;
            height: 50px;
            margin-right: 10px;
            border-radius: 4px;
            object-fit: contain;
            background-color: transparent;
        }
        .valor {
            color: #7edb34;
            font-weight: bold;
        }

        /* Listagem dos jogos */
        .lista-jogos, .aovivo-resultados {
            background-color: transparent;
            padding: 20px;
            margin-top: 20px;
            max-width: 1000px;
            margin: 0 auto;
        }
        .lista-jogos .jogos-container {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 12px;
            max-width: 1000px;
            margin: 0 auto;
            width: 100%;
            box-sizing: border-box;
        }
        .titulo-lista-jogos, .aovivo-titulo {
            display: flex;
            align-items: center;
            font-size: 14px;
            font-weight: bold;
            margin: 20px 0 10px;
            color: #fff;
            font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
            letter-spacing: 0.5px;
        }
        .lista-jogos .jogo-card {
            background-color: #214b12;
            height: 230px;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            cursor: pointer;
            transition: all 0.3s ease;
                        border: 1px solid rgba(126, 219, 52, 0.16);
                    }
        .lista-jogos .jogo-card:hover {
                        transform: translateY(-6px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
                    }
        .lista-jogos .jogo-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: top center;
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 0;
            transform: scale(0.94);
            transform-origin: center;
            border-radius: 8px;
            background-color: #214b12;
        }
        .lista-jogos .jogo-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-color: rgba(0,0,0,0.6);
            opacity: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.3s;
            cursor: default;
            z-index: 10;
            border-radius: 8px;
        }
        .lista-jogos .jogo-card:hover .jogo-overlay {
            opacity: 1;
        }
        .lista-jogos .jogar-btn {
            background: linear-gradient(135deg, #09a85e 0%, #0cc878 100%);
            border: none;
            color: #ffffff;
            padding: 10px 20px;
            border-radius: 8px;
            font-size: 14px;
            cursor: pointer;
            z-index: 20;
            position: relative;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .lista-jogos .jogar-btn:hover {
                        transform: translateY(-2px);
                    }
        .lista-jogos .jogo-info {
            position: absolute;
            bottom: 5px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            width: 100%;
            color: white;
        }
        .lista-jogos .jogo-info .nome {
            font-size: 14px;
            font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
        }
        .lista-jogos .jogo-info .jogadores {
            margin-top: 4px;
            font-size: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0px;
        }
        .jogadores-text {
            margin-left: 4px;
        }
        .btn-ver-mais {
            padding: 10px 20px;
            background: linear-gradient(135deg, #09a85e 0%, #0cc878 100%);
            color: #ffffff;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            text-align: center;
            font-size: 16px;
            font-weight: 600;
            display: block;
            margin: 20px auto 0 auto;
            transition: all 0.3s ease;
        }
        .btn-ver-mais:hover {
            background-color: #ff9b21;
                        transform: translateY(-2px);
                    }

        /* Estilos para o modal */
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 999;
        }
        .overlay.show {
            display: block;
        }
        .modal {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #214b12;
            padding: 20px;
            box-shadow: 0 12px 26px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.04);
            z-index: 1000;
            width: 90%;
            max-width: 400px;
            border-radius: 8px;
                        border: 1px solid #7edb3433;
                    }
        .modal-content h2 {
            margin: 0 0 15px 0;
            font-size: 24px;
            color: #7edb34;
            text-align: center;
            font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
        }
        .modal.show {
            display: block;
        }
        .close-modal {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 18px;
            color: #7edb34;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .close-modal:hover {
            color: #ff9b21;
        }
        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .form-row .input-icon {
            flex: 1;
        }
        .input-icon {
            position: relative;
            margin-bottom: 5px;
        }
        .input-icon i {
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: #7edb34;
            pointer-events: none;
            transition: color 0.3s ease;
        }
        .input-icon i:hover {
            color: #ff9b21;
        }
        .input-icon input, .input-icon textarea {
            padding-left: 35px;
            width: 100%;
            height: 45px;
            border: none;
            border-radius: 8px;
            color: #fff;
            background-color: #18370c;
            outline: none;
            box-sizing: border-box;
            font-size: 14px;
            font-family: Arial, sans-serif;
            transition: all 0.3s ease;
                        border: 1px solid #7edb3422;
                    }
        .input-icon input:focus, .input-icon textarea:focus {
                    }
        .input-icon input::placeholder, .input-icon textarea::placeholder {
            font-family: Arial, sans-serif;
            font-size: 14px;
        }
        .submit-button {
            width: 100%;
            padding: 15px 20px;
            background: linear-gradient(135deg, #09a85e 0%, #0cc878 100%);
            color: #ffffff;
            text-decoration: none;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            margin-top: 0px;
            font-size: 16px;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        .submit-button:hover {
            background-color: #ff9b21;
                        transform: translateY(-2px);
                    }
        input.submit-button.recuperar,
        input.submit-button.abrir-conta,
        input.submit-button.contato {
            margin-top: 10px !important;
        }
        .termos {
            font-size: 12px;
            color: #fff;
            line-height: 1;
            text-align: justify;
        }
        .termos a {
            color: #7edb34;
            text-decoration: none;
            font-weight: bold;
            cursor: pointer;
        }
        .termos a:hover {
            text-decoration: underline;
            color: #ff9b21;
        }
        .recover-password {
            width: 100%;
            display: flex;
            justify-content: flex-end;
            margin-bottom: 10px;
            margin-top: 5px;
            cursor: pointer;
        }
        .recover-password a,
        .log-in a,
        .create-account a {
            color: #7edb34;
            text-decoration: none;
            font-size: 14px;
        }
        .recover-password a:hover,
        .log-in a:hover,
        .create-account a:hover {
            color: #ff9b21;
        }
        .log-in, .create-account {
            width: 100%;
            display: flex;
            justify-content: center;
            margin-top: 15px;
            cursor: pointer;
        }
        #alerta-cadastro, #alerta-login, #alerta-senha, #alerta-contato {
            width: 100%;
            margin-top: -10px;
            display: none;
            font-size: 14px;
        }
        .alertanao {
            width: 100%;
            color: #FE0000;
            text-align: center;
            display: block;
            cursor: pointer;
            line-height: 24px;
        }
        .alertasim {
            width: 100%;
            color: #7edb34;
            text-align: center;
            display: block;
            cursor: pointer;
            line-height: 24px;
        }

        /* Listagem ao vivos */
        .online-dot-red {
            display: inline-block;
            width: 12px;
            height: 12px;
            margin-right: 6px;
            background-color: #FF3B30;
            border-radius: 50%;
            animation: piscarred 1s infinite;
            vertical-align: middle;
        }
        @keyframes piscarred {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }
        .aovivo-wrapper {
            width: 400px;
            margin: 0 auto;
        }
        #aovivo-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .aovivo-entry {
            padding: 10px;
            background: #214b12;
            box-shadow: 0 12px 26px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.04);
            border-radius: 8px;
            color: white;
            display: flex;
            align-items: center;
            box-sizing: border-box;
            width: 100%;
            transition: all 0.3s ease;
                        border: 1px solid #7edb3422;
                    }
        .aovivo-entry:hover {
                    }
        .aovivo-entry img {
            width: 40px;
            height: 40px;
            border-radius: 5px;
        }
        .aovivo-info {
            margin-left: 8px;
            font-size: 13px;
        }
        .aovivo-amount {
            color: #7edb34;
            font-weight: bold;
        }

        /* Estilos para o footer */
        .footer {
            color: #fff;
            width: 100%;
            padding: 40px 0 20px;
        }
        .footer .container-footer {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: stretch;
            flex-wrap: nowrap;
            gap: 5px;
        }
        .footer-column {
            flex: 1;
            min-width: 200px;
            margin: 10px;
        }
        .footer-column:first-child {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100%;
        }
        .footer-column h4 {
            font-size: 16px;
            margin-bottom: 10px;
            color: #7edb34;
            font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
        }
        .footer-column ul {
            list-style: none;
            padding: 0;
        }
        .footer-column ul li {
            margin-bottom: 5px;
        }
        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            font-size: 14px;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .footer-column ul li a:hover {
            color: #7edb34;
        }
        .footer img {
            max-width: 150px;
        }
        .footer img.pix-logo {
            max-width: 100px !important;
        }
        .social-icons a {
            margin-right: 10px;
            font-size: 24px;
            color: #fff;
            transition: all 0.3s ease;
        }
        .social-icons a:hover {
            color: #7edb34;
                    }
        .footer-line {
            border-top: 1px solid #444;
            margin: 30px auto;
            max-width: 1000px;
        }
        .footer-text {
            max-width: 1000px;
            margin: 0 auto;
            font-size: 12px;
            color: #ccc;
            line-height: 1.6;
            padding: 0 20px;
        }
        .ver-mais-btn {
            padding: 10px 20px;
            background: linear-gradient(135deg, #09a85e 0%, #0cc878 100%);
            color: #ffffff;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            text-align: center;
            font-size: 16px;
            font-weight: 600;
            display: block;
            margin: 10px auto 0;
            transition: all 0.3s ease;
        }
        .ver-mais-btn:hover {
            background-color: #ff9b21;
                        transform: translateY(-2px);
                    }
        .footer-centered-img {
            max-width: 1000px;
            margin: 20px auto;
            text-align: center;
        }
        .selo-img {
            max-width: 350px !important;
            height: auto !important;
        }
        .footer-bottom {
            max-width: 1000px;
            margin: 20px auto 0;
            text-align: center;
            font-size: 13px;
            color: #aaa;
        }
        .footer-bottom span {
            margin: 0 8px;
        }

        @media (max-width: 768px) {
            .bonus-cadastro {
                font-size: 3.5vw;
            }
            .modal {
                width: calc(100% - 80px);
                max-width: none;
            }
            .input-icon input {
                font-size: 16px;
            }
            .footer .container-footer {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 6px;
            }
            .footer-column:nth-child(1) {
                display: none;
            }
            .footer-column {
                flex: 1 1 100%;
                box-sizing: border-box;
                margin: 5px 0;
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            .footer-column:nth-child(2),
            .footer-column:nth-child(3) {
                flex: 1 1 47%;
                order: 1;
            }
            .footer-column:nth-child(4),
            .footer-column:nth-child(5) {
                flex: 1 1 47%;
                order: 2;
            }
            .footer-column ul {
                padding-left: 0;
                list-style: none;
            }
            .footer-column img,
            .footer-column .pix-logo,
            .footer-column .social-icons {
                margin: 0 auto;
                display: block;
            }
            .footer-column h4 {
                text-align: center;
            }
            .social-icons {
                justify-content: center;
                display: flex;
            }
            .busca-container {
                padding: 0 15px;
            }
            .busca-input-icon {
                max-width: 100%;
            }
            .col-nome {
                width: 70%;
                font-size: 14px;
            }
            .col-jogadores {
                overflow: visible !important;
                white-space: normal !important;
                text-overflow: clip !important;
                font-size: 12px;
                width: 40%;
                text-align: center;
            }
            .col-jogar {
                width: 80px;
                text-align: right;
            }
            .lista-jogos {
                padding: 0px 0px 0px 5px;
            }
            .lista-jogos .jogos-container {
                display: flex;
                overflow-x: auto;
                padding-bottom: 10px;
                gap: 12px;
                width: 100%;
                flex-wrap: nowrap;
                -ms-overflow-style: none;
                scrollbar-width: none;
            }
            .lista-jogos .jogo-card {
                min-width: 120px;
                height: 182px;
                flex-shrink: 0;
            }
            .lista-jogos .jogos-container::-webkit-scrollbar {
                display: none;
            }
            .lista-jogos .jogo-img {
                transform: scale(0.9);
            }
            .lista-jogos .jogo-info .nome {
                font-size: 12px;
            }
            .lista-jogos .jogar-btn {
                padding: 8px 16px;
                font-size: 13px;
            }
            .aovivo-resultados {
                margin-top: -30px;
            }
            .botao-esporte {
                width: 70%;
                height: 45px;
                position: fixed;
                z-index: 998;
                                border-radius: 0 14px 14px 0;
                            }
            .botao-esporte .botao-esporte-btn {
                font-size: 15px;
            }
            .botao-esporte-btn i {
                margin-right: 8px;
            }
        }





        .lista-jogos .jogos-container {
            grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
            gap: 10px !important;
        }
        .lista-jogos .jogo-card {
            height: auto !important;
            aspect-ratio: .72 !important;
            min-width: 0 !important;
        }
        .lista-jogos .jogo-img {
            object-fit: cover !important;
        }
        @media (max-width: 420px) {
            .lista-jogos .jogos-container {
                grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
                gap: 8px !important;
            }
        }

        html {
            background: #07101e;
        }
        body {
            background: #18370c !important;
            color: #d9f6c4;
            max-width: 486px;
            min-height: 100vh;
            margin: 0 auto !important;
            overflow-x: hidden;
            box-shadow: 0 0 0 1px rgba(126,219,52,.12), 0 0 48px rgba(0,0,0,.45);
        }
        .bonus-cadastro,
        .top-bar,
        .botao-esporte,
        .slider-wrapper,
        .ganhos-container,
        .busca-container,
        .lista-jogos,
        .aovivo-resultados,
        .footer {
            max-width: 486px !important;
            margin-left: auto !important;
            margin-right: auto !important;
            box-sizing: border-box;
        }
        .bonus-cadastro {
            min-height: 62px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8px 42px 8px 62px;
            background: linear-gradient(135deg, #4f9433 0%, #2b651c 48%, #77b73b 100%) !important;
            color: #fff;
            font-size: 15px;
            line-height: 1.15;
            text-shadow: 0 2px 3px rgba(0,0,0,.45);
            border-bottom: 1px solid rgba(255,255,255,.08);
        }
        .bonus-cadastro::before {
            content: "X";
            position: absolute;
            left: 12px;
            top: 18px;
            width: 28px;
            height: 28px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: rgba(255,255,255,.22);
            color: #fff;
            font-weight: 900;
        }
        .bonus-cadastro::after {
            content: "Instalar";
            position: absolute;
            right: 12px;
            top: 18px;
            padding: 5px 10px;
            border-radius: 5px;
            background: #ffb233;
            color: #fff;
            font-weight: 900;
            box-shadow: inset 0 -2px 0 rgba(0,0,0,.18);
        }
        .top-bar {
            background: #224f12 !important;
            box-shadow: none;
            padding: 10px 0;
            border: 0;
        }
        .top-bar .container {
            max-width: 486px !important;
            padding: 0 18px;
        }
        .logo img {
            width: 88px;
            background: transparent;
            filter: drop-shadow(0 2px 2px rgba(0,0,0,.4));
        }
        .buttons {
            gap: 8px;
            margin-left: auto;
        }
        .button {
            padding: 8px 10px;
            border-radius: 7px;
            background: linear-gradient(180deg, #0cc878 0%, #059a5b 100%) !important;
            color: #fff;
            font-size: 12px;
            font-weight: 900;
            text-transform: uppercase;
            box-shadow: 0 3px 0 rgba(0,0,0,.25);
        }
        .buttons .button:first-child {
            order: 2;
            background: linear-gradient(180deg, #ffb238 0%, #f28a18 100%) !important;
        }
        .buttons .button:last-child {
            order: 1;
        }
        .botao-esporte {
            width: 100%;
            height: 44px;
            border-radius: 0;
            background: #18370c !important;
            padding: 0 18px;
        }
        .botao-esporte .botao-esporte-btn {
            justify-content: flex-start;
            color: #d7edc5;
            font-size: 0;
        }
        .botao-esporte .botao-esporte-btn::before {
            content: "☰";
            font-size: 24px;
            color: #c0d8b0;
        }
        .slider-wrapper {
            margin: 14px auto 10px !important;
            padding: 0 18px;
        }
        .slider-container,
        .slide {
            height: 286px;
            border-radius: 10px;
        }
        .slider-container {
            background: #0e2507;
            border: 1px solid rgba(126,219,52,.18);
            box-shadow: 0 12px 24px rgba(0,0,0,.32);
        }
        .slide img {
            object-fit: cover;
            filter: saturate(1.12) contrast(1.04);
        }
        .dots {
            display: none;
        }
        .ganhos-container {
            height: 34px;
            margin-top: 10px !important;
            padding: 0 18px;
            background: transparent;
        }
        .ganhos-fixo {
            flex: 0 0 48px;
            border-radius: 7px 0 0 7px;
            background: #2b5a18 !important;
            color: #b8f06f;
        }
        .ganhos-fixo span {
            display: none;
        }
        .ganhos-rolando {
            background: #285719;
            border-radius: 0 7px 7px 0;
        }
        .card {
            min-width: 150px;
            height: 34px;
            padding: 4px 8px;
            background: transparent;
            color: #e3f7d2;
            border: 0;
            box-shadow: none;
        }
        .card img {
            width: 24px;
            height: 24px;
        }
        .valor {
            color: #f4d74a;
        }
        .busca-container {
            margin-top: 12px;
            padding: 0 18px;
        }
        .busca-input {
            height: 42px;
            background: #285719;
            color: #dff4ce;
            border: 1px solid rgba(126,219,52,.16);
            border-radius: 7px;
        }
        .busca-input-icon i {
            color: #b8f06f;
        }
        .titulo-lista-jogos,
        .aovivo-titulo {
            margin: 16px 0 10px;
            padding: 10px 14px;
            border-radius: 8px;
            background: #285719;
            color: #c9f49d;
            font-size: 15px;
            font-weight: 900;
            text-transform: none;
            border: 0;
        }
        .lista-jogos,
        .aovivo-resultados {
            padding: 0 18px;
        }
        .lista-jogos .jogos-container {
            display: grid !important;
            grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
            gap: 14px !important;
        }
        .lista-jogos .jogo-card {
            height: 136px !important;
            min-width: 0 !important;
            border-radius: 4px;
            background: #285719;
            border: 1px solid rgba(126,219,52,.12);
            box-shadow: 0 8px 16px rgba(0,0,0,.25);
        }
        .lista-jogos .jogo-img {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
            transform: none !important;
            border-radius: 4px;
        }
        .lista-jogos .jogo-info {
            display: none;
        }
        .lista-jogos .jogo-overlay {
            background: rgba(24,55,12,.62);
        }
        .lista-jogos .jogar-btn,
        .btn-jogar,
        .btn-ver-mais,
        .ver-mais-btn,
        .submit-button {
            background: linear-gradient(180deg, #ffb238 0%, #f28a18 100%) !important;
            color: #fff;
            border-radius: 7px;
            font-weight: 900;
            box-shadow: 0 3px 0 rgba(0,0,0,.28);
        }
        .footer {
            margin-top: 22px;
            padding: 18px;
            background: #102907;
        }
        .footer .container-footer {
            display: none;
        }
        .footer-text {
            padding: 14px 18px;
            border-radius: 8px;
            background: #143408;
            color: #9ec28b;
            font-size: 12px;
            line-height: 1.65;
        }
        .footer-bottom {
            color: #9ec28b;
            font-size: 12px;
        }
        @media (min-width: 700px) {
            body {
                margin-top: 0 !important;
            }
        }
        @media (max-width: 420px) {
            .slider-container,
            .slide {
                height: 260px;
            }
            .lista-jogos .jogos-container {
                grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
                gap: 10px !important;
            }
            .lista-jogos .jogo-card {
                height: 124px !important;
            }
        }




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

        :root {
            --theme-surface: #214b12;
            --theme-muted: #b9d9a9;
            --theme-border: rgba(126,219,52,.18);
            --theme-button: linear-gradient(135deg,#0cc878,#ff9b21);
            --theme-button-text: #ffffff;
            --theme-accent: #7edb34;
            --theme-accent-2: #ff9b21;
        }
        body {
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }
        .top-bar {
            border-bottom: 1px solid var(--theme-border);
        }
        .top-bar .container,
        .container {
            min-height: 58px;
            gap: 12px;
        }
        .buttons {
            display: flex !important;
            align-items: center !important;
            gap: 8px !important;
            min-width: 0;
        }
        .button,
        .btnRetirar,
        .btnResgatar,
        .submit-button,
        .btn-jogar,
        .lista-jogos .jogar-btn,
        .btn-ver-mais,
        .ver-mais-btn,
        .close-slots-modal {
            min-height: 36px !important;
            height: 36px !important;
            padding: 0 14px !important;
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            gap: 6px !important;
            border-radius: 8px !important;
            background: var(--theme-button) !important;
            color: var(--theme-button-text) !important;
            border: 1px solid color-mix(in srgb, var(--theme-accent) 45%, transparent) !important;
            box-shadow: 0 8px 18px rgba(0,0,0,.16) !important;
            font-size: 13px !important;
            font-weight: 800 !important;
            line-height: 1 !important;
            letter-spacing: 0 !important;
            text-transform: uppercase !important;
            white-space: nowrap !important;
            cursor: pointer;
        }
        .button br,
        .btnRetirar br,
        .btnResgatar br {
            display: none !important;
        }
        .button i,
        .btnRetirar i,
        .btnResgatar i,
        .submit-button i,
        .btn-jogar i,
        .lista-jogos .jogar-btn i,
        .btn-ver-mais i,
        .ver-mais-btn i {
            font-size: 14px !important;
            line-height: 1 !important;
            margin: 0 !important;
        }
        .button:hover,
        .btnRetirar:hover,
        .btnResgatar:hover,
        .submit-button:hover,
        .btn-jogar:hover,
        .lista-jogos .jogar-btn:hover,
        .btn-ver-mais:hover,
        .ver-mais-btn:hover {
            filter: brightness(1.06);
            transform: translateY(-1px);
        }
        .saldo-retirar,
        .bonus-resgatar {
            min-height: 44px;
            padding: 5px 8px;
            border: 1px solid var(--theme-border);
            border-radius: 10px;
            background: color-mix(in srgb, var(--theme-surface) 88%, transparent);
            box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
        }
        .saldo-titulo,
        .bonus-titulo {
            margin: 0 0 2px !important;
            color: var(--theme-muted) !important;
            font-size: 10px !important;
            line-height: 1 !important;
            text-transform: uppercase;
        }
        .saldo,
        .bonus-valor {
            margin: 0 0 4px !important;
            color: var(--theme-accent) !important;
            font-size: 13px !important;
            line-height: 1 !important;
            font-weight: 900 !important;
        }
        .btnRetirar,
        .btnResgatar {
            min-height: 24px !important;
            height: 24px !important;
            padding: 0 10px !important;
            font-size: 10px !important;
            border-radius: 6px !important;
            box-shadow: none !important;
        }
        .slider-container,
        .busca-input,
        .card,
        .modal,
        .busca-tabela-resultado,
        .aovivo-entry,
        .lista-jogos .jogo-card {
            border: 1px solid var(--theme-border) !important;
            box-shadow: 0 12px 24px rgba(0,0,0,.14);
        }
        .lista-jogos .jogos-container {
            display: grid !important;
            grid-template-columns: repeat(auto-fill, minmax(128px, 1fr)) !important;
            gap: 12px !important;
        }
        .lista-jogos .jogo-card {
            height: auto !important;
            aspect-ratio: .72 !important;
            min-width: 0 !important;
            border-radius: 9px !important;
            background: var(--theme-surface) !important;
        }
        .lista-jogos .jogo-img {
            object-fit: cover !important;
            transform: none !important;
        }
        .button,.btnRetirar,.btnResgatar,.submit-button,.btn-jogar,.lista-jogos .jogar-btn,.btn-ver-mais,.ver-mais-btn { border-radius: 7px !important; }
        .lista-jogos .jogos-container { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; gap: 9px !important; }
        .lista-jogos .jogo-card { aspect-ratio: .72 !important; border-radius: 4px !important; }
        @media (max-width: 768px) {
            .top-bar .container,
            .container {
                min-height: 54px;
                padding-left: 12px !important;
                padding-right: 12px !important;
                gap: 8px !important;
            }
            .logo img { max-width: 96px !important; }
            .buttons { gap: 6px !important; }
            .button,
            .submit-button,
            .btn-jogar,
            .lista-jogos .jogar-btn,
            .btn-ver-mais,
            .ver-mais-btn {
                height: 34px !important;
                min-height: 34px !important;
                padding: 0 10px !important;
                font-size: 12px !important;
            }
            .saldo-retirar,
            .bonus-resgatar {
                display: none !important;
            }
            .slider-container,
            .slide {
                height: 156px !important;
            }
            .ganhos-container {
                height: 68px !important;
            }
            .busca-container,
            .lista-jogos,
            .aovivo-resultados,
            .slider-wrapper {
                padding-left: 10px !important;
                padding-right: 10px !important;
            }
            .lista-jogos .jogos-container {
                grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
                gap: 9px !important;
                overflow: visible !important;
            }
            .lista-jogos .jogo-card {
                aspect-ratio: .72 !important;
            }
            .lista-jogos .jogos-container { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; gap: 8px !important; }
        }
        /* Correção final de usabilidade: ações visíveis e grids mobile estáveis. */
        .top-bar {
            position: relative !important;
            z-index: 20;
        }
        .top-bar .container,
        .container {
            gap: 10px !important;
        }
        .buttons {
            min-width: 0;
            display: flex !important;
            align-items: center !important;
            justify-content: flex-end !important;
            gap: 8px !important;
        }
        .button,
        .btnRetirar,
        .btnResgatar {
            visibility: visible !important;
            opacity: 1 !important;
        }
        .saldo-retirar,
        .bonus-resgatar {
            visibility: visible !important;
            opacity: 1 !important;
        }
        .lista-jogos,
        .aovivo-resultados {
            overflow: visible !important;
        }
        .lista-jogos .jogos-container {
            display: grid !important;
            grid-template-columns: repeat(auto-fill, minmax(126px, 1fr)) !important;
            gap: 12px !important;
            overflow: visible !important;
            align-items: start !important;
            min-width: 0 !important;
        }
        .lista-jogos .jogo-card {
            display: block !important;
            width: 100% !important;
            min-width: 0 !important;
            max-width: none !important;
            height: auto !important;
            aspect-ratio: .72 !important;
            flex: none !important;
        }
        .lista-jogos .jogo-img {
            position: absolute !important;
            inset: 0 !important;
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
            object-position: center !important;
            transform: none !important;
        }
        .lista-jogos .jogo-info {
            pointer-events: none;
        }
        @media (max-width: 768px) {
            .top-bar {
                padding: 8px 0 !important;
            }
            .top-bar .container,
            .container {
                min-height: auto !important;
                padding-left: 10px !important;
                padding-right: 10px !important;
                display: flex !important;
                flex-wrap: wrap !important;
                align-items: center !important;
                justify-content: space-between !important;
            }
            .logo {
                flex: 0 0 auto !important;
            }
            .logo img {
                max-width: 92px !important;
                height: auto !important;
            }
            .buttons {
                flex: 1 1 220px !important;
                display: flex !important;
                flex-wrap: wrap !important;
                justify-content: flex-end !important;
                align-items: center !important;
                gap: 6px !important;
                overflow: visible !important;
            }
            .button {
                height: 32px !important;
                min-height: 32px !important;
                padding: 0 9px !important;
                font-size: 11px !important;
                border-radius: 7px !important;
                line-height: 1 !important;
            }
            .button i,
            .button i.fa-2x {
                font-size: 12px !important;
                margin: 0 4px 0 0 !important;
            }
            .button br {
                display: none !important;
            }
            .saldo-retirar,
            .bonus-resgatar {
                display: flex !important;
                flex: 0 1 auto !important;
                min-width: 92px !important;
                max-width: 124px !important;
                min-height: 32px !important;
                padding: 4px 6px !important;
                align-items: center !important;
                justify-content: center !important;
                gap: 4px !important;
                border-radius: 8px !important;
                box-sizing: border-box !important;
            }
            .saldo-titulo,
            .bonus-titulo {
                display: none !important;
            }
            .saldo,
            .bonus-valor {
                margin: 0 !important;
                font-size: 11px !important;
                line-height: 1 !important;
                max-width: 56px !important;
                overflow: hidden !important;
                text-overflow: ellipsis !important;
                white-space: nowrap !important;
            }
            .btnRetirar,
            .btnResgatar {
                display: inline-flex !important;
                height: 22px !important;
                min-height: 22px !important;
                padding: 0 6px !important;
                font-size: 9px !important;
                border-radius: 6px !important;
                flex: 0 0 auto !important;
            }
            .slider-wrapper,
            .busca-container,
            .lista-jogos,
            .aovivo-resultados,
            .ganhos-container {
                max-width: 100% !important;
                padding-left: 10px !important;
                padding-right: 10px !important;
                box-sizing: border-box !important;
            }
            .lista-jogos .jogos-container {
                display: grid !important;
                grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
                gap: 9px !important;
                overflow: visible !important;
            }
            .lista-jogos .jogo-card {
                width: 100% !important;
                min-width: 0 !important;
                height: auto !important;
                aspect-ratio: .72 !important;
                flex: none !important;
            }
        }
        .botao-esporte {
            position: static !important;
            left: auto !important;
            right: auto !important;
            bottom: auto !important;
            top: auto !important;
            z-index: auto !important;
        }
        @media (max-width: 768px) {
            body { padding-bottom: 0 !important; }
            .top-bar { position: relative !important; }
            .lista-jogos .jogos-container {
                grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
                gap: 8px !important;
            }
            .lista-jogos .jogo-card {
                aspect-ratio: .72 !important;
            }
            .saldo-retirar,
            .bonus-resgatar {
                display: none !important;
            }
        }
        @media (max-width: 768px) {
            .lista-jogos .jogo-info {
                display: none !important;
            }
        }
        /* Polimento final de botoes e area de saldo: compacto, moderno e consistente. */
        .top-bar .container,
        .container {
            align-items: center !important;
        }
        .buttons {
            align-items: center !important;
            gap: 8px !important;
        }
        .button,
        .submit-button,
        .btn-jogar,
        .lista-jogos .jogar-btn,
        .btn-ver-mais,
        .ver-mais-btn,
        .close-slots-modal {
            height: 34px !important;
            min-height: 34px !important;
            padding: 0 12px !important;
            border-radius: 9px !important;
            font-size: 12px !important;
            font-weight: 850 !important;
            line-height: 1 !important;
            letter-spacing: 0 !important;
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            gap: 6px !important;
            box-shadow: 0 6px 14px rgba(0,0,0,.14) !important;
        }
        .button i,
        .button i.fa-2x,
        .submit-button i,
        .btn-jogar i,
        .lista-jogos .jogar-btn i,
        .btn-ver-mais i,
        .ver-mais-btn i {
            font-size: 13px !important;
            line-height: 1 !important;
            margin: 0 !important;
        }
        .button br {
            display: none !important;
        }
        .saldo-retirar,
        .bonus-resgatar {
            height: 38px !important;
            min-height: 38px !important;
            padding: 4px 6px !important;
            display: grid !important;
            grid-template-columns: minmax(54px, auto) auto !important;
            grid-template-rows: 1fr !important;
            align-items: center !important;
            gap: 6px !important;
            border-radius: 10px !important;
            border: 1px solid color-mix(in srgb, var(--theme-accent, #00c774) 22%, transparent) !important;
            background: color-mix(in srgb, var(--theme-surface, #1e1e1e) 86%, transparent) !important;
            box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 6px 14px rgba(0,0,0,.10) !important;
        }
        .saldo-titulo,
        .bonus-titulo {
            display: none !important;
        }
        .saldo,
        .bonus-valor {
            margin: 0 !important;
            color: var(--theme-accent, #00c774) !important;
            font-size: 12px !important;
            font-weight: 900 !important;
            line-height: 1 !important;
            white-space: nowrap !important;
            overflow: hidden !important;
            text-overflow: ellipsis !important;
        }
        .btnRetirar,
        .btnResgatar {
            height: 28px !important;
            min-height: 28px !important;
            padding: 0 9px !important;
            border-radius: 7px !important;
            font-size: 10px !important;
            font-weight: 850 !important;
            line-height: 1 !important;
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            box-shadow: none !important;
        }
        .modal .submit-button {
            height: 42px !important;
            min-height: 42px !important;
            font-size: 14px !important;
            border-radius: 10px !important;
        }
        @media (max-width: 768px) {
            .top-bar {
                padding: 8px 0 !important;
            }
            .top-bar .container,
            .container {
                display: flex !important;
                flex-wrap: wrap !important;
                gap: 8px !important;
                padding-left: 10px !important;
                padding-right: 10px !important;
            }
            .logo {
                flex: 0 0 auto !important;
            }
            .logo img {
                max-width: 92px !important;
                height: auto !important;
            }
            .buttons {
                flex: 1 1 100% !important;
                width: 100% !important;
                display: flex !important;
                flex-wrap: nowrap !important;
                justify-content: flex-start !important;
                gap: 6px !important;
                overflow-x: auto !important;
                overflow-y: hidden !important;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                padding-bottom: 1px;
            }
            .buttons::-webkit-scrollbar {
                display: none;
            }
            .button,
            .submit-button,
            .btn-jogar,
            .lista-jogos .jogar-btn,
            .btn-ver-mais,
            .ver-mais-btn {
                flex: 0 0 auto !important;
                height: 30px !important;
                min-height: 30px !important;
                padding: 0 9px !important;
                font-size: 10px !important;
                border-radius: 8px !important;
                box-shadow: 0 4px 10px rgba(0,0,0,.12) !important;
            }
            .button i,
            .button i.fa-2x {
                font-size: 11px !important;
                margin: 0 3px 0 0 !important;
            }
            .saldo-retirar,
            .bonus-resgatar {
                flex: 0 0 auto !important;
                width: auto !important;
                min-width: 104px !important;
                max-width: 132px !important;
                height: 30px !important;
                min-height: 30px !important;
                padding: 3px 5px !important;
                grid-template-columns: minmax(42px, 1fr) auto !important;
                gap: 4px !important;
                border-radius: 8px !important;
            }
            .saldo,
            .bonus-valor {
                max-width: 54px !important;
                font-size: 10px !important;
            }
            .btnRetirar,
            .btnResgatar {
                height: 22px !important;
                min-height: 22px !important;
                padding: 0 6px !important;
                font-size: 9px !important;
                border-radius: 6px !important;
            }
            .modal .submit-button {
                height: 38px !important;
                min-height: 38px !important;
                font-size: 13px !important;
            }
        }
        @media (max-width: 768px) {
            .buttons {
                flex: 1 1 auto !important;
                width: auto !important;
                justify-content: flex-end !important;
            }
            .button {
                height: 30px !important;
                min-height: 30px !important;
            }
            .saldo-retirar,
            .bonus-resgatar {
                display: none !important;
            }
        }
        /* Correção final do topo: logo esquerda, ações direita. */
        .top-bar .container,
        .container {
            display: flex !important;
            align-items: center !important;
            justify-content: space-between !important;
            flex-wrap: nowrap !important;
        }
        .logo {
            flex: 0 0 auto !important;
            margin-right: auto !important;
            min-width: 0 !important;
        }
        .buttons {
            flex: 0 1 auto !important;
            margin-left: auto !important;
            justify-content: flex-end !important;
            align-items: center !important;
            flex-wrap: nowrap !important;
            max-width: calc(100% - 116px) !important;
            overflow-x: auto !important;
            overflow-y: hidden !important;
            scrollbar-width: none;
        }
        .buttons::-webkit-scrollbar {
            display: none;
        }
        @media (max-width: 768px) {
            .top-bar .container,
            .container {
                flex-wrap: nowrap !important;
                gap: 8px !important;
            }
            .logo img {
                max-width: 92px !important;
            }
            .buttons {
                width: auto !important;
                flex: 1 1 auto !important;
                justify-content: flex-end !important;
                max-width: calc(100% - 100px) !important;
                padding-bottom: 0 !important;
            }
        }

        /* Correção final de topo e sidebar real do dashboard. */
        .top-bar {
            overflow: visible !important;
        }
        .top-bar .container,
        .container {
            display: flex !important;
            align-items: center !important;
            justify-content: space-between !important;
            flex-wrap: nowrap !important;
            overflow: visible !important;
        }
        .logo {
            flex: 0 0 auto !important;
            display: flex !important;
            align-items: center !important;
            gap: 10px !important;
            overflow: visible !important;
            z-index: 30 !important;
        }
        .buttons {
            flex: 1 1 auto !important;
            min-width: 0 !important;
            margin-left: auto !important;
            justify-content: flex-end !important;
            overflow-x: auto !important;
            overflow-y: visible !important;
            z-index: 25 !important;
        }
        #mySidebar.sidebar {
            width: 250px !important;
            left: -300px;
            z-index: 99999 !important;
            overflow-y: auto !important;
            overflow-x: hidden !important;
            box-sizing: border-box !important;
            max-width: 86vw !important;
        }
        #mySidebar.sidebar a {
            white-space: normal !important;
            line-height: 1.2 !important;
            min-height: 40px !important;
            display: flex !important;
            align-items: center !important;
            gap: 8px !important;
            box-sizing: border-box !important;
        }
        #mySidebar.sidebar .close-btn {
            z-index: 100000 !important;
        }
        @media (max-width: 768px) {
            .top-bar .container,
            .container {
                gap: 8px !important;
            }
            .buttons {
                max-width: calc(100% - 112px) !important;
                flex-wrap: nowrap !important;
            }
            #mySidebar.sidebar {
                width: 250px !important;
                max-width: 86vw !important;
            }
        }

