@charset "UTF-8";

:root {
  --brown-900: #3b2513;
  --brown-700: #6b4a2b;
  --brown-400: #9a714f;
  --text: #e8d8c5;
  --muted: #c6a684;
  --glass: rgba(20,12,12,.65);
  --glass-border: rgba(255,255,255,.25);
  --focus: #ffd34f;
  --cta-start: #6b3b1a;
  --cta-end: #4b2e16;
  --shadow: 0 6px 20px rgba(0,0,0,.25);
}

*,
*::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, "Inter", Arial;
  color: var(--text);
  background-color: #120b15;
  /* purple geometric shapes background */
  background-image:
    conic-gradient(from 180deg at 20% 0%, rgba(128,0,128,.25) 0 25deg, transparent 25deg),
    conic-gradient(from -60deg at 80% 20%, rgba(90,40,180,.25) 0 25deg, transparent 25deg),
    radial-gradient(circle at 15% 15%, rgba(180,120,240,.15) 0 60px, transparent 60px),
    radial-gradient(circle at 80% 60%, rgba(120,60,190,.15) 0 80px, transparent 80px),
    linear-gradient(#0a0a0f, #0a0a0f);
  background-blend-mode: overlay;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

header {
  display: grid;
  place-items: center;
  padding: 1.75rem 1rem;
  margin: 1rem auto;
  max-width: 1000px;
  width: calc(100% - 2rem);
  border-radius: 14px;
  background: rgba(26,12,12,.55);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}
header h1 {
  font-size: 1.75rem;
  line-height: 1.15;
  margin: 0.25rem 0;
  color: #f6efe8;
  letter-spacing: .3px;
}
header .meta {
  font-size: .85rem;
  color: #e2d0ba;
  opacity: .95;
}

main { padding: 1rem; }
article { max-width: 900px; margin: 0 auto; padding: 0; }

.featured-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.15);
  display: block;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  background: rgba(0,0,0,.25);
  margin: 0.25rem 0 1rem;
}

article p {
  color: #e9d6c3;
  line-height: 1.75;
  font-size: 1rem;
  margin: 1rem 0;
}

/* First letter styling for content paragraphs when class exists */
p.content::first-letter {
  font-weight: 800;
  font-size: 2em;
  color: #ffd8a8;
  /* ensure it blends without layout shifts */
  display: inline;
}

footer { padding: 1rem; margin-top: 1rem; }

.product-ad {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .75rem;
  border-radius: 12px;
  background: rgba(22,12,12,.55);
  border: 1px solid rgba(255,255,255,.15);
  margin-bottom: .75rem;
  box-shadow: var(--shadow);
}
.product-ad h3 { font-size: 1.05rem; color: #ffd9a3; margin: 0; }

.product-ad a {
  display: inline-block;
  padding: 0.75rem 1.1rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #6b3b1a, #4b2e16);
  color: #f7efe0;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15);
  transition: transform .15s ease;
}
.product-ad a:hover { transform: translateY(-1px); }
.product-ad a:focus { outline: 3px solid var(--focus); outline-offset: 2px; }

footer p { color: #cdb79a; font-size: .95rem; margin: 0; text-align: left; }

@media (min-width: 600px) {
  header { padding: 2rem; }
  header h1 { font-size: 2rem; }
  article p { font-size: 1.05rem; }
}
@media (min-width: 900px) {
  body { background-attachment: fixed; }
  main { padding: 2rem 2rem; }
  .container { padding: 0 1rem; }
  header { border-radius: 16px; padding: 2.25rem; }
  article { column-count: 1; padding: 0 1rem; }
}