/* Base Tomorrow-like colors */
:root {
  --bg: #1d1f21;        /* background */
  --bg-alt: #282a2e;    /* blocks / code */
  --fg: #c5c8c6;        /* normal text */
  --fg-soft: #969896;   /* muted text */
  --accent-blue: #81a2be;
  --accent-green: #b5bd68;
  --accent-orange: #de935f;
  --accent-red: #cc6666;
  --accent-purple: #b294bb;
  --accent-yellow: #f0c674;
  --border: #373b41;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

/* Centered content container like a thread */
.page {
  max-width: 1400px;
  margin: 32px auto;
  padding: 16px 20px 40px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
}

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

h1, h2, h3, h4, h5, h6 {
  color: var(--accent-red);
  /* margin: 1.2em 0 0.4em;  */
  font-weight: 600;
}


.note {
  color: var(--accent-yellow)
}

p {
  margin: 0.5em 0;
}

/* Lists */
ul, ol {
  padding-left: 1.5em;
}

/* Code blocks (fenced Markdown) */
pre {
  background: #1c1e22;
  border: 1px solid var(--border);
  padding: 10px 12px;
  overflow-x: auto;
  font-size: 0.9em;
  border-radius: 2px;
}

code {
  background: #1c1e22;
  padding: 2px 4px;
  border-radius: 2px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, "Courier New", monospace;
}

pre code {
  background: transparent;
  padding: 0;
}

/* Blockquotes */
blockquote {
  border-left: 3px solid var(--accent-green);
  margin: 0.8em 0;
  padding: 0.4em 0 0.4em 0.8em;
  color: var(--fg-soft);
  background: rgba(0, 0, 0, 0.25);
}

/* Tables */
table {
  border-collapse: collapse;
  width: 100%;
  margin: 1em 0;
  font-size: 0.95em;
}
th, td {
  border: 1px solid var(--border);
  padding: 6px 8px;
}
th {
  background: #22252a;
  color: var(--accent-yellow);
  text-align: left;
}
tr:nth-child(even) td {
  background: #22252a;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  border: 1px solid var(--border);
}

/* Horizontal rule */
hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 1.5em 0;
}

/* Two-column layout for Released / In Development */
.two-columns {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.column {
  flex: 1 1 0;
  min-width: 0;
}

/* vertical line between sections */
.column-left {
  border-right: 1px solid var(--border);
  padding-right: 12px;  /* keep inner space before the border */
  margin-right: 0;      /* remove this so the total isn’t skewed */
}

.column-right {
  padding-left: 0px;   /* matches the inner spacing of the left column */
}

.column > h1 {
  /*margin-top: 0px;              /* optional: pulls them up a bit */
  text-align: center;
  text-decoration: underline;
}


/* MOBILE: stack columns */
@media (max-width: 768px) {
  .two-columns {
    flex-direction: column;
  }

  .column-left {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    border-bottom: 1px solid var(--border); /* horizontal divider instead */
    padding-bottom: 12px;
    margin-bottom: 12px;
  }

  .column-right {
    padding-left: 0;
  }
}
