/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#matrix-container {
    position: fixed; /* Фиксированное положение на весь экран */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Отключает блокировку кликов */
    z-index: -1; /* Перемещает эффект в фон */
}

#c {
    width: 100%;
    height: 100%;
    display: block;
}

#matrix-text {
    position: relative;
    z-index: 1; /* Контент будет поверх эффекта */
    pointer-events: auto; /* Включаем взаимодействие с элементами */
    color: white; /* Убедись, что текст контрастный */
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#matrix-text {
    position: relative;
    z-index: 1;
    color: white;
    font-size: 24px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 8px;
}


/* --- Стили для страницы доступа администратора --- */

/* 1. Центрируем панель на весь экран */
.admin-page-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh); /* 100% высоты */
    padding: 20px;
}

/* 2. Стилизуем саму панель */
.admin-access-panel {
    max-width: 500px;
    width: 100%;
    text-align: center;
    padding: 40px;
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.lock-icon {
    font-size: 3.5rem;
    color: #0d6efd;
    margin-bottom: 1rem;
}

.admin-access-panel h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.access-description {
    color: #6c757d;
    margin-bottom: 2rem;
}

/* 3. Стили для сообщения об ошибке */
.login-error-message {
    color: #dc3545; /* Красный цвет */
    font-weight: 600;
    margin-top: 1.5rem;
    opacity: 0; /* Скрываем по умолчанию */
    height: 0;  /* Схлопываем, чтобы не занимало место */
    transition: opacity 0.3s ease, height 0.3s ease;
}

/* Класс для отображения ошибки */
.login-error-message.visible {
    opacity: 1;
    height: auto; /* Возвращаем высоту */
}

/* --- Темная тема --- */
.dark-theme .admin-access-panel {
    background-color: #2c2c2e;
    border-color: #444;
}
.dark-theme .access-description {
    color: #a0a0a0;
}