@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Barlow:wght@400;500;600&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: #0a0a0a;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

a {
  color: #E5FF00;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  max-width: 900px;
  margin: 0 auto;
}

.site-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 2px;
}
.site-name:hover {
  color: #E5FF00;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 24px;
}
nav a {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
}
nav a:hover {
  color: #E5FF00;
  text-decoration: none;
}

main {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px 60px;
}

/* Homepage */
.page-hero {
  padding: 60px 0 40px;
}
.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 56px;
  text-transform: uppercase;
  line-height: 1.1;
  color: #E5FF00;
}
.page-hero p {
  margin-top: 16px;
  font-size: 20px;
  color: #aaa;
}

.post-list {
  list-style: none;
}
.post-list li {
  border-bottom: 1px solid #222;
}
.post-list li:first-child {
  border-top: 1px solid #222;
}
.post-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  color: #fff;
  text-decoration: none;
  transition: background 0.15s;
}
.post-list a:hover {
  color: #E5FF00;
}
.post-list .post-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  flex: 1;
}
.post-list .post-date {
  font-size: 14px;
  color: #666;
  white-space: nowrap;
  margin-left: 24px;
  font-weight: 500;
}

/* Post page */
.post-hero {
  background: #E5FF00;
  color: #0a0a0a;
  padding: 60px 32px;
  margin: 0 -32px;
  margin-bottom: 40px;
}
.post-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1.05;
  max-width: 640px;
}

.post-body {
  max-width: 640px;
}
.post-body .meta {
  font-size: 14px;
  color: #666;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.post-body p {
  margin-bottom: 20px;
}
.post-body h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 32px;
  text-transform: uppercase;
  margin: 40px 0 16px;
  color: #E5FF00;
}
.post-body strong {
  color: #E5FF00;
}
.post-body .cta {
  background: #E5FF00;
  color: #0a0a0a;
  padding: 20px 24px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 48px;
  letter-spacing: 1px;
}

/* About page */
.about-content {
  max-width: 640px;
}
.about-content img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 32px;
}
.about-content h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 48px;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #E5FF00;
}
.about-content p {
  margin-bottom: 20px;
}
.about-content .contact-links {
  margin-top: 32px;
}
.about-content .contact-links a {
  display: inline-block;
  background: #E5FF00;
  color: #0a0a0a;
  padding: 12px 24px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
  margin-right: 12px;
  margin-bottom: 12px;
}
.about-content .contact-links a:hover {
  text-decoration: none;
  opacity: 0.85;
}

footer {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 32px;
  border-top: 1px solid #222;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
}
footer a {
  color: #E5FF00;
}

@media (max-width: 600px) {
  .page-hero h1 { font-size: 36px; }
  .post-hero h1 { font-size: 34px; }
  .post-hero { padding: 40px 24px; margin: 0 -24px; margin-bottom: 32px; }
  .post-list .post-title { font-size: 22px; }
  header { padding: 20px 20px; }
  main { padding: 0 20px 40px; }
  footer { padding: 32px 20px; }
}
