/* 📐 Empire.help — Structural Styles */
/* 🔒 Local file only — No external requests */

* { margin: 0; padding: 0; box-sizing: border-box; transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 25px;
}

#live-clock {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
  font-variant-numeric: tabular-nums;
}

#live-date {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-top: 4px;
  font-weight: 500;
}

/* ... بقية التنسيقات الهيكلية ... */

/* 📱 Responsive */
@media (max-width: 600px) {
  body { padding: 15px; }
  nav { flex-direction: column; align-items: center; }
  .nav-btn { width: 100%; max-width: 280px; justify-content: center; }
}

/* 🖨️ Print */
@media print {
  .theme-toggle-container, nav, .region-toggles, #pwa-prompt { display: none !important; }
  body { background: #fff; color: #000; }
}
