:root {
  --bg: #0b0b12;
  --bg-2: #141421;
  --text: #e9e7f0;
  --muted: #b8b4c2;
  --accent: #ff2a92;
  --accent-2: #ffd1bd;
  --glass: rgba(255,255,255,.08);
  --glass-strong: rgba(255,255,255,.18);
  --shadow: 0 8px 28px rgba(0,0,0,.25);
  --ring: 0 0 0 3px rgba(255,42,146,.55);
  --radius: 14px;
}
html, body, header, nav, main, article, footer, aside { box-sizing: border-box; }
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Inter, Arial;
  background: linear-gradient(135deg, rgba(255,135,170,.15) 0%, rgba(255,168,214,.10) 40%, rgba(255,200,170,.0) 100%),
              radial-gradient(circle at 20% -10%, rgba(255,120,190,.25), transparent 40%),
              linear-gradient(#0b0b0f, #14141f 40%, #0b0b0f);
  background-blend-mode: overlay;
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100%;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,.04) 0 2px, transparent 2px 4px);
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}
nav, aside { padding: 0.5rem 1rem; }
header { padding: 1rem 1rem 0.75rem; text-align: center; position: relative; z-index: 1; }
header h1 { margin: .25rem 0 .25rem; font-size: clamp(1.4rem, 5vw, 2.2rem); line-height: 1.15; color: var(--text); letter-spacing: .2px; }
header .meta { color: var(--muted); font-size: .92rem; }

main { padding: 0 1rem 2rem; position: relative; z-index: 1; }
.container { max-width: clamp(320px, 92vw, 1100px); margin-inline: auto; }

article { margin: 0 auto; padding: 1rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.25); border-radius: 14px; max-width: 860px; box-shadow: var(--shadow); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
@supports not (backdrop-filter: blur(12px)) {
  article { background: rgba(255,255,255,.14); }
}
.featured-image, .image-frame { margin: 0 auto 1rem; display: block; }
.featured-image { border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,.25); box-shadow: 0 6px 20px rgba(0,0,0,.25); max-width: 100%; }
.featured-image img { width: 100%; height: auto; display: block; }
.image-frame { aspect-ratio: 16/9; border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,.25); box-shadow: 0 8px 22px rgba(0,0,0,.25); }
.image-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

.content { padding: 0.75rem 0; color: var(--text); }

h2 { font-size: clamp(1.15rem, 3vw, 1.4rem); margin: 1rem 0 .5rem; color: var(--text); }

p, li { font-size: clamp(0.95rem, 2.6vw, 1rem); line-height: 1.55; color: var(--text); }

ul, ol { padding-inline-start: 1.25rem; }

.card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.25); border-radius: 14px; padding: 1rem; box-shadow: 0 8px 28px rgba(0,0,0,.25); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
@supports not (backdrop-filter: blur(12px)) { .card { background: rgba(255,255,255,.14); } }

.grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.product-ad { padding: 1rem; text-align: center; border-radius: 12px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.25); box-shadow: 0 6px 20px rgba(0,0,0,.25); margin: 0.5rem 0; }
.product-ad a { color: var(--text); text-decoration: none; display: inline-block; padding: .5rem 1rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.08); }
.product-ad a:hover { text-decoration: underline; }

a, button, .btn, .cta { cursor: pointer; color: var(--accent); text-decoration: none; outline: none; }
a:hover, a:focus-visible { text-decoration: underline; color: #ff7bdc; }
.btn { display: inline-block; padding: .75rem 1.25rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.4); color: #fff; background: linear-gradient(135deg, var(--accent) 0%, #ff6bd6 60%, #ff7bd6 100%); font-weight: 600; box-shadow: 0 4px 14px rgba(255,42,146,.45); transition: transform .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(255,42,146,.5); }
.btn:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(255,42,146,.55); }
.btn--outline { background: transparent; color: var(--text); border: 1px solid rgba(255,255,255,.6); padding: .75rem 1.25rem; }
.btn + .btn { margin-left: .5rem; }

.cta { display:inline-block; }

.tag { display:inline-block; padding:.25em .6em; font-size:.75rem; border-radius:999px; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.08); color: var(--text); }

footer { padding: 1.5rem 1rem 2rem; text-align: center; color: var(--muted); }

@media (max-width: 860px) {
  header { padding-top: 0.75rem; }
  article { padding: 0.75rem; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; transform: none !important; }
}
@media print {
  body { background: #fff; color: #000; }
  a { text-decoration: underline; }
}