/* Стили для контейнера других игр */
#otherGamesMenu {
    text-align: center;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.other-games-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    margin-bottom: 15px;
    width: 100%;
    max-width: 1200px;
}

.other-game-btn {
    position: relative;
    padding: 15px 10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    text-align: center;
    background-size: cover;
    background-position: center;
    word-break: break-word;
    line-height: 1.3;
    width: 100%;
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.other-game-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
    transition: background 0.3s ease;
}

.other-game-btn:hover::before {
    background: rgba(0, 0, 0, 0.2);
}

.other-game-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}