/* Основные стили для темной темы */
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #121212; /* Темный фон */
    color: #e0e0e0; /* Светлый текст */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.6;
}

.construction-container {
    max-width: 800px;
    padding: 40px;
    background-color: #1e1e1e; /* Темный контейнер */
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #333; /* Граница */
}

.construction-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff; /* Белый заголовок */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.construction-content p {
    font-size: 1.2rem;
    color: #aaaaaa; /* Серый текст */
    margin-bottom: 30px;
}

/* Дополнительные элементы как на rosta24.ru */
.logo {
    max-width: 200px;
    margin-bottom: 30px;
}

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

.social-links a {
    color: #aaa;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #fff;
}

/* Анимация для привлекательности */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.construction-content {
    animation: fadeIn 0.8s ease-out;
}
