/* Minimal reset and mobile-first base */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  padding: 0;
  color: #f7efe9;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  line-height: 1.65;
  background: radial-gradient(circle at 20% -10%, rgba(120,60,20,0.35) 0%, rgba(120,60,20,0) 40%),
              radial-gradient(circle at 90% 0%, rgba(60,20,10,0.45) 0%, rgba(60,20,10,0) 40%),
              linear-gradient(135deg, #2b180e 0%, #3a1f15 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: -20% auto auto -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle at 40% 40%, rgba(140,70,40,0.6), rgba(140,70,40,0) 60%),
              radial-gradient(circle at 70% 70%, rgba(90,30,20,0.45), rgba(90,30,20,0) 60%);
  filter: blur(72px);
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}
header, main, footer { position: relative; z-index: 1; }

/* Layout and frosted glass feel for content sections */
header {
  padding: 1.25rem;
  margin: 0;
  background: rgba(18, 7, 7, 0.65);
  border-bottom: 1px solid rgba(255, 0, 0, 0.25);
  backdrop-filter: saturate(1.2) blur(8px);
  -webkit-backdrop-filter: saturate(1.2) blur(8px);
}
header h1 {
  font-size: 1.6rem;
  line-height: 1.2;
  color: #ffdada;
  margin: 0 0 0.25rem;
  text-shadow: 0 0 6px rgba(255,0,0,0.6);
}
header .meta {
  font-size: 0.92rem;
  color: #ffd8d8;
  opacity: 0.95;
}
main {
  display: grid;
  place-items: center;
  padding: 1rem;
}
article {
  width: min(860px, 92vw);
  padding: 1.25rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.featured-image {
  margin: 0 0 1rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.2);
}
.featured-image img { width: 100%; height: auto; display: block; }
article p { color: #f7efe9; margin: 0.75rem 0; }
article p + p { margin-top: 0.25rem; }

footer {
  padding: 1rem;
  text-align: center;
  margin-top: 1rem;
}
.product-ad {
  display: inline-block;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(20,6,6,0.65);
  border: 1px solid rgba(255,0,0,0.4);
  margin-bottom: 0.75rem;
}
.product-ad h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: #ffdada;
}
.product-ad a {
  text-decoration: none;
  display: inline-block;
  padding: 0.75rem 1.15rem;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(135deg, #ff3b3b 0%, #d92525 100%);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}
.product-ad a:hover { transform: translateY(-1px); filter: brightness(1.05); }
.product-ad a:focus-visible {
  outline: 3px solid #ffb4b4;
  outline-offset: 2px;
}
footer p { color: #e8d7ce; font-size: 0.9rem; }

a, a:visited {
  color: #ffb5b5;
}
a:hover { color: #ffd2d2; }

/* Focus for accessibility on all interactive elements that may be used as CTAs */
:focus-visible {
  outline: 3px solid #ff6b6b;
  outline-offset: 2px;
}
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #ff6b6b;
  outline-offset: 2px;
}

/* Responsive tweaks: larger typography and tighter content on bigger screens */
@media (min-width: 600px) {
  header h1 { font-size: 2rem; }
  article { padding: 1.75rem; }
}
@media (min-width: 900px) {
  main { padding: 2rem 0; }
  article { padding: 2rem; }
}