/* Minimal reset */
*,
*:before,
*:after {
  box-sizing: border-box;
}
html, body {
  height: 100%;
}
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #eae1bd;
  /* Olive radial gradient background with a hacker-gold accent vibe */
  background: radial-gradient(circle at 20% 0%, rgba(85,110,40,.50) 0%, rgba(40,60,20,.75) 40%, rgba(16,28,6,.95) 100%), #0b0b0b;
  background-attachment: fixed;
  line-height: 1.75;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Frosted glass header / hero feel with neon-gold hints */
header {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 1.25rem;
  text-align: center;
  background: rgba(10, 20, 10, 0.55);
  border-bottom: 1px solid rgba(240, 210, 120, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
header h1 {
  margin: 0.25rem 0;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 2rem;
  letter-spacing: .5px;
  color: #f5f1c2;
  text-shadow: 0 0 8px rgba(255, 223, 92, 0.9);
}
header .meta {
  font-size: .92rem;
  color: #e5d77a;
  opacity: .95;
}

/* Layout: mobile-first, center content, breathable spacing */
main {
  padding: 1rem;
  display: grid;
  place-items: center;
  gap: 1.25rem;
  min-height: calc(100vh - 170px);
}
article {
  width: 100%;
  max-width: 720px;
  padding: 1rem;
  border-radius: 14px;
  background: rgba(12, 28, 12, 0.58); /* frosted glass body */
  border: 1px solid rgba(240, 210, 120, 0.35);
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
  color: #e8e2bd;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.featured-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
article p {
  margin: 0.75rem 0;
  color: #e8e2bd;
}
.product-ad {
  margin: 1rem 0 0;
  padding: .75rem;
  border-radius: 12px;
  background: rgba(4, 15, 5, 0.42);
  border: 1px solid rgba(230, 190, 40, 0.5);
  display: grid;
  gap: .5rem;
  align-items: center;
  justify-items: center;
}
.product-ad h3 {
  margin: 0;
  font-size: 1.05rem;
  color: #f0e58a;
}
.product-ad a {
  display: inline-block;
  text-decoration: none;
}
.product-ad a p {
  margin: 0;
}
.product-ad a {
  padding: .75rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,223,92,1) 0%, rgba(216,176,0,1) 100%);
  color: #141200;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(255,210,110,0.9);
  box-shadow: 0 6px 14px rgba(216,176,0,0.6);
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-ad a:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(216,176,0,0.75);
}
.product-ad a:focus-visible {
  outline: 3px solid #ffd54a;
  outline-offset: 2px;
}
p.content:first-letter {
  font-weight: 700;
  font-size: 2em;
  /* ensure it stands out but remains readable on dark olive bg */
  color: inherit;
  display: inline;
}

/* Accessibility: focus styles for links and interactive elements */
a:focus-visible,
button:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 3px solid #ffd54a;
  outline-offset: 2px;
  border-radius: 6px;
}

/* Responsive adjustments */
@media (min-width: 600px) {
  header h1 { font-size: 2.5rem; }
  article { padding: 1.25rem 1.75rem; }
}
@media (min-width: 900px) {
  main { padding: 2rem 2rem; }
  article { font-size: 1.02rem; }
}