/* Основные стили */
body {
    font-family: 'Orbitron', sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
    position: relative;
    background: url('background.png') no-repeat center center fixed;
    background-size: cover;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

/* Шапка */
header {
    background-color: rgba(17, 17, 17, 0.9);
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Логотип */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo_name {
    font-family: 'Arial', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Навигация */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 60px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: #0ff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

nav ul li a:hover {
    color: #f0f;
    text-shadow: 0 0 10px #f0f;
}

/* Секция Hero */
#hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    gap: 40px;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-text h1 {
    font-size: 3em;
    margin: 0;
    color: #0ff;
    text-shadow: 0 0 10px #0ff;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 10px #0ff;
    }
    100% {
        text-shadow: 0 0 20px #f0f, 0 0 30px #0ff;
    }
}

.hero-text p {
    font-size: 1.5em;
    margin: 20px 0;
}

.cta-button {
    background-color: #0ff;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0 0 10px #0ff;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    background-color: #f0f;
    box-shadow: 0 0 15px #f0f;
}

.hero-characters {
    display: flex;
    gap: 20px;
    align-items: flex-end; /* Выравнивание по нижнему краю */
}

.character-icon {
    width: 300px; /* Увеличиваем ширину */
    height: auto; /* Сохраняем пропорции */
    border: 3px solid #0ff; /* Увеличиваем толщину обводки */
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.7); /* Усиливаем свечение */
    border-radius: 15px; /* Закругляем углы */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.character-icon:hover {
    transform: scale(1.1); /* Увеличиваем при наведении */
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.9); /* Усиливаем свечение при наведении */
}


/* Секция About */
#about {
    padding: 80px 20px;
    text-align: center;
    background-color: rgba(34, 34, 34, 0.9);
    margin: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

#about h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #0ff;
    text-shadow: 0 0 15px #0ff;
}

#about p {
    font-size: 1.2em;
    line-height: 1.6;
}

/* Секция Development */
#development {
    padding: 80px 20px;
    text-align: center;
    background-color: rgba(34, 34, 34, 0.9);
    margin: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.development-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.release-info, .stages, .platforms {
    background-color: rgba(68, 68, 68, 0.9);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #0ff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    flex: 1 1 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.release-info:hover, .stages:hover, .platforms:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
}

.icon {
    font-size: 3em;
    margin-bottom: 20px;
    color: #0ff;
    text-shadow: 0 0 10px #0ff;
}

.release-info h3, .stages h3, .platforms h3 {
    font-size: 1.8em;
    color: #0ff;
    margin-bottom: 15px;
    text-shadow: 0 0 10px #0ff;
}

.release-info p, .stages ul, .platforms ul {
    color: #fff;
    font-size: 1.1em;
    line-height: 1.6;
}

.stages ul, .platforms ul {
    list-style-type: none;
    padding: 0;
}

.stages ul li, .platforms ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.stages ul li::before, .platforms ul li::before {
    content: "•";
    color: #0ff;
    position: absolute;
    left: 0;
    font-size: 1.5em;
    line-height: 1;
}

.beta-tests {
    background-color: rgba(68, 68, 68, 0.9);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #0ff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    flex: 1 1 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.beta-tests:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
}

.beta-tests .cta-button {
    margin-top: 20px;
    display: inline-block;
}

/* Секция Features */
#features {
    padding: 80px 20px;
    text-align: center;
    background-color: rgba(34, 34, 34, 0.9);
    margin: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    background-color: rgba(68, 68, 68, 0.9);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #0ff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 20px;
    color: #0ff;
    text-shadow: 0 0 10px #0ff;
}

.feature h3 {
    font-size: 1.8em;
    color: #0ff;
    margin-bottom: 15px;
    text-shadow: 0 0 10px #0ff;
}

.feature p {
    font-size: 1.1em;
    line-height: 1.6;
}

/* Секция Gallery */
#gallery {
    padding: 80px 20px;
    text-align: center;
    background-color: rgba(34, 34, 34, 0.9);
    margin: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid img {
    width: 100%;
    border-radius: 15px;
    border: 2px solid #0ff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
}

/* Секция Contact */
#contact {
    padding: 80px 20px;
    text-align: center;
    background-color: rgba(34, 34, 34, 0.9);
    margin: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

#contact .contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #0ff;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #ccc;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #f0f;
    box-shadow: 0 0 10px rgba(240, 0, 240, 0.5);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    background-color: #0ff;
    color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.submit-button:hover {
    background-color: #f0f;
    box-shadow: 0 0 10px rgba(240, 0, 240, 0.8);
}

/* Подвал */
footer {
    background-color: rgba(17, 17, 17, 0.9);
    padding: 20px;
    text-align: center;
    color: #0ff;
    font-size: 1.1em;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5);
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
    header {
        padding: 20px;
    }

    .header-content {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .logo_name {
        font-size: 20px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    nav ul li a {
        font-size: 1em;
    }

    #hero {
        padding: 60px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-characters {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .character-icon {
        width: 100px;
        margin-bottom: 10px;
    }

    .development-content, .features-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }

    .feature, .release-info, .stages, .platforms {
        padding: 20px;
    }

    #contact {
        padding: 30px 10px;
    }

    .contact-form {
        padding: 0 10px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.9em;
    }

    .submit-button {
        width: 100%;
    }
}