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

:root {
  --color-bg: #ffffff;
  --color-surface: #f7f7f8;
  --color-border: #e2e2e6;
  --color-text: #1a1a1f;
  --color-text-muted: #6b6b78;
  --color-accent: #5046e5;
  --color-accent-dim: rgba(80, 70, 229, 0.08);
  --color-value: #5046e5;
  --radius: 8px;
  --font-mono: "SF Mono", "Fira Code", "JetBrains Mono", monospace;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

header {
  margin-bottom: 2rem;
}

header h1 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

header p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.env-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.15em 0.5em;
  border-radius: 4px;
  background: var(--color-accent-dim);
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.config-section {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.config-section h2 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.config-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.config-table tr {
  border-bottom: 1px solid var(--color-border);
}

.config-table tr:last-child {
  border-bottom: none;
}

.config-table td {
  padding: 0.45rem 0;
}

.config-table td:first-child {
  color: var(--color-text-muted);
  white-space: nowrap;
  padding-right: 1.5rem;
  width: 1%;
}

.config-table td:last-child {
  color: var(--color-value);
  word-break: break-all;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1.5rem;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: center;
}
