.not-found-container {
    max-width: 800px;
    width: 100%;
    margin: 40px auto !important;
    padding: 0 15px;
    font-family: 'Roboto', sans-serif;
    min-height: 400px;
    background: #fff; /* Белый фон */
    box-sizing: border-box;
    text-align: center;
}

/* Родительские элементы */
#primary, .site-main {
    margin: 0 auto !important;
    width: 100%;
    max-width: 800px;
}

main {
    margin: 15vh auto 10vh;
}

/* Заголовок */
.not-found-title {
    font-size: 32px;
    font-weight: 300;
    color: #222;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

/* Сообщение */
.not-found-message {
    font-size: 16px;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Кнопка */
.not-found-button {
    display: inline-block;
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}
.not-found-button:hover {
    background: #333;
    transform: translateY(-2px); /* Лёгкий подъём при наведении */
}

/* Адаптивность */
@media (max-width: 768px) {
    .not-found-container {
        margin: 20px auto !important;
        padding: 0 10px;
        min-height: 300px;
    }
    .not-found-title {
        font-size: 28px;
    }
    .not-found-message {
        font-size: 15px;
    }
}
@media (max-width: 480px) {
    .not-found-title {
        font-size: 24px;
    }
    .not-found-message {
        font-size: 14px;
    }
    .not-found-button {
        padding: 10px 20px;
        font-size: 13px;
    }
}