
        body {
            background-color: #121212;
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
        }

        /* Estilos para barra topo */
            .bonus-cadastro {
            width: 100%;
            position: relative;
            box-sizing: border-box;
            background-color: #c8102e;
            color: #ffffff;
            text-align: center;
            padding: 5px;
            font-size: 15px;
            font-weight: bold;
            z-index: 999;
        }

        /* Estilos para o topo */
        .top-bar {
            background-color: #1E1E1E;
            width: 100%;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
            padding: 10px 0;
        }
        .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-color: #c8102e;
            color: #ffffff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            text-align: center;
            font-size: 16px;
        }
        .button:hover {
            background-color: #ff335a;
        } 

    /* Termos boxs */
        .sidebar {
            position: fixed;
            left: -300px; 
            top: 0;
            width: 300px;
            height: 100%;
            background-color: #1E1E1E;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
            transition: left 0.3s ease-in-out;
            z-index: 9999;
        }
        .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;
            /* Estilos para Firefox */
            scrollbar-width: thin;
            scrollbar-color: #c8102e #121212;
        }
        .sidebar-content::-webkit-scrollbar {
            width: 8px; 
        }
        .sidebar-content::-webkit-scrollbar-thumb {
            background-color: #121212; 
            border-radius: 10px; 
        }
        .sidebar-content::-webkit-scrollbar-thumb:hover {
            background-color: #121212;
        }
        .sidebar-content::-webkit-scrollbar-track {
            background: #121212;
        }
        .close-sidebar {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 20px;
            cursor: pointer;
            color: #c8102e; 
            transition: color 0.3s;
        }
        .close-sidebar:hover {
            color: #ff335a;
        }

    /* Botão Esporte */
        .botao-esporte {
            width: 200px;
            height: 60px;
            background: #c8102e;
            border-bottom-right-radius: 25px;
            overflow: hidden;
            display: flex;
        }
        .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;
        }
        .botao-esporte-btn i {
            margin-right: 5px;
        }
        .botao-esporte:hover {
            filter: brightness(1.1);
            background-color: #ff335a;
        }

    /* Estilos para o slider */
        .slider-wrapper {
            max-width: 1000px;
            margin: 40px auto;
        }
        .slider-container {
            width: 100%;
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        .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: 3px;
        }
        .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;
        }
        .dot.active {
            background-color: #c8102e;
        }

    /* 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: #c8102e;
        }
        .busca-input {
            width: 100%;
            padding: 6px 8px 6px 40px;
            border: none;
            border-radius: 3px;
            height: 50px;
            background-color: #1E1E1E;
            color: #fff;
            font-size: 16px;
        }
        .busca-input:focus {
            outline: none;
            border: 1px solid #c8102e;
            box-shadow: 0 0 5px #c8102e33; 
        }
        .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: #1E1E1E;
            color: #fff;
            border-radius: 3px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
            overflow: hidden;
            table-layout: fixed;
        }
        .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-color: #c8102e;
            border: none;
            color: #ffffff;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
            font-size: 14px;
        }
        .btn-jogar:hover {
            background-color: #ff335a;
        }
        .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-color: #121212;
            color: white;
            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%;
        }
        .ganhos-fixo i {
            font-size: 30px;
            color: #ffc107;
        }
        .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: #1E1E1E;
            color: #fff;
            padding: 10px;
            margin-right: 15px;
            border-radius: 8px;
            min-width: 220px;
            height: 100%;
            box-sizing: border-box;
        }
        .card img {
            width: 50px;
            height: 50px;
            margin-right: 10px;
            border-radius: 4px;
            object-fit: contain;
            border-radius: 5px;
            background-color: transparent;
        }
        .valor {
            color: #c8102e;
            font-weight: bold;
        }

    /* Listagem dos jogos */  
            .lista-jogos, .aovivo-resultados {
            background-color: #121212;
            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; /* espaço entre os cards */
            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;
        }
        .lista-jogos .jogo-card {
            background-color: #1E1E1E;
            height: 230px;
            border-radius: 10px;
            position: relative;
            overflow: hidden;
            background-size: contain;      
            background-repeat: no-repeat;   
            background-position: center;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .lista-jogos .jogo-card:hover {
            transform: scale(1.05);
        }
        .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: 10px;
            background-color: #1E1E1E;
        }
        .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;
        }
        .lista-jogos .jogo-card:hover .jogo-overlay {
            opacity: 1;
        }
        .lista-jogos .jogar-btn {
            background-color: #c8102e;
            border: none;
            color: #ffffff;
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 14px;
            cursor: pointer;
            z-index: 20;
            position: relative;
        }
        .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;
        }
        .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-color: #c8102e;
            color: #ffffff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            text-align: center;
            font-size: 16px;
            display: block;
            margin: 20px auto 0 auto;
            transition: background-color 0.3s ease;
        }
        .btn-ver-mais:hover {
            background-color: #ff335a;
        }

    /* 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: #1E1E1E;
            padding: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
            z-index: 1000;
            width: 90%;
            max-width: 400px;
            border-radius: 5px;
        } 
        .modal-content h2 {
            margin: 0 0 15px 0; 
            font-size: 24px;
            color: #c8102e;
            text-align: center; 
        }
            .modal.show {
            display: block;
        }
        .close-modal {
            position: absolute; 
            top: 10px; 
            right: 10px; 
            font-size: 18px; 
            color: #c8102e; 
            cursor: pointer;
        }
        .close-modal:hover {
            color: #ff335a; 
        }
        .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: #c8102e; 
            pointer-events: none; 
        }
        .input-icon i:hover {
            color: #ff335a; 
        }
        .input-icon input, .input-icon textarea {
            padding-left: 35px; 
            width: 100%;
            height: 45px; 
            border:none; 
            border-radius: 3px; 
            color: #fff; 
            background-color: #121212;
            outline: none; 
            box-sizing: border-box;
            font-size: 14px;
            font-family: Arial, sans-serif;
        }
        .input-icon input::placeholder, .input-icon textarea::placeholder {
            font-family: Arial, sans-serif;
            font-size: 14px;
        }
        .submit-button {
            width: 100%;
            padding: 15px 20px; 
            background-color: #c8102e;
            color: #ffffff;
            text-decoration: none;
            border-radius: 5px;
            border: none;
            cursor: pointer;
            margin-top: 0px; 
            font-size: 16px; 
            font-weight: bold;
        }
        .submit-button:hover {
            background-color: #ff335a;
        } 
        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: #c8102e; 
            text-decoration: none; 
            font-weight: bold; 
            cursor: pointer;
        }
        .termos a:hover {
            text-decoration: underline; 
            color: #ff335a;
        }
        .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: #c8102e;
            text-decoration: none;
            font-size: 14px; 
        }
        .recover-password a:hover,
        .log-in a:hover,
        .create-account a:hover {
            color: #ff335a;
        }
        .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: #c8102e;
            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: #1E1E1E;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
            border-radius: 5px;
            color: white;
            display: flex;
            align-items: center;
            box-sizing: border-box;
            width: 100%;
        }
        .aovivo-entry img {
            width: 40px;
            height: 40px;
            border-radius: 5px;
        }
        .aovivo-info {
            margin-left: 8px;
            font-size: 13px;
        }
        .aovivo-amount {
            color: #c8102e;
            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: #c8102e;
        }
        .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;
        }
        .footer-column ul li a:hover {
            text-decoration: none;
        }
        .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: color 0.3s;
        }
        .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-color: #c8102e;
            color: #ffffff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            text-align: center;
            font-size: 16px;
            display: block;
            margin: 10px auto 0;
            transition: background-color 0.3s;
        }
        .ver-mais-btn:hover {
            background-color: #ff335a;
        }
        .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) {
            /* Estilos para barra topo */
            .bonus-cadastro {
                font-size: 3.5vw;
            }

            /* Estilos para o modal */ 
            .modal {
                width: calc(100% - 80px);
                max-width: none; 
            }
            .input-icon input {
                font-size: 16px;
            }

            /* Estilos para o footer */ 
            .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;
            }

            /* Estilos para a busca */ 
            .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;
            }

            /* Estilos para a lista de jogos */ 
            .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;
            }

            /* Estilos para a lista de aovivo */    
            .aovivo-resultados{
                margin-top: -30px;
            }

            /* Botão Esporte */   
            .botao-esporte {
                width: 70%;
                height: 45px;
                position: fixed;
                z-index: 998; 
                border-radius: 0px 25px 25px 0px;
            }
            .botao-esporte .botao-esporte-btn {
                font-size: 15px;
            }
            .botao-esporte-btn i {
                margin-right: 8px;
            } 
}


