@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap");

:root {
  --bg: #0e0e0d;
  --bg-elev: #161614;
  --bg-deep: #0a0a09;
  --bg-hover: #1c1c1a;
  --border: #262623;
  --border-strong: #34342f;
  --text: #ededea;
  --text-dim: #a1a09a;
  --text-faint: #6b6a64;
  --accent: oklch(0.78 0.09 145);
  --accent-dim: oklch(0.78 0.09 145 / 0.14);
  --radius: 10px;
  --radius-sm: 6px;
  --maxw: 720px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% -10%, rgba(255,255,255,0.025), transparent 60%);
  z-index: 0;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  text-decoration: none;
  border: 1px solid var(--border-strong);
  color: var(--text);
  background: transparent;
  transition: background 120ms ease, border-color 120ms ease;
}
.btn:hover {
  background: var(--bg-elev);
  border-color: var(--accent);
}
.btn svg { width: 13px; height: 13px; }

.chip {
  display: inline-block;
  padding: 4px 9px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11.5px;
  color: var(--text-dim);
  line-height: 1.4;
}

.shot { cursor: zoom-in; overflow: hidden; }
.shot img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; transition: transform 200ms ease; }
.shot:hover img { transform: scale(1.04); }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 100;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 0 0 1px var(--border);
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
