.game-sound-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    min-width: 30px;
    margin-left: auto;
    padding: 0;
    border: 0;
    border-radius: 6px;
    color: #111827;
    background: transparent;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.game-sound-toggle + .game-wallet {
    margin-left: 6px;
}

.game-sound-toggle:hover,
.game-sound-toggle:focus-visible {
    color: #0f172a;
    background: #f3f4f6;
}

.game-sound-toggle:focus-visible {
    outline: 2px solid rgba(246, 87, 181, 0.42);
    outline-offset: 2px;
}

.game-sound-toggle:active {
    transform: scale(0.96);
}

.game-sound-toggle.is-muted {
    color: #6b7280;
}

.game-sound-toggle .material-icons {
    display: block;
    font-size: 20px;
    line-height: 1;
}

@media (max-width: 370px) {
    .game-sound-toggle {
        width: 28px;
        height: 28px;
        min-width: 28px;
    }

    .game-sound-toggle .material-icons {
        font-size: 19px;
    }
}