/* ===== 2026 PREMIUM OVERRIDE ===== */
body{background:linear-gradient(180deg,#090c12 0%,#0b1119 100%) !important;color:#fff;}
.bonus-cadastro{background:linear-gradient(90deg,#c8102e 0%,#ff335a 100%) !important;color:#fff !important;padding:10px 14px !important;font-size:14px !important;letter-spacing:.3px;}
.top-bar{position:sticky;top:0;z-index:100;background:rgba(9,12,18,.92) !important;backdrop-filter:blur(14px);border-bottom:1px solid rgba(255,255,255,.07);box-shadow:0 10px 28px rgba(0,0,0,.25)!important;}
.container{max-width:1200px !important;padding:14px 20px !important;}
.logo img{width:124px !important;filter:drop-shadow(0 10px 20px rgba(0,0,0,.25));}
.buttons{gap:12px !important;align-items:center;}
.button{border-radius:999px !important;padding:12px 20px !important;font-size:14px !important;font-weight:800 !important;transition:.22s ease !important;}
.buttons .button.modalCadastro{background:linear-gradient(135deg,#c8102e 0%,#ff335a 100%) !important;color:#fff !important;box-shadow:0 14px 28px rgba(200,16,46,.28);}
.buttons .button.modalLogin{background:rgba(255,255,255,.05)!important;border:1px solid rgba(255,255,255,.12)!important;color:#fff!important;}
.button:hover,.submit-button:hover,.btn-jogar:hover,.btn-ver-mais:hover,.ver-mais-btn:hover{transform:translateY(-2px);filter:brightness(1.03);}
.home-hero{width:100%;padding:36px 20px 18px;background:radial-gradient(circle at top right, rgba(255,255,255,.05), transparent 20%),linear-gradient(180deg,#091019 0%,#0b1119 100%);}
.home-hero-container{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1.15fr .85fr;gap:28px;align-items:center;}
.home-badge{display:inline-flex;padding:8px 14px;border-radius:999px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);color:#d7dee8;font-size:12px;font-weight:700;letter-spacing:.8px;margin-bottom:18px;}
.home-hero-left h1{margin:0 0 14px;font-size:52px;line-height:1.02;font-weight:900;max-width:700px;}
.home-hero-left p{margin:0;font-size:18px;line-height:1.7;color:#aab4c3;max-width:640px;}
.home-hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin:28px 0;}
.home-btn{border:none;outline:none;min-width:190px;height:56px;padding:0 22px;border-radius:14px;font-size:15px;font-weight:800;cursor:pointer;transition:.22s ease;}
.home-btn-primary,.bonus-showcase-btn,.btn-jogar,.submit-button,.btn-ver-mais,.ver-mais-btn,.botao-esporte{background:linear-gradient(135deg,#c8102e 0%,#ff335a 100%) !important;color:#fff !important;}
.home-btn-secondary{background:rgba(255,255,255,.05);color:#fff;border:1px solid rgba(255,255,255,.1);}
.home-hero-stats{display:flex;gap:12px;flex-wrap:wrap;}.home-stat{display:inline-flex;align-items:center;gap:10px;padding:12px 16px;border-radius:14px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.07);color:#dce3ec;font-size:14px;font-weight:600;}.home-stat i{color:#ff5a78;}
.home-hero-right{display:flex;justify-content:center;}.bonus-showcase-card{width:100%;max-width:390px;padding:28px;border-radius:26px;background:linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%),#121926;border:1px solid rgba(255,255,255,.08);box-shadow:0 24px 50px rgba(0,0,0,.3);}.bonus-showcase-top{color:#98a4b5;font-size:12px;font-weight:800;letter-spacing:1px;margin-bottom:14px;}.bonus-showcase-value{font-size:44px;line-height:1;font-weight:900;margin-bottom:16px;}.bonus-showcase-text{font-size:15px;line-height:1.7;color:#aeb8c6;margin-bottom:22px;}.bonus-showcase-btn{width:100%;height:54px;border:none;border-radius:14px;cursor:pointer;font-size:15px;font-weight:800;box-shadow:0 14px 28px rgba(0,0,0,.22);}
.botao-esporte{height:58px !important;width:280px !important;border-radius:0 18px 18px 0 !important;box-shadow:0 18px 30px rgba(200,16,46,.24);}.botao-esporte-btn{font-size:14px !important;font-weight:800 !important;letter-spacing:.4px;}
.slider-wrapper{max-width:1200px !important;padding:0 20px;margin:12px auto 16px !important;}.slider-container,.slide{height:360px !important;border-radius:26px;overflow:hidden;border:1px solid rgba(255,255,255,.07);box-shadow:0 20px 40px rgba(0,0,0,.25);background:#0f1621;}.slide img{border-radius:26px !important;}
.dot{background:rgba(255,255,255,.22)!important;}.dot.active{background:#ff335a !important;}
.ganhos-container{max-width:1200px;margin:28px auto 0 !important;height:96px !important;background:rgba(255,255,255,.02);border-top:1px solid rgba(255,255,255,.05);border-bottom:1px solid rgba(255,255,255,.05);}.ganhos-fixo{flex:0 0 185px !important;background:linear-gradient(135deg,rgba(255,255,255,.04),rgba(255,255,255,.01)) !important;border-right:1px solid rgba(255,255,255,.06);}.card{background:rgba(21,28,40,.92)!important;border:1px solid rgba(255,255,255,.07);border-radius:14px!important;box-shadow:0 10px 24px rgba(0,0,0,.18);}
.busca-container,.lista-jogos,.aovivo-resultados,.footer .container-footer,.footer-text,.footer-bottom,.footer-line{max-width:1200px !important;}.busca-container{padding:0 20px;margin-top:24px !important;}.busca-input{height:58px !important;border-radius:18px !important;background:rgba(21,28,40,.9)!important;border:1px solid rgba(255,255,255,.08)!important;box-shadow:0 10px 30px rgba(0,0,0,.25);}.busca-input-icon i{left:18px!important;color:#ff5a78!important;}
.busca-tabela-resultado{background:rgba(18,25,36,.96)!important;border-radius:16px!important;border:1px solid rgba(255,255,255,.07)!important;box-shadow:0 10px 30px rgba(0,0,0,.24);}
.lista-jogos,.aovivo-resultados{padding:0 20px !important;}.titulo-lista-jogos,.aovivo-titulo{font-size:15px!important;font-weight:800!important;letter-spacing:.4px;margin:28px 0 14px!important;}.lista-jogos .jogos-container{gap:16px!important;max-width:none!important;}.lista-jogos .jogo-card{background:linear-gradient(180deg, rgba(24,32,46,.95) 0%, rgba(16,22,31,.95) 100%) !important;height:260px !important;border-radius:18px !important;border:1px solid rgba(255,255,255,.06);box-shadow:0 10px 25px rgba(0,0,0,.18);transition:transform .22s ease,box-shadow .22s ease;}.lista-jogos .jogo-card:hover{transform:translateY(-6px) !important;box-shadow:0 20px 35px rgba(0,0,0,.28)!important;}.lista-jogos .jogo-card:after{content:'';position:absolute;inset:auto 0 0 0;height:45%;background:linear-gradient(to top, rgba(7,10,15,.94), transparent);z-index:1;pointer-events:none;}.lista-jogos .jogo-img{border-radius:18px!important;background:transparent!important;}.lista-jogos .jogo-overlay{background:rgba(5,9,14,.68)!important;}.lista-jogos .jogo-info{z-index:2 !important;bottom:10px!important;padding:0 8px;}.lista-jogos .jogo-info .jogadores{background:rgba(255,255,255,.04);padding:5px 10px;border-radius:999px;}
.modal{background:linear-gradient(180deg,#18202c 0%,#111823 100%)!important;border:1px solid rgba(255,255,255,.08);border-radius:22px!important;box-shadow:0 22px 50px rgba(0,0,0,.35);}.modal-content h2{color:#fff!important;font-weight:800;}.close-modal,.close-sidebar{color:#ff5a78!important;}.input-icon input,.input-icon textarea{background:rgba(9,13,19,.7)!important;border:1px solid rgba(255,255,255,.08)!important;border-radius:14px!important;padding-left:42px!important;height:50px!important;}.input-icon i{color:#ff5a78!important;} .termos a,.recover-password a,.log-in a,.create-account a{color:#ff5a78!important;}
.footer{padding:50px 0 20px !important;}.footer-column h4{color:#fff!important;font-weight:800;}.social-icons a{width:42px;height:42px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);}
@media (max-width:980px){.home-hero-container{grid-template-columns:1fr;}.home-hero-left h1{font-size:40px;}}
@media (max-width:768px){.container{padding:12px 14px !important;}.logo img{width:108px!important;}.button{padding:11px 14px!important;font-size:13px!important;min-width:auto!important;}.home-hero{padding:24px 14px 14px;}.home-hero-left h1{font-size:30px;}.home-hero-left p{font-size:15px;}.home-hero-actions{flex-direction:column;}.home-btn{width:100%;min-width:100%;}.home-hero-stats{flex-direction:column;}.bonus-showcase-value{font-size:34px;}.slider-wrapper,.busca-container{padding:0 14px;}.slider-container,.slide{height:210px !important;border-radius:18px;}.lista-jogos,.aovivo-resultados{padding:0 0 0 12px !important;}.lista-jogos .jogo-card{min-width:140px !important;height:205px !important;border-radius:16px!important;}.botao-esporte{width:78% !important;height:50px !important;position:fixed;z-index:998;border-radius:0 18px 18px 0 !important;}}


/* ==== CHAMPIONSBET RED THEME OVERRIDE ==== */
:root{--cb-bg:#070b12;--cb-bg2:#111722;--cb-card:#151d29;--cb-border:rgba(255,255,255,.08);--cb-text:#f4f7fb;--cb-muted:#a8b3c2;--cb-red:#c8102e;--cb-red2:#ff335a;}
body{background:var(--cb-bg)!important;color:var(--cb-text)!important;font-family:Inter,Arial,sans-serif!important;}
.top-bar{background:#07090d!important;border-bottom:1px solid rgba(255,255,255,.06)!important;box-shadow:none!important;position:sticky;top:0;z-index:60;}
.button,.submit-button,.btn-login,.btn-cadastro,.hero-action-btn,.btn-ver-mais,.jogar-btn,.btn-jogar{background:linear-gradient(135deg,var(--cb-red),var(--cb-red2))!important;color:#fff!important;border:none!important;}
.button:hover,.submit-button:hover,.hero-action-btn:hover,.btn-ver-mais:hover,.jogar-btn:hover,.btn-jogar:hover{filter:brightness(1.06)!important;transform:translateY(-1px);} 
.sidebar,.sidebartermo,.modal,.content-box,.card,.busca-tabela-resultado,.lista-jogos .jogo-card,.ganhos-item,.ganhos-card{background:linear-gradient(180deg,#121925 0%,#0d131d 100%)!important;border-color:var(--cb-border)!important;color:var(--cb-text)!important;}
.input-icon input,.input-icon textarea,.input-icon select,.busca-input{background:#0f1621!important;border:1px solid rgba(255,255,255,.08)!important;color:#fff!important;}
.input-icon i,.close-modal,.close-sidebar,.close-sidebartermo,.online-dot,.online-dot-red,.dot.active,.menu-icon,.sidebar a:hover i{color:var(--cb-red2)!important;}
.titulo-lista-jogos,.aovivo-titulo,h1,h2,h3,h4,.saldo,.bonus-valor,.saldo-titulo,.bonus-titulo{color:#fff!important;}
footer,.footer{background:#07090d!important;border-top:1px solid rgba(255,255,255,.06)!important;}


/* ==== HOME ZERO STYLE ==== */
.home-hero{display:none!important;}
@media (min-width: 992px){
  .top-bar .container,.slider-wrapper,.busca-container,.lista-jogos,.footer,.bonus-cadastro{margin-left:270px!important;width:calc(100% - 290px)!important;max-width:none!important;}
  .home-sidebar-nav{position:fixed;left:18px;top:86px;width:230px;height:calc(100vh - 104px);z-index:40;overflow:auto;}
}
.slider-wrapper{margin-top:18px!important;padding:0 20px!important;box-sizing:border-box;}
.slider-container{
  height:360px!important;
  border-radius:18px!important;
  border:1px solid rgba(255,255,255,.06)!important;
  overflow:hidden!important;
}
.slide{
  height:360px!important;
}
.slide img{
  width:100%!important;
  height:100%!important;
  object-fit:contain!important;
  object-position:center center!important;
  background:#0f1621!important;
}
.busca-container,.lista-jogos{padding:0 20px!important;box-sizing:border-box;}
.lista-jogos .jogos-container{display:grid!important;grid-template-columns:repeat(auto-fill,minmax(170px,1fr))!important;gap:18px!important;overflow:visible!important;}
.lista-jogos .jogo-card{width:100%!important;min-width:0!important;height:265px!important;}
@media (max-width: 991px){
  .slider-wrapper,.busca-container,.lista-jogos,.footer,.bonus-cadastro{margin-left:auto!important;width:100%!important;}
  .lista-jogos .jogos-container{display:flex!important;overflow:auto!important;}
  .lista-jogos .jogo-card{min-width:150px!important;width:150px!important;height:220px!important;}
}
@media (max-width: 768px){
  .slider-container{
    height:210px!important;
    border-radius:18px!important;
  }
  .slide{
    height:210px!important;
  }
  .slide img{
    object-fit:contain!important;
    object-position:center center!important;
  }
}


.back-float-btn{position:fixed;left:14px;bottom:18px;z-index:99999;width:42px;height:42px;border:0;border-radius:12px;background:linear-gradient(180deg,#1a2233,#101726);color:#fff;box-shadow:0 10px 24px rgba(0,0,0,.35);display:inline-flex;align-items:center;justify-content:center;cursor:pointer;transition:.2s ease;}
.back-float-btn:hover{transform:translateY(-1px);}
.back-float-btn i{font-size:16px;}
@media (min-width: 992px){.back-float-btn{left:18px;bottom:22px;}}