/**
 * Styles de la pièce avec flèches
 * Rotation sur axe Y
 */

.faca-coin-container {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    margin-top: 40px;
}

.faca-coin {
    width: 220px;
    height: 220px;
    position: relative;
    transform-style: preserve-3d;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.faca-coin:hover {
    transform: scale(1.05);
}

.faca-coin.disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

/* FACES DE LA PIÈCE */
.faca-coin-face {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 8px solid rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 50%, #ff6b6b 100%);
}

.faca-coin-face img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.faca-coin-text {
    font-size: 1.3rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

/* Face LEFT */
.faca-coin-left {
    transform: rotateY(0deg);
}

/* Face RIGHT */
.faca-coin-right {
    transform: rotateY(180deg);
}