
/* =========================
   WHEEL STYLE SLOT
========================= */
#phrase-grid {
	margin: 15px auto 8px auto;
}

#wheel {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    line-height: 100px;
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    color: #0ff;
    background: #2C2C2C;
    border-radius: 50%;
    box-shadow: 0 0 20px #0ff;
    transition: transform 0.2s;
    user-select: none;
}

/* Optionnel: effet de rotation */
#wheel.spin {
    animation: spinEffect 2s ease-out forwards;
}

@keyframes spinEffect {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(1080deg); }
}

/* =========================
   PHRASE INPUTS
========================= */
.letter-input {
    width: 30px;
    height: 40px;
    text-align: center;
    font-size: 1.5rem;
    margin: 2px;
    text-transform: uppercase;
    background: #2C2C2C;
    box-shadow: 0 0 10px #0ff;
    color: white;	
}

/* =========================
   MESSAGES
========================= */
#game-message {
    margin: 20px;
    text-align: center;
    font-weight: bold;
    color: #1E90FF;
}

/* =========================
   CONSONNE GRID
========================= */
#consonne-grid, #voyelle-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
}

#consonne-grid button, #voyelle-grid button {
    width: 40px;
    height: 40px;
    font-weight: bold;
    border-radius: 8px;
    background: none;
}

/* =========================
   NOUVELLE PHRASE
========================= */
#new-game-btn {
    display: none;
    margin-top: 10px;
}

.cluedo-result-ok, .cluedo-result-no {
    margin:10px 0;
    padding:10px;
    border-radius:10px;
    display:none;
}
.cluedo-result-ok { border: dashed lightgreen; color: white; max-width: 600px; margin: 10px auto 0 auto; }
.cluedo-result-no { border: dashed lightcoral; color: white; max-width: 600px; margin: 10px auto 0 auto; }