/* daren.gg - dead-simple static site. No JS, no fonts to download,
   no modern-only CSS. One readable column that works everywhere. */

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  max-width: none;
  margin: 0;
  padding: 16px 32px 32px;
  line-height: 1.55;
  color: #1a1a1a;
  background: #ffffff;
  font-size: 16px;
}

/* Two columns: text on the left, media (video + screenshots) on the
   right, each ~half the page. Stacks to one column on old browsers
   (no flex) and on narrow screens. */
.cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 32px;
}
.col-left  { -webkit-box-flex: 1; -ms-flex: 1 1 340px; flex: 1 1 340px; }
.col-right { -webkit-box-flex: 1; -ms-flex: 1 1 340px; flex: 1 1 340px; }
.col-left h1 { font-size: 30px; }
.col-right video,
.col-right img {
  width: 100%;
  display: block;
  margin: 0 0 14px;
}

a { color: #1a56db; }

img { max-width: 100%; height: auto; }

hr {
  border: 0;
  border-top: 1px solid #ddd;
  margin: 16px 0;
}

h1 { font-size: 28px; line-height: 1.2; margin: 0 0 8px; }
h2 { font-size: 20px; margin: 20px 0 6px; }
h3 { font-size: 17px; margin: 16px 0 4px; }

p, ul, ol { margin: 8px 0; }
ul { padding-left: 22px; }

/* Header */
.brand {
  font-size: 20px;
  font-weight: bold;
  color: #1a1a1a;
  text-decoration: none;
}
.brand img { width: 24px; height: 24px; vertical-align: middle; margin-right: 6px; }
nav { margin-bottom: 8px; }
nav a { margin-right: 16px; font-size: 15px; }

/* Screenshots */
.shot { border: 1px solid #ddd; border-radius: 6px; margin: 16px 0; }

/* Muted small text */
.muted { color: #666; font-size: 15px; }

/* Footer */
footer { margin-top: 40px; padding-top: 20px; border-top: 1px solid #ddd; font-size: 14px; color: #666; }
footer a { color: #666; margin-right: 16px; }
