* {
    margin: 0; padding: 0; box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: #07080F;
    color: #E8E8E8;
    overflow-x: hidden;
}

/* Параллакс-фон */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('img/bg.jpg') center/cover no-repeat;
    filter: brightness(0.35) blur(2px);
    z-index: -1;
}

/* Меню */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10,10,18,0.6);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(100,150,255,0.4);
    z-index: 1000;
}
nav .logo {
    display: flex; align-items: center;
    gap: 12px; font-size: 20px; letter-spacing: 2px;
}
nav .logo img { height: 40px; }
nav ul { display: flex; gap: 25px; list-style: none; }
nav a {
    color: #8db8ff;
    text-decoration: none;
    transition: 0.3s;
}
nav a:hover { color: #fff; text-shadow: 0 0 8px #4c8cff; }

/* Контент блоки */
section {
    max-width: 900px;
    margin: 120px auto 60px;
    padding: 0 20px;
}

/* Заголовки */
h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #7eb7ff;
    text-shadow: 0 0 8px #4c8cff;
}

/* Списки */
.game-list, .news-list, .team-list {
    list-style: none;
}

/* Карточки */
.card {
    background: rgba(20,25,40,0.65);
    padding: 18px;
    margin: 12px 0;
    border: 1px solid rgba(110,150,255,0.4);
    border-radius: 8px;
    backdrop-filter: blur(8px);
}

/* Команда */
.team-list li {
    display: flex;
    align-items: center;
    gap: 18px;
}
.team-list img {
    width: 80px; height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #4c8cff;
}

/* Подвал */
footer {
    text-align: center;
    padding: 40px;
    margin-top: 60px;
    background: rgba(10,10,18,0.6);
    border-top: 1px solid rgba(100,150,255,0.4);
}
/* Галерея изображений */
.image-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(20,25,40,0.65);
    border: 1px solid rgba(110,150,255,0.4);
    padding: 18px;
    margin: 12px 0;
    border-radius: 8px;
    backdrop-filter: blur(8px);
}

.image-card img {
    width: 180px;
    height: 110px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid #4c8cff;
}

/* Блок О компании с картинкой */
.about-box {
    display: flex;
    align-items: center;
    gap: 30px;
}

.about-box img {
    width: 320px;
    height: auto;
    border-radius: 8px;
    border: 2px solid #4c8cff;
}
