:root {
  --background:       0 0% 6%;
  --foreground:       240 6% 92%;
  --primary:          354 75% 56%;
  --muted-foreground: 240 5% 60%;
  --border:           240 4% 18%;
  --radius:           0.625rem;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }

body {
  font-family: "Poppins", system-ui, sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.wip-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
}

.wip-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid hsl(var(--border));
  object-fit: cover;
  margin-bottom: 0.5rem;
}

.wip-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin: 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wip-subtitle {
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
}

.wip-back {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--primary));
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
  margin-top: 0.5rem;
}

.wip-back:hover {
  border-bottom-color: hsl(var(--primary));
}

/* ── Scrollbar global ── */
* { scrollbar-width: thin; scrollbar-color: hsl(var(--muted-foreground) / 0.22) transparent; }
::-webkit-scrollbar        { width: 5px; height: 5px; }
::-webkit-scrollbar-track  { background: transparent; }
::-webkit-scrollbar-thumb  { background: hsl(var(--muted-foreground) / 0.22); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: hsl(var(--muted-foreground) / 0.45); }
::-webkit-scrollbar-corner { background: transparent; }
