/* Reset & base */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
:root {
  --bg: #0b0b0f;
  --maroon: #4b0f17;
  --orange: #ff7a18;
  --orange-dark: #e56a0d;
  --glass: rgba(255,255,255,.08);
  --glass-border: rgba(255,255,255,.18);
  --text: #f5f5f5;
  --muted: #cbd5e1;
  --shadow: 0 8px 28px rgba(0,0,0,.35);
  --focus: #ffd36b;
}
html { font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI"; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(circle at 15% 10%, rgba(255,122,24,.25) 0 60px, transparent 61px),
    radial-gradient(circle at 80% 20%, rgba(255,140,0,.22) 0 90px, transparent 91px),
    radial-gradient(circle at 50% 75%, rgba(255,200,0,.15) 0 120px, transparent 121px),
    conic-gradient(from 90deg at 60% 40%, rgba(76,0,0,.25) 0 60deg, rgba(0,0,0,0) 60deg 120deg, rgba(76,0,0,.25) 120deg 180deg, rgba(0,0,0,0) 180deg 240deg, rgba(76,0,0,.25) 240deg 300deg, rgba(0,0,0,0) 300deg 360deg);
  background-size: cover;
  background-attachment: fixed;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

/* Base typography */
h1, h2, h3 { margin: 0 0 .5rem; font-weight: 700; }
p { margin: 0 0 1rem; color: rgba(245,245,245,.95); }

/* Layout & hero (mobile-first) */
header {
  padding: 1.75rem 1rem;
  text-align: left;
  max-width: 1100px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(11,6,7,.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 0 0 18px 18px;
  z-index: 5;
  position: sticky;
  top: 0;
}
header h1 { font-size: 1.8rem; line-height: 1.15; }
header .meta { color: #e9e9e9; font-size: .92rem; opacity: .95; }

/* Subtle hero glow on wide screens */
@media (min-width: 700px) {
  header { padding: 2.5rem 2rem; border-radius: 0 0 22px 22px; }
  header h1 { font-size: 2.6rem; }
}

/* Main content & frosted glass article */
main { padding: 1rem; }
article {
  max-width: 860px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: var(--shadow);
}
.featured-image { margin: 1rem 0; border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,.18); }
.featured-image img { width: 100%; height: auto; display: block; }

/* Narrative text readability */
article p { color: #f9f9f9; opacity: .95; }

/* Footer with frosted card / CTA */
footer {
  padding: 1.75rem 1rem;
  text-align: center;
  background: rgba(11,6,7,.55);
  border-top: 1px solid rgba(255,255,255,.15);
}
.product-ad {
  display: inline-block;
  padding: .75rem;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  margin: 0 auto 1rem;
  text-align: left;
}
.product-ad h3 { margin: 0 0 .5rem; font-size: .95rem; }
.product-ad a { text-decoration: none; display: inline-block; }
.product-ad a p {
  margin: 0;
  padding: .55rem 1rem;
  border-radius: 6px;
  color: #111;
  font-weight: 700;
  background: var(--orange);
}
footer p { margin: .75rem 0 0; color: #e9e9e9; font-size: .92rem; }

/* Focus styles for accessibility */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}
a:hover, button:hover { opacity: .97; }

/* Responsive refinements (still mobile-first) */
@media (min-width: 600px) {
  footer .product-ad { display: inline-block; min-width: 260px; margin: 0 .5rem; vertical-align: top; }
}
@media (min-width: 900px) {
  article { padding: 1.5rem 1.75rem; }
  p { font-size: 1.02rem; }
}