:root {
  --bg: #0f1117;
  --card: #161a22;
  --text: #e6e6e6;
  --muted: #9aa0a6;
  --accent: #7aa2f7;
}

* {
  box-sizing: border-box;
}

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

header {
  max-width: 900px;
  margin: 3rem auto 2rem;
  padding: 0 1rem;
}

header h1 {
  margin: 0;
  font-size: 2.2rem;
}

header p {
  color: var(--muted);
  margin-top: 0.5rem;
}

main {
  max-width: 900px;
  margin: auto;
  padding: 0 1rem;
}

.entry {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.entry h2 {
  margin-top: 0;
  color: var(--accent);
}

.date {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.entry img,
.entry video {
  width: 100%;
  border-radius: 8px;
  margin: 1rem 0;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--muted);
}

footer a {
  color: var(--accent);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
