:root {
  --bg: #fcfaf8; /* Warm off-white */
  --text: #111827; /* Deep charcoal */
  --accent: #4f46e5; /* Indigo */
  --muted: #6b7280; /* Medium gray */
  --link-hover: #4338ca; /* Darker Indigo */
  --border: #e5e7eb; /* Soft border */
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  -webkit-font-smoothing: antialiased;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 80px 20px;
  line-height: 1.5;
}

.container {
  width: 100%;
  max-width: 520px; /* Slightly wider for descriptions */
  text-align: left; /* Modern portals often feel better left-aligned when using descriptions */
}

header {
  text-align: center;
  margin-bottom: 80px;
}

.site-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text);
  text-transform: lowercase; /* Modern minimalist feel */
}

.site-title::after {
  content: ".";
  color: var(--accent);
}

.menu {
  list-style: none;
  padding: 0;
  margin: 30px 0 60px 0;
}

.category-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}

.menu-item {
  margin: 24px 0;
}

.menu-link {
  color: var(--text);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
  padding: 8px 12px;
  margin-left: -12px;
  border-radius: 8px;
}

.menu-link:hover {
  background: #f3f4f6;
  color: var(--accent);
}

.label-container {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 600;
}

.hotkey {
  color: var(--accent);
  margin-right: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-weight: 700;
  font-size: 0.9rem;
  background: #eff6ff;
  padding: 2px 6px;
  border-radius: 4px;
  min-width: 24px;
  text-align: center;
}

.description {
  margin-top: 4px;
  margin-left: 36px; /* Align with label start after hotkey */
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.4;
}

.credits {
  text-align: center;
  margin-top: 40px;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--muted);
  text-transform: uppercase;
}

@media (max-width: 480px) {
  body {
    justify-content: flex-start;
    padding-top: 40px;
  }
  
  .container {
    padding: 0 10px;
  }
}
