/* Conteneur principal */
.baccarat-tapis {
    background: url('/jeux/baccarat/assets/tapis.png') center center no-repeat;
    max-width: 900px;
    padding: 25px;
    border-radius: 25px;
    border: 2px solid black;
    -moz-border-radius: 10px;
    margin: 15px auto;
    box-shadow: 0 0 5px #0ff;
}

.dice-container, .cards-container {
    display:flex;
    justify-content:center;
    gap:15px;
    margin:20px 0;
}

.card {
    width:60px;
    height:90px;
    background:#1E90FF;
    color:#FFF;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    font-weight:bold;
    box-shadow:0 4px 6px rgba(0,0,0,0.3);
}

#roll-counter {
    font-weight:bold;
    margin-bottom:10px;
}

.baccarat-result-ok, .baccarat-result-no {
    margin:10px 0;
    padding:10px;
    border-radius:10px;
    display:none;
}
.baccarat-result-ok { border: dashed lightgreen; color: white; max-width: 600px; margin: 10px auto 0 auto; }
.baccarat-result-no { border: dashed lightcoral; color: white; max-width: 600px; margin: 10px auto 0 auto; }

.cards-container{display:flex;justify-content:center;gap:20px;margin:20px 0;}
.card{display:inline-block;width:80px;height:120px;background:#fff;color:#000;font-size:24px;font-weight:bold;text-align:center;line-height:120px;border-radius:10px;box-shadow:0 4px 6px rgba(0,0,0,0.3);}
.overlay-jackpot{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.85);color:#FFD700;display:flex;flex-direction:column;justify-content:center;align-items:center;font-size:32px;z-index:9999;border-radius:0;}

@keyframes fadein {
    from {opacity:0;}
    to {opacity:1;}
}

.bet-input{
    width:120px;
    text-align:center;
    font-size:18px;
    padding:10px;
    border-radius:10px;
    border:none;
    outline:none;
}
