/* Olfei brand — mirrors @olfei/core tailwind.config.ts */
:root {
  --bg-primary: #0D0D0D;
  --bg-secondary: #121212;
  --bg-tertiary: #1A1A1A;
  --bg-hover: #252525;
  --accent: #4ADE80;
  --accent-hover: #22C55E;
  --accent-subtle: rgba(74, 222, 128, 0.1);
  --accent-muted: rgba(74, 222, 128, 0.3);
  --accent-border: rgba(74, 222, 128, 0.5);
  --text-primary: #FFFFFF;
  --text-secondary: #E5E5E5;
  --text-tertiary: #9CA3AF;
  --text-quaternary: #6B7280;
  --border-subtle: #2D2D2D;
  --border-default: #333333;
}

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

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  color: var(--text-secondary);
  font-family: 'JetBrains Mono', 'Fira Code', 'SF Mono', Consolas, Monaco, 'Courier New', monospace;
  padding: 24px;
}

.panel {
  width: 100%;
  max-width: 640px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-default);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.15);
}

.titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border-subtle);
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }

.titlebar .path {
  margin-left: 8px;
  font-size: 12px;
  color: var(--text-quaternary);
}

.body { padding: 28px 28px 24px; }

h1 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h1 .accent { color: var(--accent); }

.tagline {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-tertiary);
}

.cursor {
  display: inline-block;
  width: 8px;
  height: 15px;
  margin-left: 2px;
  vertical-align: text-bottom;
  background: var(--accent);
  animation: blink 1s step-end infinite;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.2);
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.links {
  margin-top: 24px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.links .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-quaternary);
  margin-bottom: 4px;
}

a.item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

a.item:hover {
  background: var(--bg-hover);
  border-color: var(--accent-border);
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.2);
}

a.item .host {
  font-size: 13px;
  color: var(--accent);
}

a.item .desc {
  font-size: 12px;
  color: var(--text-tertiary);
  text-align: right;
}

.footer {
  display: flex;
  justify-content: space-between;
  padding: 14px 28px;
  background: var(--bg-tertiary);
  border-top: 1px solid var(--border-subtle);
  font-size: 11px;
  color: var(--text-quaternary);
}

.footer .brand { color: var(--accent-muted); }

@media (max-width: 520px) {
  a.item { flex-direction: column; gap: 2px; }
  a.item .desc { text-align: left; }
}
