*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Nunito,sans-serif;
}

body{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:#ffffff;
    color:#374151;
}

#notfound{
    animation: fadeInPage 0.9s cubic-bezier(.4,0,.2,1);
}

.notfound{
    padding:25px 30px;
}

.animated-error{
    font-size:90px;
    font-weight:700;
    color:#374151;
    line-height:1;
    margin-bottom:8px;
    animation: premiumFloat 8s ease-in-out infinite;
    will-change: transform;
}

.notfound h2{
    font-size:26px;
    color:#111827;
    margin:8px 0 6px;
}

.notfound p{
    color:#6b7280;
    line-height:1.4;
    margin:4px 0; 
}

.notfound a{
    display:inline-block;
    padding:12px 30px;
    margin-top:20px;
    border-radius:14px;
    background:#374151;
    color:white;
    text-decoration:none;
    font-weight:700;
    transition:all .3s cubic-bezier(.4,0,.2,1);
}

.notfound a:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 25px rgba(55,65,81,.3);
}

@keyframes fadeInPage{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes premiumFloat{
    0%{ transform:translateY(0); }
    25%{ transform:translateY(-8px); }
    50%{ transform:translateY(0); }
    75%{ transform:translateY(6px); }
    100%{ transform:translateY(0); }
}

.redirect-info{
    margin-top:2px !important;
    margin-bottom:4px !important;
    line-height:1.3;
}