.error-v2-page{
    background:#050505;
    color:#fff;
    overflow:hidden;
}

.error-v2-hero{
    position:relative;
    padding:120px 0 170px;
    background:
        radial-gradient(circle at 15% 20%, rgba(193,18,31,.34), transparent 30%),
        radial-gradient(circle at 85% 10%, rgba(150,150,150,.16), transparent 28%),
        linear-gradient(135deg, #030303 0%, #111418 45%, #2b2f34 100%);
}

.error-v2-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
    background-size:48px 48px;
    opacity:.45;
}

.error-v2-hero .container{
    position:relative;
    z-index:2;
}

.error-v2-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:9px 18px;
    border-radius:999px;
    background:rgba(255,255,255,.07);
    border:1px solid rgba(255,255,255,.10);
    color:#fff;
    font-weight:900;
    margin-bottom:22px;
}

.error-v2-hero h1{
    color:#fff;
    font-size:clamp(46px, 8vw, 96px);
    line-height:1;
    letter-spacing:-3px;
    margin-bottom:20px;
}

.error-v2-hero p{
    color:rgba(255,255,255,.72);
    font-size:18px;
    max-width:720px;
    margin:auto;
}

.error-v2-hero .breadcrumb a{
    color:#fff;
}

.error-v2-hero .breadcrumb .active{
    color:rgba(255,255,255,.55);
}

.error-v2-section{
    margin-top:-90px;
    position:relative;
    z-index:5;
    padding-bottom:100px;
}

.error-v2-card{
    max-width:960px;
    margin:auto;
    border-radius:36px;
    background:rgba(17,20,25,.96);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 34px 95px rgba(0,0,0,.48);
    padding:55px;
    text-align:center;
}

.error-v2-number{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:180px;
    height:180px;
    border-radius:50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,.18), transparent 35%),
        linear-gradient(135deg, #8b111b, #c1121f);
    color:#fff;
    font-size:58px;
    font-weight:900;
    margin-bottom:28px;
    box-shadow:0 20px 55px rgba(193,18,31,.34);
}

.error-v2-card h2{
    color:#fff;
    font-size:clamp(30px, 4vw, 46px);
    line-height:1.15;
    margin-bottom:18px;
}

.error-v2-card h2 span{
    color:#ef233c;
}

.error-v2-card p{
    color:#a7adb7;
    font-size:17px;
    line-height:1.75;
    max-width:660px;
    margin:0 auto 30px;
}

.error-v2-actions{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:14px;
}

.error-v2-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    padding:15px 24px;
    border-radius:18px;
    background:linear-gradient(135deg,#8b111b,#c1121f);
    color:#fff;
    font-weight:900;
    border:1px solid rgba(255,255,255,.07);
    box-shadow:0 14px 34px rgba(193,18,31,.28);
    text-decoration:none;
}

.error-v2-btn:hover{
    color:#fff;
    background:linear-gradient(135deg,#c1121f,#ef233c);
}

.error-v2-btn-light{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    padding:15px 24px;
    border-radius:18px;
    background:rgba(255,255,255,.06);
    color:#fff;
    font-weight:900;
    border:1px solid rgba(255,255,255,.08);
    text-decoration:none;
}

.error-v2-btn-light:hover{
    color:#fff;
    border-color:rgba(193,18,31,.45);
}

@media(max-width:768px){
    .error-v2-section{
        margin-top:-55px;
    }

    .error-v2-card{
        padding:35px 24px;
    }

    .error-v2-number{
        width:135px;
        height:135px;
        font-size:42px;
    }

    .error-v2-actions a{
        width:100%;
    }
}