:root {
  --bg: white;
  --window: #15151d;
  --border: #3a3a55;
  --accent: #b38cff;
  --text: #e8e8f0;
  --muted: #a0a0b3;
  --highlight: #ffcc66;
}

body {
  margin: 0;
  font-family: "Inconsolata", monospace;
  background: radial-gradient(circle at top, #1a1a2a, var(--bg));
  color: var(--text);
}

/* Links */
a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--highlight);
  text-shadow: 0 0 6px rgba(179, 140, 255, 0.6);
}

/* Layout */
.wrapper {
  padding: 10px;
}

.holy-grail-grid {
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  gap: 12px;
}

/* Window styling */
.window {
  background: linear-gradient(180deg, #1b1b25, var(--window));
  border: 2px solid var(--border);
  box-shadow: 4px 4px 0 #000;
  margin-bottom: 12px;
}

/* Title bars */
.title-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #2a2a3a, #1a1a2a);
  border-bottom: 2px solid var(--border);
  padding: 4px 6px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

/* Fake OS buttons */
.close,
.resize {
  width: 12px;
  height: 12px;
  border: 1px solid var(--border);
  display: inline-block;
}

.close {
  background: #ff5f56;
}

.resize {
  background: #ffbd2e;
}

/* Window content */
.window-content {
  padding: 10px;
  color: var(--text);
}

/* Sidebar tweaks */
.sidebar {
  position: sticky;
  top: 10px;
}

/* Optional small text */
.muted {
  color: var(--muted);
  font-size: 12px;
}