/* DisLoPik — Who Am I? page styles
   Simple, flat, no animation/effects — matches a terminal/mono aesthetic */

:root {
  --bg: #0d1013;
  --panel: #12161a;
  --border: #2a3138;
  --text: #d5dbe0;
  --text-dim: #8b96a1;
  --accent: #8c00ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Courier New", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 16px;
  line-height: 1.6;
}

.page {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.page-header {
  border-bottom: 2px solid var(--accent);
  padding-bottom: 18px;
  margin-bottom: 40px;
}

.page-header h1 {
  margin: 0;
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 700;
}

.section {
  margin-bottom: 40px;
}

.section h2 {
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}

.section p {
  margin: 0 0 12px;
}

.section p:last-child {
  margin-bottom: 0;
}

.note {
  color: var(--text-dim);
  font-style: italic;
  font-size: 0.92em;
}

a {
  color: var(--accent);
  text-decoration: underline;
}

a:hover {
  color: #ffffff;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--panel);
}

th, td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

th {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

tr:last-child td {
  border-bottom: none;
}

td:first-child {
  white-space: nowrap;
  font-weight: 700;
}

@media (max-width: 600px) {
  .page {
    padding: 36px 16px 60px;
  }
  .page-header h1 {
    font-size: 1.9rem;
  }
  td:first-child {
    white-space: normal;
  }
}
