:root {
  --bg: #0a0a0f;
  --surface: #12121a;
  --surface2: #1a1a26;
  --border: #2a2a3d;
  --accent: #f59e0b;
  --accent2: #f97316;
  --featured: #8b5cf6;
  --text: #e8e8f0;
  --text-dim: #8888aa;
  --text-muted: #55556a;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, .4);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cairo', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px) }
  to { opacity: 1; transform: translateY(0) }
}

@keyframes spin {
  to { transform: rotate(360deg) }
}

/* Base Components */
.loading {
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
  grid-column: 1/-1;
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin: 0 auto 12px;
}

.empty-state {
  text-align: center;
  padding: 50px 20px;
  color: var(--text-muted);
  grid-column: 1/-1;
}

.empty-state .icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.empty-state h3 {
  font-size: 16px;
  color: var(--text-dim);
}
