body {
    margin: 0;
    padding: 0;
    background-color: #030305; /* Глубокий темный цвет, почти черный */
    color: #ffffff;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    max-width: 300px; /* Размер логотипа */
    width: 100%;
    height: auto;
    /* Легкая пульсирующая анимация свечения */
    animation: glow 3s infinite alternate;
}

h1 {
    margin-top: 30px;
    font-size: 3.5rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-weight: 700;
    /* Неоновое свечение для текста в цвет логотипа */
    text-shadow: 0 0 10px rgba(0, 195, 255, 0.5), 
                 0 0 20px rgba(0, 195, 255, 0.3);
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 10px rgba(0, 150, 255, 0.2));
    }
    to {
        filter: drop-shadow(0 0 30px rgba(0, 195, 255, 0.6));
    }
}

/* Адаптация под телефоны */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
        letter-spacing: 4px;
    }
    .logo {
        max-width: 200px;
    }
}