* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --verde-megasena: #079d46;
    --verde-escuro: #056d32;
    --bege-claro: #f5f1e8;
    --bege-medio: #e8dcc4;
    --marrom: #8b5a3c;
    --preto: #242424;
    --dourado: #e49454;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

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

/* Badges (cores inspiradas no Tailwind/TailAdmin) */
.tw-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.32rem 0.75rem;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1;
    border: 1px solid transparent;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.tw-badge--success {
    background: rgba(34, 197, 94, 0.12);
    color: #166534;
    border-color: rgba(34, 197, 94, 0.25);
}

.tw-badge--pending {
    background: rgba(234, 179, 8, 0.14);
    color: #854d0e;
    border-color: rgba(234, 179, 8, 0.30);
}

.tw-badge--danger {
    background: rgba(239, 68, 68, 0.12);
    color: #7f1d1d;
    border-color: rgba(239, 68, 68, 0.25);
}

.tw-badge--neutral {
    background: rgba(148, 163, 184, 0.22);
    color: #334155;
    border-color: rgba(148, 163, 184, 0.35);
}

/* Dezenas (pílulas simples para carrinho/checkout) */
.dezena-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 30px;
    padding: 0 0.55rem;
    border-radius: 999px;
    border: 2px solid rgba(7, 157, 70, 0.35);
    color: var(--verde-escuro);
    background: rgba(255, 255, 255, 0.85);
    font-weight: 800;
    font-size: 0.85rem;
}

