/* ════════════════════════════════════════════════
   NUQTA.GG — Design System / Global Styles
   Dark Navy + Neon Pink (#8e004d)
   ════════════════════════════════════════════════ */
:root {
  --brand: #8e004d;
  --brand-bright: #c0006a;
  --brand-neon: #ff1a8c;
  --bg: #05050f;
  --bg-card: #0a0a1a;
  --bg-card2: #0f0f24;
  --bg-glass: rgba(10, 10, 26, 0.85);
  --border: rgba(142, 0, 77, 0.15);
  --border2: rgba(142, 0, 77, 0.45);
  --glow: rgba(142, 0, 77, 0.25);
  --txt: #f5f0ff;
  --txt2: #a09abf;
  --txt3: #4a4470;
  --score-green: #10B981;
  --score-yellow: #F59E0B;
  --score-red: #EF4444;
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1340px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--txt);
  font-family: 'Cairo', system-ui, 'Segoe UI', Tahoma, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: var(--brand-neon); }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
.num, .score, .score-num { font-family: 'Rajdhani', sans-serif; font-weight: 700; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }
.page { padding-block: 28px 90px; }

/* ── Ambient background ── */
.bg-blobs { position: fixed; inset: 0; z-index: -2; pointer-events: none; }
.blob { position: absolute; width: 50vw; height: 50vw; border-radius: 50%;
  background: var(--brand); filter: blur(120px); opacity: .07; }
.blob-1 { top: -10vw; inset-inline-end: -10vw; }
.blob-2 { bottom: -10vw; inset-inline-start: -10vw; opacity: .05; }
.bg-grid { position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(142,0,77,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142,0,77,.025) 1px, transparent 1px);
  background-size: 60px 60px; }

/* ── Navbar ── */
.navbar { position: sticky; top: 0; z-index: 100;
  background: rgba(5,5,15,.90); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; gap: 24px; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { display: inline-flex; width: 36px; height: 36px; }
.brand-logo svg { width: 100%; height: 100%; }
.brand-logo.small { width: 28px; height: 28px; }
.brand-name { font-weight: 900; font-size: 1.5rem;
  background: linear-gradient(135deg, var(--brand-neon), var(--brand-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav-links { display: flex; gap: 22px; margin-inline-end: auto; }
.nav-links a { color: var(--txt2); font-weight: 600; font-size: .98rem; }
.nav-links a:hover, .nav-links a.active { color: var(--txt); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn { background: transparent; border: 1px solid var(--border);
  color: var(--txt); width: 40px; height: 40px; border-radius: var(--radius-sm);
  display: grid; place-items: center; font-size: 1.1rem; }
.icon-btn:hover { border-color: var(--border2); box-shadow: 0 0 16px var(--glow); }
.hamburger { display: none; }

/* ── Mobile menu overlay ── */
.mobile-menu { position: fixed; inset: 0; z-index: 200;
  background: rgba(5,5,15,.98); backdrop-filter: blur(16px);
  display: none; flex-direction: column; align-items: center; justify-content: center;
  gap: 28px; font-size: 1.6rem; font-weight: 700; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--txt); }
.mm-close { position: absolute; top: 22px; inset-inline-end: 22px;
  background: transparent; border: none; color: var(--txt); font-size: 2rem; }

/* ── Headings / section headers ── */
.section { margin-block: 40px; }
.section-head { display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px; gap: 12px; flex-wrap: wrap; }
.section-title { display: flex; align-items: center; gap: 10px; font-size: 1.4rem; font-weight: 900; }
.section-title::before { content: ''; width: 10px; height: 10px; border-radius: 50%;
  background: var(--brand-neon); box-shadow: 0 0 12px var(--brand-neon); }
.see-all { color: var(--txt2); font-weight: 600; font-size: .9rem; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  background: linear-gradient(135deg, #8e004d, #5a0030); color: #fff;
  border: none; padding: 12px 22px; border-radius: var(--radius-sm);
  font-weight: 700; box-shadow: 0 0 20px rgba(142,0,77,.35); transition: transform .15s, box-shadow .2s; }
.btn:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 0 28px rgba(142,0,77,.5); }
.btn-ghost { background: transparent; border: 1px solid var(--border2); box-shadow: none; color: var(--txt); }
.btn-ghost:hover { background: rgba(142,0,77,.12); }

/* ── Pills / tabs ── */
.pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill { background: transparent; border: 1px solid var(--border);
  color: var(--txt2); padding: 7px 16px; border-radius: 999px; font-weight: 600; font-size: .88rem; }
.pill:hover { border-color: var(--border2); color: var(--txt); }
.pill.active { background: rgba(142,0,77,.15); border-color: var(--border2); color: var(--brand-neon); }

/* ── Score colors ── */
.score-green  { color: var(--score-green); }
.score-yellow { color: var(--score-yellow); }
.score-red    { color: var(--score-red); }
.score-pending{ color: var(--txt3); }
.bg-green  { background: rgba(16,185,129,.12);  border-color: rgba(16,185,129,.5)  !important; }
.bg-yellow { background: rgba(245,158,11,.12);  border-color: rgba(245,158,11,.5)  !important; }
.bg-red    { background: rgba(239,68,68,.12);   border-color: rgba(239,68,68,.5)   !important; }
.bg-pending{ background: rgba(74,68,112,.12);   border-color: rgba(74,68,112,.5)   !important; }

/* ── Utility ── */
.muted { color: var(--txt2); }
.muted3 { color: var(--txt3); }
.center { text-align: center; }
.flex { display: flex; }
.gap8 { gap: 8px; } .gap12 { gap: 12px; } .gap16 { gap: 16px; }
.wrap { flex-wrap: wrap; }
.mt8{margin-top:8px}.mt16{margin-top:16px}.mt24{margin-top:24px}
.hidden { display: none !important; }
.empty-state { text-align: center; color: var(--txt2); padding: 60px 20px; }
