/* =============================================
   ERROR PAGE STYLES  — Cuiter Social Network Platform
   ============================================= */

.error-page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 32px 60px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

/* Lingkaran ikon */
.error-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: rgba(29, 155, 240, 0.10);
    border: 2px solid rgba(29, 155, 240, 0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.error-icon-circle i {
    font-size: 28px;
    color: var(--primary-color, #1d9bf0);
}

/* Kode error besar */
.error-code {
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    color: var(--text-main);
    margin-bottom: 12px;
    letter-spacing: -3px;
}

/* Garis aksen bawah kode */
.error-divider {
    width: 36px;
    height: 3px;
    background-color: var(--primary-color, #1d9bf0);
    border-radius: 2px;
    margin: 0 auto 24px auto;
}

/* Judul error */
.error-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
}

/* Deskripsi */
.error-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 320px;
    margin: 0 auto 36px auto;
}

/* Tombol-tombol aksi */
.error-actions {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-error-primary,
.btn-error-secondary {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.15s, background-color 0.15s;
    white-space: nowrap;
}

.btn-error-primary {
    background-color: var(--primary-color, #1d9bf0);
    color: #ffffff;
    border: none;
}

.btn-error-primary:hover {
    opacity: 0.85;
    color: #ffffff;
    text-decoration: none;
}

.btn-error-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 1.5px solid var(--border-color);
}

.btn-error-secondary:hover {
    background-color: var(--hover-bg, rgba(255,255,255,0.05));
    text-decoration: none;
    color: var(--text-main);
}

/* Responsif: layar sempit */
@media (max-width: 680px) {
    .error-code {
        font-size: 64px;
    }
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    .btn-error-primary,
    .btn-error-secondary {
        width: 200px;
        justify-content: center;
    }
}