body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    text-align: center;
}

/* Навигация */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #333;
    padding: 10px 20px;
}

.logo {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
}

/* Ссылки меню */
.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ff6600;
}

/* Поисковая строка */
.search-form {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 5px;
    padding: 2px;
}

.search-form input {
    border: none;
    padding: 5px 10px;
    font-size: 16px;
    outline: none;
}

/* Игры */
#games-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.game {
    background: white;
    padding: 15px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 250px;
    text-align: center;
}

.game img {
    max-width: 100%;
    border-radius: 5px;
}

.download {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: #ff6600;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.download:hover {
    background: #e05500;
}

/* Сообщение "Игры не найдены" */
#no-results {
    font-size: 18px;
    color: red;
    margin-top: 20px;
}
