﻿.notfound-wrapper {
    text-align: center;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    animation: fadein 0.5s ease;
}

.notfound-card {
    max-width: 500px;
}

.notfound-img {
    width: 260px;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.2));
}

.notfound-title {
    font-size: 36px;
    margin-top: 20px;
    font-weight: 700;
}

.notfound-sub {
    font-size: 18px;
    color: #777;
    margin-bottom: 30px;
}

.notfound-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-home, .btn-back {
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s;
}

.btn-home {
    background: #0078ff;
    color: white;
}

    .btn-home:hover {
        background: #0064d4;
    }

.btn-back {
    background: #e0e0e0;
    color: #333;
}

    .btn-back:hover {
        background: #cacaca;
    }

@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}