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

.game-container {
    width: 100%;
    max-width: 600px;
    background-color: #1e1e1e;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.graph-container {
    position: relative;
    width: 100%;
    height: 300px;
    /* background-color: #0d0d0d; */
    backdrop-filter: blur(2px);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid #eabd40;
}

.graph {
    width: 100%;
    height: 100%;
    position: relative;
}

.multiplier-display {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #0ecb81;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 5px;
}

.background-multipliers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* color: rgba(255, 255, 255, 0.1); */
    color: #eabd40;
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    pointer-events: none;
}

.timer {
    font-size: 18px;
    text-align: center;
    margin: 10px 0;
    color: #0ecb81;
}