/* Global reset (light) */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
:root {
  --bg-gold: #f4c63b;
  --bg-gold2: #e0a90b;
  --coral: #ff6b6b;
  --coral-dark: #ff5252;
  --text: #f5f7f9;
  --muted: #d9d8d0;
  --glass: rgba(255, 255, 255, 0.16);
  --glass-edge: rgba(255, 255, 255, 0.28);
}
:focus { outline: 2px solid #fff; outline-offset: 2px; }

/* Base styling (mobile-first) */
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto;
  color: var(--text);
  background: 
    radial-gradient(circle at 20% -10%, rgba(255, 230, 120, 0.25), transparent 40%),
    linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 60%, #1a1a1a 100%), 
    #0b0b0b;
  min-height: 100%;
  line-height: 1.6;
  padding-bottom: 2rem;
  /* subtle metallic sheen overlay layer via gradient mask */
  background-blend-mode: overlay;
}

/* Subtle ambient glow to hint yellow metallic sheen */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 60% 0%, rgba(255,214,102,0.25), transparent 40%),
              radial-gradient(circle at 0% 100%, rgba(255,120,0,0.15), transparent 40%);
  pointer-events: none;
  filter: saturate(110%);
  z-index: -1;
}

/* Layout containers (glass/frosted panels) */
header, main, footer { width: 100%; }

/* Header / Hero */
header {
  margin: 1rem auto;
  padding: 1.25rem;
  max-width: 1100px;
  border-radius: 14px;
  background: rgba(16,16,16,0.58);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  box-shadow: 0 10px 34px rgba(0,0,0,0.5);
}
header h1 {
  margin: 0 0 .4rem;
  font-size: 1.8rem;
  color: #ffd166; /* yellow/gold headline */
  letter-spacing: .02em;
  text-shadow: 0 2px 6px rgba(0,0,0,.6);
}
header .meta {
  color: #f2e6d9;
  font-size: .9rem;
  opacity: .95;
}

/* Featured image block */
.featured-image {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 6px 22px rgba(0,0,0,.28);
  margin: 0 auto 1rem;
  max-width: 1100px;
}
.featured-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  filter: saturate(1.05);
}

/* Main article (glass panel) */
main {
  display: block;
}
article {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.9rem 1rem 1.2rem;
  border-radius: 12px;
  background: rgba(20,20,20,0.38);
  border: 1px solid rgba(255,255,255,0.20);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 6px 28px rgba(0,0,0,0.35);
  color: #f7f7f7;
}
article p { margin: 1rem 0; color: #efeae0; }
article::first-letter { font-size: 1.2em; }

/* Footer product ad */
footer {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding: 0 1rem;
}
.product-ad {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 1rem;
  border-radius: 12px;
  background: rgba(20,20,20,0.42);
  border: 1px solid rgba(255,255,255,.20);
  backdrop-filter: blur(6px);
}
.product-ad h3 {
  font-size: 1rem;
  color: #ffd166;
  margin: 0;
}
.product-ad a {
  text-decoration: none;
  color: inherit;
}
.product-ad a p {
  margin: 0;
  font-weight: 700;
  color: #fff;
}

/* Call-to-action styles (prominent, accessible) */
.btn {
  display: inline-block;
  padding: .9rem 1.25rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.btn:hover { transform: translateY(-1px); }

/* Coral primary button with neon glow */
.btn-primary {
  background: linear-gradient(135deg, #ff8a00 0%, #ff5a00 100%);
  color: #1a0e04;
  box-shadow: 0 6px 18px rgba(255,90,0,.55);
}
.btn-primary:active { transform: translateY(0); }

/* Subtle secondary button (contrast on dark) */
.btn-secondary {
  background: rgba(255,255,255,.16);
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
}
.btn-secondary:hover { background: rgba(255,255,255,.22); }

/* Accessibility: ensure contrast for body text against glass panels */
@media (min-width: 900px) {
  header h1 { font-size: 2.4rem; }
  article { padding: 1.15rem 1.25rem; }
  .featured-image { margin-bottom: 0; }
}
@media (min-width: 900px) {
  header { display: flex; gap: 1.25rem; align-items: center; padding: 1.6rem; }
  /* keep a light balance between hero and image if needed */
  .featured-image { flex: 1 1 45%; margin: 0; }
  article { flex: 1 1 55%; order: 0; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* Small helper: visually hidden labels for screen readers if needed (not used here, but ready) */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }