﻿.notfound-fullpage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    box-sizing: border-box;
    overflow: hidden; /* на случай, если контент вылезет */
    z-index: 1000; /* на случай, если надо перекрыть другое содержимое */
}

.notfound-content {
    text-align: center;
    max-width: 600px;
    color: #e0e0e0;
    font-family: 'Montserrat', sans-serif;
}

.notfound-code {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.notfound-message {
    font-size: 1rem;
    font-weight: 600;
    color: #b0b0b0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.notfound-button {
    /* размер и форма */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 50px; /* скругление*/
    /* текст */
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    text-decoration: none;
    color: #e0e0e0;
    /* фон и граница */
    background: transparent;
    border: 1.5px solid #444;
    backdrop-filter: blur(2px); /* лёгкий эффект стекла (опционально) */
    /* позиционирование и поведение */
    cursor: pointer;
    transition: all 0.25s ease;
    /* запрет выделения при клике */
    user-select: none;
    /*отключение синего выделения при клике с телефона*/
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
}

    .notfound-button:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: #666;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .notfound-button:active {
        transform: translateY(0);
        transition: transform 0.1s ease;
    }
