/* Стили раздела "Другие игры" */
#other-games-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 100;
    padding: 12px;
}

.other-games-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.other-games-list {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
    padding-bottom: 8px;
}

.other-game-btn {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 0.9rem;
}

.back-btn {
    padding: 6px 10px;
    background-color: #f0f0f0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 8px;
    font-size: 0.9rem;
    align-self: flex-start;
}

@media (max-width: 480px) {
    .other-game-btn {
        padding: 8px;
        font-size: 0.8rem;
    }
}