/* =========================================================
   ERROR PAGES (404 and 500)
========================================================= */

.error-page-main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 120px 20px;
    background-color: #fff;
}

.error-container {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.error-code {
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 10px 0;
    color: #000;
    letter-spacing: -2px;
}

.error-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 30px 0;
    color: #000;
}

.error-message {
    line-height: 1.6;
    color: #666;
    margin: 0 auto 40px auto;
    max-width: 350px;
}

.error-action {
    display: flex;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    .error-code {
        font-size: 90px;
    }

    .error-title {
        font-size: 20px;
    }

    .error-page-main {
        padding: 80px 20px;
    }
}