.error-404 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px;
}

.error-404-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.error-404-inner h1 {
    font-size: 160px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(180deg, #0558ff 0%, #002a80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-404-subtitle {
    font-size: 36px;
    font-weight: 700;
}

.error-404-text {
    font-size: 18px;
    font-weight: 400;
    color: #cbcbcb;
    max-width: 500px;
}

@media (max-width: 768px) {
    .error-404 {
        padding: 80px 20px;
    }

    .error-404-inner h1 {
        font-size: 100px;
    }

    .error-404-subtitle {
        font-size: 24px;
    }

    .error-404-text {
        font-size: 16px;
    }
}
