/* Minimal reset and cyberpunk olive waves theme */
/* Mobile-first, single stylesheet */

:root{
  --olive: #5b6b2b;
  --olive-dark: #3b4f1a;
  --olive-soft: #748a2a;
  --brown: #8b5a2b;
  --brown-dark: #6b3a0a;
  --bg: #0b0b0b;
  --text: #e8e0cc;
  --muted: #d4ccb0;
  --glass: rgba(12,10,8,.55);
  --glass-2: rgba(20,14,9,.45);
  --shadow: 0 8px 20px rgba(0,0,0,.4);
  --focus: 2px solid #ffd89a;
  --focus-shadow: 0 0 0 4px rgba(183, 137, 60, .25);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

/* Olive waves background with frosted glass layers for content */
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 15% 60%, rgba(120, 140, 70, .25) 0 20%, transparent 21%),
    radial-gradient(circle at 85% 30%, rgba(60, 90, 40, .25) 0 20%, transparent 21%),
    linear-gradient(135deg, #2b2e1d 0%, #3a3410 60%, #1b170b 100%);
  background-size: cover;
  background-attachment: scroll;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* Layout container sizing */
header, main, footer {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Frosted glass sections */
.glass {
  background: var(--glass);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  box-shadow: var(--shadow);
}

/* Header (title) */
header {
  margin: 1.25rem auto;
  padding: 1.25rem;
  text-align: left;
}
header h1 {
  margin: 0 0 .25rem;
  font-family: ui-sans-serif, system-ui;
  font-size: 1.65rem;
  letter-spacing: .4px;
  color: #e8e0cc;
  text-shadow: 0 0 6px rgba(170, 120, 60, .65);
}
header .meta {
  margin: 0;
  font-size: .92rem;
  color: #d9c9a5;
}

/* Main content area as frosted glass article container */
main {
  padding: 0 1rem;
}
article {
  margin: 1.25rem 0 2rem;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(10,8,6,.45);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.featured-image { width: 100%; overflow: hidden; border-radius: 8px; margin-bottom: .75rem; }
.featured-image img { width: 100%; height: auto; display: block; border-radius: 8px; }

/* Article typography */
article p { color: #f3ebd0; margin: .9rem 0; font-size: 1rem; }
article p strong { color: #ffd89a; }

/* Footer + ad section styled as CTA-friendly block */
footer {
  margin: 2rem auto 3rem;
  padding: 1rem;
  text-align: center;
}
.product-ad {
  text-align: left;
  margin-bottom: .75rem;
}
.product-ad h3 {
  font-size: 1.05rem;
  margin: 0 0 .4rem;
  color: #e8e0cc;
}
.product-ad a {
  display: inline-block;
  padding: .75rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #9a6b2e 0%, #6b3a0a 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(0,0,0,.5);
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-ad a:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(0,0,0,.6); }
.product-ad a:focus-visible { outline: none; box-shadow: 0 0 0 4px rgba(183, 137, 60, .9); }

/* Fine print */
footer p { margin: .5rem 0 0; font-size: .9rem; color: #d9c9a5; }

/* Links, buttons and focus accessibility */
a { color: #cbd0a3; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Focus styles for keyboard users */
:focus-visible {
  outline: none;
  box-shadow: var(--focus-shadow);
  border: var(--focus);
  border-radius: 6px;
}

/* Responsive tweaks */
@media (min-width: 700px) {
  header { padding: 1.75rem; }
  header h1 { font-size: 2rem; }
  article { font-size: 1.025rem; padding: 1.25rem; }
  .product-ad a { padding: .9rem 1.4rem; }
}
@media (min-width: 1024px) {
  body { background-attachment: fixed; }
  header { padding: 1.75rem 2rem; }
  article { padding: 1.4rem 1.25rem; }
}