/* Carrinho fixo (reutilizável em páginas públicas) */
.carrinho-fixo {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 18px;
    width: min(980px, calc(100% - 24px));
    background: linear-gradient(135deg, rgba(7, 157, 70, 0.96) 0%, rgba(5, 109, 50, 0.96) 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 14px;
    padding: 0.9rem 1rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    z-index: 9999;
}

.carrinho-fixo__titulo {
    font-weight: 900;
    letter-spacing: 0.2px;
}

.carrinho-fixo__sub {
    opacity: 0.95;
    font-size: 0.92rem;
}

.carrinho-fixo__cta {
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.22);
    padding: 0.6rem 0.9rem;
    border-radius: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.carrinho-fixo:hover {
    filter: brightness(1.02);
}

@media (max-width: 520px) {
    .carrinho-fixo {
        padding: 0.8rem 0.9rem;
        bottom: 12px;
    }

    .carrinho-fixo__cta {
        padding: 0.55rem 0.75rem;
    }
}

/* Lista de apostas no carrinho */
.cart-bets {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.cart-bet {
    background: rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    padding: 0.9rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.cart-bet__title {
    font-weight: 900;
    color: #1f2937;
}

.cart-bet__sub {
    color: #6b7280;
    font-weight: 600;
}

.cart-bet__nums {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.cart-bet__actions {
    display: flex;
    justify-content: flex-end;
}

/* CTA fixo de checkout no carrinho (footer fixo no bottom) */
.checkout-fixo {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: linear-gradient(135deg, var(--verde-megasena) 0%, var(--verde-escuro) 100%);
    border-top: none;
    padding: 0.8rem 1rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.checkout-fixo__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-fixo__btn {
    padding: 1rem 2.5rem;
    font-weight: 900;
    font-size: 1.1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    min-width: 280px;
    background: var(--dourado) !important;
    border: none;
    color: #fff !important;
}

.checkout-fixo__btn:hover {
    background: var(--dourado) !important;
    filter: brightness(1.1);
    color: #fff !important;
}

@media (max-width: 768px) {
    .checkout-fixo {
        padding: 0.6rem 0.625rem;
    }

    .checkout-fixo__btn {
        width: calc(100% - 1.25rem);
        min-width: auto;
        padding: 1rem;
    }
}

/* Badge no carrinho: mesmo comportamento de minhas-apostas */
.carrinho-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.carrinho-header__left {
    flex: 1;
}

.carrinho-header__right {
    display: flex;
    align-items: center;
}

.carrinho-total-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.carrinho-pay-badge-mobile {
    display: none;
}

@media (max-width: 768px) {
    .carrinho-pay-badge-desktop {
        display: none !important;
    }

    .carrinho-pay-badge-mobile {
        display: inline-flex !important;
    }

    .carrinho-total-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Ícones (sprite SVG local) */
.ico {
    width: 1.05em;
    height: 1.05em;
    display: inline-block;
    vertical-align: -0.15em;
    fill: currentColor;
    flex: 0 0 auto;
}

.ico--sm {
    width: 1em;
    height: 1em;
}

/* Bootstrap: garantir texto branco no btn-info (o padrão pode ficar escuro) */
.btn-info,
.btn-info:hover,
.btn-info:focus {
    color: #fff !important;
}

/* Botão fixo de pagamento: verde com "sheen" branco (degradê) */
.checkout-fixo__btn.btn-success {
    border: none;
    background-image:
        linear-gradient(135deg, rgba(255,255,255,0.26) 0%, rgba(255,255,255,0.10) 38%, rgba(255,255,255,0.00) 70%),
        linear-gradient(135deg, var(--verde-megasena) 0%, var(--verde-escuro) 100%);
}

.checkout-fixo__btn.btn-success:hover {
    filter: brightness(1.03);
}

/* CTA fixo (padrão do index): aparece ao rolar */
.jogar-agora-fixed {
    position: fixed;
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 180ms ease, transform 180ms ease;
}

body.show-jogar-agora .jogar-agora-fixed {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.jogar-agora-desktop {
    right: 24px;
    bottom: 24px;
    padding: 0.9rem 1.2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
}

.jogar-agora-mobile {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: calc(1.05rem + env(safe-area-inset-bottom)) 1rem 1.05rem;
    background: #fff;
    border: 2px solid var(--verde-megasena);
    border-left: 0;
    border-right: 0;
    color: var(--verde-megasena);
    font-weight: 900;
    text-decoration: none;
}

@media (max-width: 768px) {
    .jogar-agora-desktop {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .jogar-agora-mobile {
        display: none !important;
    }
}

/* Header */
.main-header {
    background: linear-gradient(135deg, rgba(7, 157, 70, 0.85) 0%, rgba(5, 109, 50, 0.85) 100%);
    color: white;
    padding: 0.6rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

/* Remover "espaço extra" do container dentro do header */
.main-header .container {
    padding-top: 0;
    padding-bottom: 0;
}

.header-user {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.95);
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    white-space: nowrap;
}

.header-user i {
    font-size: 1.1rem;
}

.header-user-name {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Admin sidebar (desktop) */
.admin-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 240px;
    padding-top: 86px; /* espaço para o header */
    z-index: 900;
    background: rgba(255,255,255,0.92);
    border-right: 1px solid rgba(0,0,0,0.06);
    backdrop-filter: blur(10px);
}

.admin-sidebar-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0.75rem;
}

.admin-sidebar-title {
    font-weight: 800;
    color: var(--verde-escuro);
    margin: 0 0 0.75rem 0.25rem;
    letter-spacing: 0.2px;
}

.admin-sidebar-nav {
    gap: 0.25rem;
}

.admin-sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
    color: #1f2937;
    text-decoration: none;
    font-weight: 600;
}

.admin-sidebar-link i {
    font-size: 1.1rem;
    color: var(--verde-escuro);
}

.admin-sidebar-link:hover {
    background: rgba(7, 157, 70, 0.08);
}

.admin-sidebar-link.active {
    background: rgba(7, 157, 70, 0.14);
    border: 1px solid rgba(7, 157, 70, 0.18);
}

.admin-sidebar-link span {
    font-size: 0.95rem;
}

.admin-sidebar-sep {
    height: 1px;
    background: rgba(0,0,0,0.07);
    margin: 0.75rem 0.25rem;
}

@media (min-width: 768px) {
    body.admin-layout .main-content {
        padding-left: 240px;
    }

    body.admin-layout .container {
        max-width: 1200px;
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.main-nav {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 500;
    background: rgba(255,255,255,0.1);
}

.nav-item:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.nav-icon {
    font-size: 1.2rem;
}

.nav-text {
    font-size: 0.95rem;
}

.nav-item-highlight {
    background: var(--dourado) !important;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(228, 148, 84, 0.4);
}

.nav-item-highlight:hover {
    background: #d68940 !important;
    transform: translateY(-2px) scale(1.05);
}

.nav-item-cadastro {
    background: var(--dourado) !important;
    font-weight: 700;
}

.nav-item-logout {
    background: rgba(220, 53, 69, 0.8) !important;
}

.nav-item-logout:hover {
    background: rgba(220, 53, 69, 1) !important;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
    z-index: 10000;
    padding: 0.5rem 0;
    border-top: 2px solid var(--verde-megasena);
}

/* Menu inferior desativado (usar offcanvas) */
.mobile-bottom-nav {
    display: none !important;
}

/* Mobile Drawer Menu (home deslogado) */
.mobile-menu-toggle {
    display: none;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255,255,255,0.25);
    transform: scale(1.05);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.mobile-menu-icon {
    font-size: 1.6rem;
    line-height: 1;
    font-weight: bold;
}

/* Bootstrap Offcanvas customization */
.offcanvas.offcanvas-start {
    max-width: 85vw;
    width: 300px;
}

.list-group-item {
    font-size: 1.1rem;
    font-weight: 600;
    border-left: 0;
    border-right: 0;
    transition: all 0.2s ease;
}

.list-group-item:hover {
    background: rgba(7, 157, 70, 0.08);
    padding-left: 1.5rem !important;
}

.list-group-item:active {
    background: rgba(7, 157, 70, 0.15);
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 0.5rem;
    text-decoration: none;
    color: #6c757d;
    transition: all 0.3s;
    position: relative;
}

.mobile-nav-item.active {
    color: var(--verde-megasena);
}

.mobile-nav-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 3px;
    background: var(--verde-megasena);
    border-radius: 0 0 3px 3px;
}

.mobile-nav-icon {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.mobile-nav-text {
    font-size: 0.7rem;
    font-weight: 600;
}

.mobile-nav-item-center {
    position: relative;
}

.mobile-nav-item-center .mobile-nav-icon-large {
    font-size: 2rem;
    background: var(--verde-megasena);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 12px rgba(7, 157, 70, 0.4);
    border: 4px solid white;
}

.mobile-nav-item-center .mobile-nav-text {
    margin-top: 32px;
}

.mobile-nav-item-center.active .mobile-nav-icon-large {
    background: var(--dourado);
    box-shadow: 0 4px 12px rgba(228, 148, 84, 0.6);
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

/* Responsivo */
@media (max-width: 768px) {
    /* Esconder menu desktop no mobile */
    .main-nav {
        display: none;
    }
    
    /* Mostrar hamburger (offcanvas) no mobile */
    .mobile-menu-toggle {
        display: inline-flex;
    }
    
    /* Ajustar logo no mobile */
    .logo-img {
        height: 50px;
    }
    
    /* Sem padding extra de bottom-nav */
    body {
        padding-bottom: 0;
    }
    
    .main-content {
        padding-bottom: 1.25rem;
    }
    
    /* Ajustar container no mobile */
    .container {
        padding: 15px;
    }
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--verde-megasena);
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    font-weight: bold;
}

.btn-primary {
    background: var(--verde-megasena);
    color: white;
}

.btn-primary:hover {
    background: var(--verde-escuro);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(7, 157, 70, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--verde-megasena);
    border: 2px solid var(--verde-megasena);
}

.btn-secondary:hover {
    background: var(--verde-megasena);
    color: white;
}

/* Último Sorteio */
.ultimo-sorteio {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.ultimo-sorteio h2 {
    text-align: center;
    color: var(--verde-megasena);
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.data-sorteio {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

/* Bilhete da Mega-Sena */
.bilhete-container {
    background: var(--bege-claro);
    border: 3px solid var(--verde-megasena);
    border-radius: 10px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.bilhete-header {
    background: var(--verde-megasena);
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    text-align: center;
}

.logo-megasena {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.trevo {
    font-size: 3rem;
}

.nome-loteria {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    letter-spacing: 2px;
}

/* Grid de Números */
.numeros-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 8px;
    margin-bottom: 2rem;
}

.numero-item {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid var(--bege-medio);
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.numero-item:hover {
    transform: scale(1.1);
}

.numero-item.sorteado {
    background: var(--verde-megasena);
    color: white;
    border-color: var(--verde-escuro);
    animation: pulsar 0.5s ease-in-out;
}

@keyframes pulsar {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Bolas Sorteadas */
.numeros-sorteados {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background: white;
    border-radius: 10px;
}

.numeros-sorteados h3 {
    color: var(--verde-megasena);
    margin-bottom: 1rem;
}

.bolas-sorteadas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.bola {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--verde-megasena);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(7, 157, 70, 0.3);
}

/* Acumulado */
.acumulado-info {
    background: linear-gradient(135deg, var(--dourado) 0%, #d68940 100%);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin: 2rem 0;
}

.acumulado-label {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.acumulado-valor {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

/* Premiação */
.premiacao {
    margin-top: 2rem;
}

.premiacao h3 {
    color: var(--verde-megasena);
    margin-bottom: 1rem;
    text-align: center;
}

.premiacao-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 5px;
    overflow: hidden;
}

.premiacao-table tr {
    border-bottom: 1px solid var(--bege-medio);
}

.premiacao-table td {
    padding: 1rem;
    text-align: left;
}

.premiacao-table td:last-child {
    text-align: right;
    font-weight: bold;
    color: var(--verde-megasena);
}

/* Como Funciona */
.como-funciona {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.como-funciona h2 {
    text-align: center;
    color: var(--verde-megasena);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: var(--bege-claro);
    border-radius: 10px;
    transition: all 0.3s;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--verde-megasena);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    color: var(--verde-megasena);
    margin-bottom: 0.5rem;
}

/* Footer */
.main-footer {
    background: var(--preto);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

.main-footer p {
    margin: 0.5rem 0;
}

/* Formulários */
.form-container {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--verde-megasena);
}

.btn-submit {
    width: 100%;
    background: var(--verde-megasena);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--verde-escuro);
}

/* Mensagens */
.success-message,
.error-message,
.info-message {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    text-align: center;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.info-message {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Responsive */
@media (max-width: 768px) {
    .numeros-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 5px;
    }
    
    .numero-item {
        font-size: 0.9rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .bola {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .main-nav {
        flex-direction: column;
        gap: 0.5rem;
    }
}
