/* ═══════════════════════════════════════════════
   LUDO SPECIFIC STYLES
   ═══════════════════════════════════════════════ */

.ambient-glow.green {
    background: radial-gradient(circle, rgba(34,197,94,0.1) 0%, transparent 70%);
    top: -10vh; left: 20vw;
}

.ludo-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    z-index: 10;
}

#ludo-canvas {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 95vw;
    max-height: 60vh;
    cursor: pointer;
}

.dice-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    z-index: 10;
}

.dice {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    background: rgba(30, 41, 59, 0.7);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}

.dice:hover {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--cyan);
    box-shadow: 0 0 20px rgba(6,182,212,0.3);
}

.dice.rolling {
    animation: diceRoll 0.6s ease-out;
    pointer-events: none;
}

@keyframes diceRoll {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.2); }
    50% { transform: rotate(180deg) scale(1.1); }
    75% { transform: rotate(270deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1); }
}

.dice-result {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--text-secondary);
    min-height: 28px;
}

.dice-faces {
    font-size: 3rem;
}
