:root {
  --bg: #12100e;
  --bg-card: #1c1917;
  --text: #ece7df;
  --text-dim: #a89f93;
  --neon: #ff3d71;
  --gold: #f5b942;
  --max: 720px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.7;
}

h1, h2, h3, .brand, nav, .post-meta, .btn {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 20px 8px;
}

.brand { font-size: 26px; font-weight: 800; text-decoration: none; letter-spacing: 1px; }
.brand-vegas { color: var(--neon); text-shadow: 0 0 18px rgba(255, 61, 113, .45); }
.brand-todd { color: var(--gold); }

nav a {
  color: var(--text-dim);
  text-decoration: none;
  margin-left: 18px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
nav a:hover { color: var(--gold); }

main { max-width: var(--max); margin: 0 auto; padding: 24px 20px 60px; }

.hero { padding: 30px 0 10px; border-bottom: 1px solid #2c2825; margin-bottom: 30px; }
.hero h1 { font-size: 40px; line-height: 1.15; margin: 0 0 12px; }
.hero p { color: var(--text-dim); font-size: 19px; margin: 0; }

.post-list { list-style: none; padding: 0; margin: 0; }
.post-list li {
  background: var(--bg-card);
  border: 1px solid #2c2825;
  border-radius: 10px;
  padding: 22px 24px;
  margin-bottom: 18px;
}
.post-list h2 { margin: 4px 0 8px; font-size: 24px; }
.post-list h2 a { color: var(--text); text-decoration: none; }
.post-list h2 a:hover { color: var(--gold); }
.post-list p { margin: 0; color: var(--text-dim); font-size: 16px; }

.post-meta {
  color: var(--neon);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
}
.post-cat { color: var(--gold); }

.post h1 { font-size: 36px; line-height: 1.2; margin: 8px 0 20px; }
.post a { color: var(--gold); }
.post img { max-width: 100%; border-radius: 8px; }
.post blockquote {
  border-left: 3px solid var(--neon);
  margin: 20px 0;
  padding: 4px 20px;
  color: var(--text-dim);
  font-style: italic;
}

.post-cta {
  margin-top: 44px;
  background: var(--bg-card);
  border: 1px solid #2c2825;
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 18px 24px;
}
.post-cta h3 { margin: 0 0 8px; color: var(--gold); }
.post-cta p { margin: 0; color: var(--text-dim); font-size: 16px; }

.btn {
  display: inline-block;
  background: var(--neon);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 8px;
  margin-top: 16px;
}
.btn:hover { filter: brightness(1.1); }

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 20px 44px;
  border-top: 1px solid #2c2825;
  color: var(--text-dim);
  font-size: 14px;
}
.site-footer a { color: var(--text-dim); }

@media (max-width: 600px) {
  .hero h1 { font-size: 30px; }
  .post h1 { font-size: 28px; }
}
