#mm-game-container {
    text-align: center;
    padding: 2rem;
}

#mm-coin {
    width: 200px;
    height: 200px;
    background: linear-gradient(145deg, #d4af37, #aa8c22); /* Gold color */
    border-radius: 50%;
    margin: 0 auto;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border: 4px solid #fffae5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    font-weight: bold;
    user-select: none;
}

#mm-coin:active {
    transform: scale(0.95); /* Click effect */
}

#mm-coin-total {
    font-size: 1.5rem;
    margin-top: 1rem;
    font-weight: bold;
}