.notfound{

padding:180px 0 120px;

background:
linear-gradient(180deg,#172435 0%,#0f1b32 100%);

min-height:100vh;

text-align:center;

position:relative;

overflow:hidden;

}

.notfound::before{

content:"";

position:absolute;

width:900px;

height:900px;

background:

radial-gradient(circle,
rgba(87,118,136,.18),
transparent 70%);

top:-350px;

left:50%;

transform:translateX(-50%);

}

.notfound .container{

position:relative;

z-index:2;

max-width:1100px;

}

.notfound-icon{

width:120px;

height:120px;

margin:auto;

border-radius:50%;

background:rgba(254,144,76,.12);

display:flex;

align-items:center;

justify-content:center;

margin-bottom:35px;

border:1px solid rgba(254,144,76,.25);

}

.notfound-icon i{

font-size:55px;

color:#FE904C;

}

.tag{

display:inline-block;

padding:8px 20px;

background:rgba(254,144,76,.10);

color:#FE904C;

border-radius:40px;

font-weight:600;

letter-spacing:2px;

margin-bottom:20px;

}

.notfound h1{

font-size:60px;

color:#FFF;

margin-bottom:20px;

}

.notfound p{

max-width:650px;

margin:auto;

font-size:19px;

line-height:1.8;

color:rgba(255,255,255,.80);

margin-bottom:45px;

}

.notfound-buttons{

display:flex;

justify-content:center;

gap:20px;

margin-bottom:80px;

flex-wrap:wrap;

}

.btn-primary{

background:#FE904C;

padding:18px 34px;

border-radius:12px;

color:#FFF;

font-weight:600;

text-decoration:none;

transition:.3s;

}

.btn-primary:hover{

transform:translateY(-4px);

}

.btn-secondary{

padding:18px 34px;

border-radius:12px;

border:1px solid rgba(255,255,255,.2);

color:#FFF;

text-decoration:none;

transition:.3s;

}

.btn-secondary:hover{

background:#FFF;

color:#172435;

}

.links-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

margin-bottom:70px;

}

.links-grid a{

background:rgba(255,255,255,.04);

border:1px solid rgba(255,255,255,.08);

padding:40px;

border-radius:18px;

text-decoration:none;

color:#FFF;

transition:.35s;

}

.links-grid a:hover{

transform:translateY(-6px);

border-color:#FE904C;

}

.links-grid i{

font-size:34px;

color:#FE904C;

margin-bottom:18px;

display:block;

}

.status-box{

max-width:700px;

margin:auto;

background:rgba(255,255,255,.05);

border-radius:18px;

padding:35px;

border:1px solid rgba(255,255,255,.08);

}

.status-box h3{

color:#FFF;

margin-bottom:25px;

}

.status-box ul{

list-style:none;

padding:0;

margin:0;

text-align:left;

}

.status-box li{

display:flex;

align-items:center;

gap:12px;

padding:12px 0;

color:#FFF;

}

.status-box li:nth-child(1) i,
.status-box li:nth-child(2) i{

color:#2ECC71;

}

.status-box li:nth-child(3) i{

color:#FE904C;

}

@media(max-width:900px){

.links-grid{

grid-template-columns:repeat(2,1fr);

}

.notfound h1{

font-size:42px;

}

}

@media(max-width:600px){

.links-grid{

grid-template-columns:1fr;

}

.notfound{

padding-top:150px;

}

.notfound h1{

font-size:34px;

}

.notfound-buttons{

flex-direction:column;

}

}