/* ==========================================================================
   МОДИФИКАТОРЫ И СТИЛИ ДЛЯ СТРАНИЦЫ-ЗАГЛУШКИ (БЭМ)
   ========================================================================== */

/* Центрирование всего содержимого на экране */
.page_layout_centered {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
    box-sizing: border-box;
}

/* Основной контейнер заглушки */
.maintenance-container {
    text-align: center;
    max-width: 500px;
    width: 100%;
    animation: fadeIn 0.6s ease-out;
}

.maintenance-container__logo {
    margin-bottom: 40px;
}

/* Модификатор логотипа для выравнивания по центру */
.logo_position_center {
    justify-content: center;
}

/* Увеличенные размеры для акцента на пустой странице */
.logo__title_size_large {
    font-size: 1.35rem;
}

.logo__subtitle_size_large {
    font-size: 0.85rem;
}

/* Блок статуса разработки */
.maintenance-status__title {
    font-size: 2.5rem; /* Большая и заметная надпись */
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.maintenance-status__text {
    font-size: 1.1rem;
    color: var(--color-text-main);
}

/* Плавное появление страницы при загрузке */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}