/* Основные стили страницы */
body {
    margin: 0;
    padding: 0;
    background-color: #121212; /* Очень темный фон */
    color: #e0e0e0;
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden; /* Скрываем прокрутку, если она появится */
}

.container {
    text-align: center;
    max-width: 600px;
    padding: 40px;
}

/* Стилизация кода ошибки 403 */
.error-code {
    font-family: 'Press Start 2P', cursive; /* Игровой/ретро шрифт */
    font-size: 120px;
    color: #ff3e3e; /* Насыщенный красный */
    text-shadow: 0 0 10px #ff3e3e, 
                 0 0 20px #ff3e3e, 
                 0 0 30px #ff3e3e; /* Эффект неонового свечения */
    margin-bottom: 20px;
}

/* Светящаяся разделительная линия */
.glowing-line {
    height: 2px;
    background-color: #ff3e3e;
    box-shadow: 0 0 15px #ff3e3e;
    width: 80%;
    margin: 0 auto 30px auto;
}

/* Заголовок ошибки */
.error-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

/* Сообщение об ошибке */
.error-message {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #b0b0b0;
}

/* Контейнер для кнопок */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Общие стили для кнопок */
.btn {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Основная кнопка (Вернуться на главную) */
.btn-primary {
    background-color: #ff3e3e;
    color: #ffffff;
    border: 2px solid #ff3e3e;
}

.btn-primary:hover {
    background-color: transparent;
    color: #ff3e3e;
    box-shadow: 0 0 10px #ff3e3e;
}

/* Второстепенная кнопка (Назад) */
.btn-secondary {
    background-color: transparent;
    color: #b0b0b0;
    border: 2px solid #b0b0b0;
}

.btn-secondary:hover {
    color: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 0 10px #ffffff;
}
