/* ======================================================
   STYLE-CASA.CSS - Modo Offline / TV (Corrigido)
   ====================================================== */

/* --- CARTELA NO EDITOR (Lobby) --- */
.cartela-editor {
    width: 200px; /* Reduzi um pouco para caber mais */
    margin: 10px;
    border: 3px solid #bdc3c7; 
    border-radius: 12px;
    overflow: hidden; 
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s; 
    cursor: pointer; 
    position: relative;
    display: flex; flex-direction: column;
}

.cartela-editor:hover { transform: scale(1.05); border-color: var(--primary); z-index: 5; }
.cartela-editor.selecionada-ativa { border-color: #2ecc71; box-shadow: 0 0 15px rgba(46, 204, 113, 0.4); }

.topo-editor { 
    background: #ecf0f1; 
    color: #7f8c8d; 
    padding: 8px; 
    font-weight: bold; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    font-size: 0.9rem;
}
.selecionada-ativa .topo-editor { background: #2ecc71; color: white; }

.mini-grid { 
    display: grid; 
    grid-template-columns: repeat(5, 1fr); 
    gap: 1px; 
    background: #ccc; 
    border-top: 1px solid #ccc; 
}
.mini-grid div { 
    background: white; 
    aspect-ratio: 1; /* Quadrado perfeito */
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; 
    font-weight: bold; 
    color: #333; 
}

/* --- CARTELA EM JOGO (AQUI ESTAVA O ERRO: FALTAVAM ESSAS CLASSES) --- */
.cartela-live {
    width: 220px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border: 3px solid #34495e;
    transition: all 0.3s;
    position: relative;
}

.cartela-live.por-uma-anim {
    border-color: #e67e22;
    animation: tremer 0.5s infinite;
}
.cartela-live.vencedora-cheia {
    border-color: #f1c40f;
    transform: scale(1.1);
    z-index: 100;
    box-shadow: 0 0 30px rgba(241, 196, 15, 0.6);
}

.nome-live {
    background: #34495e;
    color: white;
    padding: 5px;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.vencedora-cheia .nome-live { background: #f1c40f; color: #333; }

.mini-grid-live {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: #2c3e50;
    padding: 2px;
}

.mini-grid-live div {
    background: white;
    aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
}

.mini-grid-live div.marcado {
    background: #e74c3c;
    color: white;
}
.mini-grid-live div.sorteado-anim {
    animation: piscar 1s;
}

@keyframes tremer { 0% { transform: rotate(0deg); } 25% { transform: rotate(2deg); } 75% { transform: rotate(-2deg); } 100% { transform: rotate(0deg); } }
@keyframes piscar { 0% { transform: scale(1.5); } 100% { transform: scale(1); } }

/* Bola Destaque (Sorteio) */
.bola-destaque {
    width: 140px; height: 140px;
    background: radial-gradient(circle at 30% 30%, #fff, #ecf0f1);
    border-radius: 50%; border: 6px solid #2c3e50;
    display: flex; align-items: center; justify-content: center;
    font-size: 4.5rem; font-weight: 800; color: #2c3e50;
    box-shadow: inset 0 -10px 20px rgba(0,0,0,0.1), 0 10px 20px rgba(0,0,0,0.3);
    margin: 0 auto 20px auto;
}