:root {
  --primary: #5b35f5;
  --primary-dark: #4524d6;
  --primary-soft: #efeaff;
  --text-main: #101428;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --bg-main: #f8f9ff;
  --bg-card: #ffffff;
  --border: #e7e8f3;
  --green: #22c55e;
  --blue: #2f80ed;
  --pink: #ff4d8d;
  --purple: #6c4df6;
  --orange: #f59e0b;
  --shadow-card: 0 10px 30px rgba(24, 20, 70, 0.06);
  --shadow-soft: 0 18px 45px rgba(24, 20, 70, 0.08);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
}

button, input { font: inherit; }
button { border: 0; cursor: pointer; background: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; object-fit: cover; }

.app-shell { min-height: 100vh; }

.online-dot {
  width: 9px;
  height: 9px;
  display: inline-block;
  background: var(--green);
  border-radius: 999px;
  border: 2px solid white;
}

.hidden { display: none !important; }
