/* Paleta de culori: 
   Primary: #17a2b8 (Cyan)
   Secondary: #28a745 (Green)
   Background: #e0eafc (Light Blue)
*/

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #e0eafc; 
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.game-container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 95%; 
    max-width: 800px; /* Lățime maximă de 800px */
    /* max-height: 650px; (Eliminat pentru flexibilitate) */
    text-align: center;
    overflow: hidden; 
}

header h1 {
    color: #17a2b8;
    margin-bottom: 5px;
    font-size: 1.8em;
}

/* --- Zona de Info & Buton --- */
.game-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    margin-bottom: 15px;
    border-top: 2px solid #eee;
    padding-top: 15px;
    font-weight: bold;
}

.action-btn {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
    transition: background-color 0.3s;
}

.action-btn:hover {
    background-color: #218838;
}

/* --- GRILA DE JOC (9x9) --- */
.game-grid {
    display: grid;
    /* Grilă 9x9 */
    grid-template-columns: repeat(9, 1fr); 
    grid-template-rows: repeat(9, 1fr);
    gap: 4px; /* NOU: Spațiere ușor ajustată pentru scalare optimă */
    width: 100%;
    aspect-ratio: 1 / 1; 
    background-color: #ccc;
    border-radius: 5px;
    padding: 4px; 
}

.cell {
    /* Stil 3D tip Scrabble */
    background-color: #f7e6c4; 
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3em; 
    font-weight: 900;
    cursor: pointer;
    user-select: none;
    border-radius: 4px;
    border: 1px solid #c7b08c;
    box-shadow: 
        0 3px 0 0 #a08c6e, 
        0 1px 1px rgba(0, 0, 0, 0.1); 
    transition: background-color 0.15s, transform 0.05s, box-shadow 0.15s;
    line-height: 1; /* Ajută la centrarea textului */
}

.cell:hover {
    background-color: #fff;
    transform: translateY(-1px);
    box-shadow: 
        0 4px 0 0 #a08c6e, 
        0 2px 2px rgba(0, 0, 0, 0.2);
}

/* Stil pentru celulele selectate */
.selected {
    background-color: #17a2b8 !important; 
    color: white;
    transform: translateY(0);
    box-shadow: 0 1px 0 0 #0d6e81, 0 1px 1px rgba(0, 0, 0, 0.2); 
}

/* Stil pentru cuvintele lungi (Efect Vizual) */
@keyframes long-word-glow {
    0% { box-shadow: 0 0 8px #ffc107; }
    50% { box-shadow: 0 0 16px #ffc107, 0 0 4px #fff; }
    100% { box-shadow: 0 0 8px #ffc107; }
}

.long-word-effect {
    animation: long-word-glow 0.8s 3; 
}

/* Stil pentru celulele care urmează să dispară */
.clearing {
    background-color: #dc3545 !important;
    color: white;
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

/* --- Mesaje si Cuvinte Gasite --- */
.current-word-display {
    min-height: 35px;
    background-color: #f3f3f3;
    border-radius: 5px;
    padding: 8px 10px;
    font-size: 1.8em;
    color: #007bff;
    font-weight: 700;
    margin-bottom: 15px;
}
/* ... (restul CSS-ului) ... */