/* === Dés === */
.dice-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.dice {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #2C2C2C;
    color: #FFF;
    font-size: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 0 8px rgba(0,0,0,0.5);
    transition: transform 0.2s, background 0.2s;
}

.dice:hover {
    transform: scale(1.1);
    background: #1E90FF;
}

.poker-result-ok, .poker-result-no {
    margin:10px 0;
    padding:10px;
    border-radius:10px;
    display:none;
}
.poker-result-ok { border: dashed lightgreen; color: white; max-width: 600px; margin: 10px auto 0 auto; }
.poker-result-no { border: dashed lightcoral; color: white; max-width: 600px; margin: 10px auto 0 auto; }

/* Overlay Jackpot */
.overlay-jackpot {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    background: rgba(0,0,0,0.9);
    padding: 40px 60px;
    border-radius: 20px;
    text-align: center;
    color: gold;
    font-size: 2em;
    font-weight: bold;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    animation: popOverlay 1s ease forwards;
}

.overlay-jackpot h1{
    font-size: 3em;
    color: gold;
    animation: pulse 1s infinite alternate;
}

.overlay-jackpot p{
    font-size: 1.2em;
    color: #FFF;
    margin-top: 15px;
}

@keyframes popOverlay{
    0%{opacity:0; transform:translate(-50%,-50%) scale(0.5);}
    100%{opacity:1; transform:translate(-50%,-50%) scale(1);}
}

@media(max-width:600px){
.overlay-jackpot h1{
font-size:2.4rem;
}	
}
