:root {
    --primary-color: #00ccff; /* Яркий, технологичный синий */
    --secondary-color: #003366; /* Глубокий темно-синий */
    --accent-color: #00ff00; /* Зеленый, ассоциируется с безопасностью/онлайн */
    --background-dark: #0a0a1a; /* Почти черный, космический */
    --text-color-light: #e0e0e0;
    --text-color-dark: #333;
    --code-font: 'Roboto Mono', monospace;
    --heading-font: 'Exo 2', sans-serif;
}

body {
    margin: 0;
    font-family: 'Exo 2', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-color-light);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden; /* Скрываем потенциальное содержимое за пределами экрана */
    background-image: url('background-dots.png'); /* Можно добавить фоновые точки/сетку */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.container {
    text-align: center;
    padding: 40px 20px;
    background-color: rgba(10, 10, 26, 0.8); /* Полупрозрачный фон для контейнера */
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 204, 255, 0.3), /* Синее свечение */
                0 0 60px rgba(0, 255, 0, 0.2);  /* Зеленое свечение */
    border: 1px solid rgba(0, 204, 255, 0.4);
    max-width: 700px;
    width: 100%;
}

header {
    margin-bottom: 40px;
}

.logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px var(--primary-color));
}

h1 {
    font-family: var(--heading-font);
    font-size: 2.8em;
    color: var(--primary-color);
    margin: 0;
    text-shadow: 0 0 15px var(--primary-color);
}

h2 {
    font-family: var(--heading-font);
    font-size: 2.2em;
    color: var(--accent-color);
    margin: 20px 0;
    text-shadow: 0 0 10px var(--accent-color);
}

p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-color-light);
}

.status-icon {
    font-size: 5em;
    color: var(--accent-color);
    margin-bottom: 20px;
    animation: pulse 2s infinite ease-in-out;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.maintenance-details {
    margin-top: 30px;
    font-size: 0.9em;
    color: rgba(220, 220, 220, 0.8);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.maintenance-details span {
    color: var(--primary-color);
    font-weight: bold;
}

footer {
    margin-top: 50px;
    font-size: 0.8em;
    color: rgba(150, 150, 150, 0.8);
}

.social-links {
    margin-top: 15px;
}

.social-links a {
    color: var(--text-color-light);
    margin: 0 10px;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Анимация */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.9;
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2em;
    }
    h2 {
        font-size: 1.8em;
    }
    .container {
        padding: 30px 15px;
    }
    .logo {
        max-width: 120px;
    }
    .status-icon {
        font-size: 4em;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8em;
    }
    h2 {
        font-size: 1.5em;
    }
    p {
        font-size: 1em;
    }
    .container {
        padding: 20px 10px;
    }
    .logo {
        max-width: 100px;
    }
}
