/* dispaisy / memory log - brutalist theme */

:root {
  --bg: #0a0a0a;
  --text: #e0e0e0;
  --muted: #888;
  --border: #444;
  --accent: #666;
  --selection: #333;
}

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

html {
  font-size: 15px;
  background: var(--bg);
  color: var(--text);
}

body {
  font-family: "Courier New", Courier, "Liberation Mono", Consolas, "SFMono-Regular", monospace;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  min-height: 100vh;
}

::selection {
  background: var(--selection);
  color: #fff;
}

.terminal-bar {
  border: 1px solid var(--border);
  margin-bottom: 0;
}

.terminal-bar .title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #111;
  border-bottom: 1px solid var(--border);
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.terminal-bar .dots {
  display: flex;
  gap: 0.4rem;
}

.terminal-bar .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
}

.terminal-bar .title-label {
  font-weight: bold;
  color: var(--text);
}

.terminal-bar .content-area {
  padding: 1.25rem 1rem;
}

h1 {
  font-size: 1.25rem;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1 .prompt {
  color: var(--muted);
}

h1 .cmd {
  color: var(--text);
}

nav {
  border: 1px solid var(--border);
  border-top: none;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  margin-right: 0.75rem;
  font-size: 0.85rem;
}

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

section {
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}

.section-title {
  background: #111;
  border-bottom: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.section-body {
  padding: 0.75rem 1rem;
}

.section-body p {
  margin-bottom: 0.5rem;
}

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

.net-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.net-table td {
  padding: 0.2rem 0.4rem;
  vertical-align: top;
}

.net-table td:first-child {
  color: var(--muted);
  width: 7rem;
}

.net-table tr.indent td:first-child {
  padding-left: 1.5rem;
}

.artist-list {
  list-style: none;
  font-size: 0.85rem;
}

.artist-list li {
  padding: 0.25rem 0;
  border-bottom: 1px solid #1a1a1a;
}

.artist-list li:last-child {
  border-bottom: none;
}

.artist-list .artist {
  color: var(--text);
}

.artist-list .releases {
  color: var(--muted);
  font-size: 0.8rem;
}

.artist-list .stat {
  float: right;
  color: var(--muted);
  font-size: 0.75rem;
}

.log-entry {
  display: flex;
  gap: 0.75rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid #1a1a1a;
  font-size: 0.85rem;
}

.log-entry:last-child {
  border-bottom: none;
}

.log-entry .timestamp {
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}

.log-entry .message {
  color: var(--text);
}

.contact-email {
  color: var(--accent);
  font-weight: bold;
  font-size: 0.9rem;
}

.prompt-line {
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 2rem;
}

@media (max-width: 540px) {
  body {
    padding: 1rem 0.75rem 3rem;
  }

  .net-table {
    font-size: 0.78rem;
  }

  .net-table td:first-child {
    width: 5.5rem;
  }

  .log-entry {
    flex-direction: column;
    gap: 0.15rem;
  }

  .artist-list .stat {
    float: none;
    display: block;
  }
}
