/* =========================
   404 Page
========================= */

.page-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 40px 20px;
}

.container-404 {
  text-align: center;
  max-width: 520px;
}

/* الرقم */
.error-code {
  font-size: 96px;
  font-weight: 800;
  color: #ffa559; /* لون العنقاء */
  margin-bottom: 10px;
}

/* العنوان */
.error-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

/* الوصف */
.error-description {
  font-size: 15px;
  color: #555;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* الأزرار */
.error-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 12px 22px;
  background: #ffa559;
  color: #000;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.btn-secondary {
  padding: 12px 22px;
  border: 1px solid #ddd;
  color: #111;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.btn-secondary:hover {
  border-color: #ffa559;
}
