/*
=========================================================
BPD GAMING NETWORK
404 PAGE
=========================================================
*/

.error-page,
.error-page * {
    box-sizing: border-box;
}

.error-page {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: calc(100dvh - 120px);
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
    background: #0b0d12;
    color: #ffffff;
}

.error-background {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(80, 100, 255, 0.12),
            transparent 35%
        ),
        radial-gradient(
            circle at 20% 80%,
            rgba(0, 200, 255, 0.06),
            transparent 30%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(160, 70, 255, 0.06),
            transparent 30%
        );
    pointer-events: none;
}

.error-container {
    position: relative;
    width: min(90%, 620px);
    padding: 50px 30px;
    text-align: center;
}

.error-logo {
    margin-bottom: 35px;
    color: #8d96a8;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.error-code {
    color: #ffffff;
    font-size: clamp(80px, 18vw, 150px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -8px;
    text-shadow:
        0 0 40px rgba(120, 140, 255, 0.15);
}

.error-title {
    margin-top: 30px;
    font-size: clamp(26px, 5vw, 40px);
    font-weight: 800;
}

.error-message {
    max-width: 480px;
    margin: 18px auto 0;
    color: #8d96a8;
    font-size: 16px;
    line-height: 1.6;
}

.error-button-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.error-page .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 13px 24px;
    border: 0;
    border-radius: 8px;
    background: #ffffff;
    color: #0b0d12;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease,
        background 0.2s ease;
}

.error-page .button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.error-page .button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    color: #ffffff;
}

.error-page .button-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
}

.error-page .button:focus-visible {
    outline: 3px solid #7c8cff;
    outline-offset: 3px;
}

.error-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
    color: #697386;
    font-size: 12px;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow:
        0 0 10px rgba(74, 222, 128, 0.5);
}

.error-brand {
    margin-top: 50px;
    color: #4f5664;
    font-size: 12px;
    letter-spacing: 1px;
}

@media (max-width: 600px) {

    .error-container {
        padding: 35px 20px;
    }

    .error-code {
        letter-spacing: -5px;
    }

    .error-button-group {
        flex-direction: column;
        width: 100%;
    }

    .error-page .button {
        width: 100%;
    }

}