.bet-amount {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(2px);
}

.coin-area {
    /* width: 100vw; */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
    box-sizing: border-box;

    /* background: radial-gradient(circle at center, #0b223a, #060b14);
    border-radius: 16px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.7), 0 4px 15px rgba(0,0,0,0.6);
    color: #fff;
    text-align: center; */
}

.coin-wrapper {
    width: 170px;
    height: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.coin {
    width: 160px;
    height: 160px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 2.5s cubic-bezier(0.25, 0.75, 0.5, 1.25);
}

.coin img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    border-radius: 50%;
    /* box-shadow: 0 5px 15px rgba(0,0,0,0.25); */
}

.coin .tails {
    transform: rotateX(180deg);
}

.coin-shadow {
    position: absolute;
    bottom: 0;
    width: 120px;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.35) 0%, transparent 70%);
    border-radius: 50%;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.coin.flipping ~ .coin-shadow {
    transform: scale(0.6);
    opacity: 0.5;
}

.result-text {
    font-family: "Roboto Slab", serif;
    font-weight: 600;
    color: #ffffff;
}
