* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    color: white;
    min-height: 100vh;
    padding: 20px;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Telas */
#telaInicial {
    display: block;
}

#telaJogo {
    display: none;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    margin-bottom: 20px;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-login {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-cadastrar {
    background: #fdbb2d;
    color: #000;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* Área Inicial Compactada */
.area-inicial-compacta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.info-principal {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
}

.controles-rapidos {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Cronômetro */
.cronometro-section {
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
}

.cronometro-titulo {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fdbb2d;
}

.cronometro {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff3333;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Data e Hora */
.data-hora-inicial {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 15px 0;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 0.9rem;
}

.info-data-hora {
    text-align: center;
    padding: 8px;
}

.info-titulo {
    font-size: 0.9rem;
    font-weight: bold;
    color: #fdbb2d;
    margin-bottom: 3px;
}

.info-valor {
    font-size: 1rem;
    font-weight: bold;
    color: white;
}

/* Banner de Promoções */
.banner-promocional {
    background: linear-gradient(45deg, #ff6b6b, #ffa726, #66bb6a);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 3px solid gold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.banner-titulo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-descricao {
    font-size: 1rem;
    margin-bottom: 15px;
}

.promo-cartelas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.promo-item {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 10px;
    border-radius: 8px;
    font-weight: bold;
}

.promo-destaque {
    background: #ffeb3b;
    color: #d32f2f;
    font-size: 1.1rem;
}

/* Botões de Prêmios */
.premios-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.btn-premio {
    padding: 12px 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-premio.quadra {
    border-color: #00ff00;
    color: #00ff00;
}

.btn-premio.quina {
    border-color: #0000ff;
    color: #ffdd00;
}

.btn-premio.keno {
    border-color: #fdbb2d;
    color: #fdbb2d;
}

.btn-premio:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* Tabela de Preços */
.precos-section {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.precos-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    border-bottom: 2px solid #fdbb2d;
    padding-bottom: 10px;
}

.tabela-precos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.item-preco {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.item-preco.selecionado {
    border-color: #fdbb2d;
    background: rgba(253, 187, 45, 0.2);
    transform: scale(1.03);
}

.item-preco:hover {
    transform: translateY(-3px);
}

.quantidade {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.valor {
    font-size: 1.3rem;
    font-weight: bold;
    color: #fdbb2d;
}

.resumo-compra {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
}

.resumo-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 1rem;
}

.btn-comprar {
    width: 100%;
    padding: 12px;
    background: #00cc00;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    margin-top: 8px;
}

/* Histórico */
.historico-section {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    padding: 20px;
    margin-top: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.historico-categoria {
    margin-bottom: 20px;
}

.historico-categoria h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #fdbb2d;
    border-bottom: 1px solid #fdbb2d;
    padding-bottom: 6px;
}

.historico-lista {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.historico-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 10px;
    font-size: 0.85rem;
}

.historico-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
    font-weight: bold;
}

.historico-cartela {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 6px;
}

.historico-numero {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Tela do Jogo */
.game-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.sorteio-section {
    flex: 1;
    min-width: 300px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.participantes-section {
    flex: 1;
    min-width: 450px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.sorteio-id {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fdbb2d;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h2 {
    border-bottom: 2px solid #fdbb2d;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.bola-sorteio {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at 30% 30%, #ff3333, #b30000);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.7);
    border: 5px solid white;
    transition: all 0.5s ease;
}

.bola-sorteio.animacao {
    animation: aparecer 0.5s ease-out;
}

@keyframes aparecer {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    70% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.numero-sorteado {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
    min-height: 30px;
}

.status-sorteio {
    text-align: center;
    margin-top: 15px;
    font-size: 1.1rem;
    color: #fdbb2d;
    font-weight: bold;
}

/* Números Sorteados */
.historico {
    margin-top: 30px;
}

.historico h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.numeros-sorteados {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    max-height: none;
    overflow-y: visible;
    min-height: 80px;
}

.numero-historico {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.numero-historico.ultimo {
    background: rgba(255, 215, 0, 0.5);
    border: 2px solid gold;
}

.ganhadores {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    max-height: 200px;
    overflow-y: auto;
}

.tabela-participantes {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.tabela-participantes th {
    background-color: rgba(253, 187, 45, 0.8);
    color: #000;
    padding: 12px 15px;
    text-align: left;
}

.tabela-participantes td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tabela-participantes tr:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.posicao {
    width: 60px;
    text-align: center;
    font-weight: bold;
}

.primeiro {
    background-color: rgba(255, 215, 0, 0.3);
}

.segundo {
    background-color: rgba(192, 192, 192, 0.3);
}

.terceiro {
    background-color: rgba(205, 127, 50, 0.3);
}

.pontuacao {
    width: 100px;
    text-align: center;
    font-weight: bold;
}

.cartela-id {
    width: 100px;
    text-align: center;
    font-weight: bold;
    color: #fdbb2d;
}

.info-data-hora-bolas {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
    padding: 15px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    border: 2px solid gold;
    gap: 10px;
}

.info-coluna {
    flex: 1;
    text-align: center;
    padding: 10px;
}

.info-descricao {
    font-size: 0.9rem;
    color: #ffcc00;
}

.premios-jogo {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.btn-premio-jogo {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.btn-premio-jogo.kuadra {
    border-color: #00ff00;
    color: #00ff00;
}

.btn-premio-jogo.kina {
    border-color: #f5f533;
    color: #f5f533;
}

.btn-premio-jogo.keno {
    border-color: #fdbb2d;
    color: #fdbb2d;
}

.btn-premio-jogo:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-acumulado {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    line-height: 1.2;
}

.btn-acumulado:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

/* Popups */
.popup-ganhador {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.8);
    z-index: 1000;
    text-align: center;
    min-width: 400px;
    opacity: 0;
    transition: all 0.5s ease;
    border: 5px solid gold;
}

.popup-ganhador.mostrar {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.popup-titulo {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.popup-nome {
    font-size: 2rem;
    margin: 15px 0;
    color: #fdbb2d;
}

.popup-cartela {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.numero-cartela {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-weight: bold;
}

.numero-cartela.sorteado {
    background: #00ff00;
    color: #000;
}

.contador-popup {
    margin-top: 15px;
    font-size: 1.1rem;
    color: #fdbb2d;
}

.popup-todos-ganhadores {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.8);
    z-index: 1000;
    text-align: center;
    min-width: 600px;
    max-width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    opacity: 0;
    transition: all 0.5s ease;
    border: 5px solid gold;
}

.popup-todos-ganhadores.mostrar {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.lista-ganhadores {
    margin: 20px 0;
    max-height: 400px;
    overflow-y: auto;
}

.ganhador-categoria {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.categoria-titulo {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fdbb2d;
    font-weight: bold;
}

.ganhador-item {
    padding: 10px;
    margin: 5px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

/* Modais */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.mostrar {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    border-radius: 15px;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-50px);
    transition: all 0.3s ease;
}

.modal.mostrar .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #fdbb2d;
    padding-bottom: 15px;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: bold;
}

.btn-fechar {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #fdbb2d;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #ffcc44;
}

/* Confetes */
#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
}

.piscando {
    animation: piscar 1s infinite;
}

@keyframes piscar {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

/* Cartelas */
.cartelas-container {
    margin-top: 20px;
}

.cartela-em-jogo {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.cartela-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: bold;
}

.cartela-numeros {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.cartela-numero {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.9rem;
}

.cartela-numero.sorteado {
    background: #00ff00;
    color: #000;
}

.cartelas-em-jogo-container {
    margin-top: 20px;
}

.cartela-jogador {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cartela-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: bold;
    color: #fdbb2d;
}

.cartela-numeros {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}

.numero-cartela-jogo {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.numero-cartela-jogo.sorteado {
    background: #00ff00;
    color: #000;
    transform: scale(1.1);
}

/* ========== SISTEMA DE NOTIFICAÇÕES ========== */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
}

.notification {
    background: linear-gradient(135deg, #00b09b, #96c93d);
    color: white;
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #fff;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification.hide {
    transform: translateX(400px);
    opacity: 0;
}

.notification.success {
    background: linear-gradient(135deg, #00b09b, #96c93d);
}

.notification.error {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
}

.notification.warning {
    background: linear-gradient(135deg, #f7971e, #ffd200);
}

.notification.info {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.notification-icon {
    font-size: 2rem;
    margin-right: 15px;
    float: left;
}

.notification-content {
    overflow: hidden;
}

.notification-title {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.notification-message {
    font-size: 0.95rem;
    line-height: 1.4;
}

.notification-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: rgba(255,255,255,0.3);
    border: none;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.notification-close:hover {
    background: rgba(255,255,255,0.5);
    transform: scale(1.1);
}

.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(255,255,255,0.5);
    width: 100%;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 5s linear;
}

.notification-progress.running {
    transform: scaleX(0);
}

/* Responsividade */
@media (min-width: 1920px) {
    body {
        font-size: 1.2rem;
    }
    
    .container {
        max-width: 1800px;
    }
    
    .logo {
        font-size: 3.5rem;
    }
    
    .btn {
        padding: 18px 35px;
        font-size: 1.3rem;
    }
    
    .cronometro {
        font-size: 4rem;
    }
    
    .bola-sorteio {
        width: 300px;
        height: 300px;
        font-size: 7rem;
    }
    
    .numero-cartela, .cartela-numero {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .popup-ganhador {
        min-width: 600px;
        padding: 40px;
    }
    
    .popup-titulo {
        font-size: 3.5rem;
    }
    
    .popup-nome {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .area-inicial-compacta {
        grid-template-columns: 1fr;
    }
    
    .header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .data-hora-inicial {
        flex-direction: column;
        gap: 10px;
    }
    
    .info-data-hora-bolas {
        flex-direction: column;
        gap: 15px;
    }
    
    .info-coluna {
        width: 100%;
    }
    
    .tabela-precos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .premios-section {
        grid-template-columns: 1fr;
    }
    
    .btn-premio {
        width: 100%;
    }
    
    .game-container {
        flex-direction: column;
    }
    
    .bola-sorteio {
        width: 150px;
        height: 150px;
        font-size: 4rem;
    }
    
    .popup-ganhador {
        min-width: 90%;
        padding: 20px;
    }
    
    .popup-todos-ganhadores {
        min-width: 90%;
        padding: 20px;
    }
    
    .popup-titulo {
        font-size: 2rem;
    }
    
    .popup-nome {
        font-size: 1.5rem;
    }
    
    .premios-jogo {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-premio-jogo {
        width: 100%;
        max-width: 250px;
    }
    
    .promo-cartelas {
        grid-template-columns: 1fr;
    }
}
/* === ESTILOS PARA MENU HAMBURGUER === */
.user-info {
    display: flex;
    align-items: center;
    color: white;
}

.user-welcome {
    margin-right: 10px;
    font-weight: bold;
}

.menu-hamburguer {
    position: relative;
    display: inline-block;
}

.menu-icon {
    font-size: 24px;
    cursor: pointer;
    padding: 8px 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    color: white;
    transition: background 0.3s;
}

.menu-icon:hover {
    background: rgba(255,255,255,0.2);
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: white;
    min-width: 180px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    border-radius: 5px;
    overflow: hidden;
    z-index: 1000;
}

.dropdown-menu a {
    display: block;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    transition: background 0.3s;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
}

.dropdown-menu a:last-child {
    border-bottom: none;
    color: #e74c3c;
}

.menu-hamburguer:hover .dropdown-menu {
    display: block;
}
/* Modal do Admin */
.modal-admin {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

/* Conteúdo */
.modal-admin-content {
    background-color:#bda437;
    margin: 8% auto;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: modalFade 0.3s ease;
}
