:root {
  --bg: #0b0b0f;
  --bg-2: #141421;
  --text: #e8e8e8;
  --muted: #b5b5b5;
  --accent: #e5392e;      /* scarlet */
  --accent-2: #b87333;    /* copper */
  --card: rgba(255,255,255,0.08);
  --card-border: rgba(255,255,255,0.25);
  --shadow: 0 8px 28px rgba(0,0,0,.4);
  --radius: 14px;
  --radius-sm: 10px;
  --focus: 2px solid var(--accent);
}

*,
*::before,
*::after { box-sizing: border-box; }

html, body { height: 100%; }

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--text);
  background: 
    linear-gradient(135deg, rgba(60,0,0,.8), rgba(0,0,0,.8) 60%, rgba(60,0,0,.8)),
    radial-gradient(circle at 20% 0%, rgba(255,60,60,.15), transparent 40%),
    repeating-linear-gradient(to bottom, rgba(255,255,255,.04) 0 1px, transparent 1px 3px);
  background-blend-mode: overlay, overlay, normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }

a:focus-visible, button:focus-visible { outline: var(--focus); outline-offset: 2px; border-radius: 6px; }

img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: clamp(320px, 90vw, 1100px);
  margin-inline: auto;
  padding-inline: 1rem;
}

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

.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

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

.image-frame {
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 8px 22px rgba(0,0,0,.35);
  background: #000;
}
.image-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

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

.header, .footer, .main, aside, article, nav {
  display: block;
}

header, footer, aside {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@supports not (backdrop-filter: blur(12px)) {
  header, footer, aside { background: rgba(255,255,255,.22); }
}

header {
  text-align: center;
  padding: 1.25rem;
  margin: 1rem auto;
}

header h1 {
  margin: .25rem 0 .5rem;
  font-size: clamp(1.75rem, 2.5vw + 1rem, 3.5rem);
  line-height: 1.04;
  letter-spacing: .2px;
  text-shadow: 0 4px 20px rgba(229,57,46,.25);
}

header .meta {
  font-size: clamp(.8rem, .8vw + .4rem, 1rem);
  color: var(--muted);
  margin-bottom: .5rem;
}

nav a {
  display: inline-block;
  padding: .5rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  background: rgba(0,0,0,.25);
  transition: transform .2s ease, background .2s ease;
}
nav a:hover { background: rgba(0,0,0,.35); transform: translateY(-1px); }
nav a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

main { padding: 1rem 0; }

.featured-image { padding: .25rem 0 0; }

article { display: block; }

h2 {
  font-size: clamp(1.4rem, 1.2vw + 1.2rem, 2.4rem);
  margin: .75rem 0 .4rem;
  color: #fff;
  letter-spacing: .2px;
}

p { color: #e9e9e9; margin: .7rem 0; }

blockquote {
  margin: .75rem 0;
  padding: .75rem 1rem;
  border-left: 3px solid var(--accent);
  background: rgba(0,0,0,.18);
  border-radius: 6px;
  color: #fff;
  font-style: italic;
}

ul { padding-left: 1.25rem; margin: .6rem 0; }
li { margin: .25rem 0; }

.product-ad {
  display: block;
  text-align: center;
  padding: .6rem;
  border-radius: 12px;
  margin: .5rem 0;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  transition: transform .2s ease;
}
.product-ad a { color: #fff; display: block; padding: .6rem; }
.product-ad:hover { transform: translateY(-1px); }

footer { padding: 1rem; margin: 1rem 0; text-align: center; }

a, button, .btn, .cta {
  transition: background .2s ease, color .2s ease, transform .2s ease;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
  background: linear-gradient(to bottom, rgba(229,57,46,.95), rgba(179,55,0,.95));
  padding: .7em 1.1em;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
}
a.btn, .btn, .cta { background: linear-gradient(to bottom, rgba(229,57,46,.95), rgba(150,38,0,.95)); }
a.btn:hover, .btn:hover, .cta:hover { transform: translateY(-1px); filter: brightness(1.05); }
a.btn:focus-visible, .btn:focus-visible, .cta:focus-visible { outline: var(--focus); outline-offset: 2px; }

.btn.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.6);
}
.btn.secondary:hover { background: rgba(255,255,255,.08); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

@media print {
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
}
  
/* Minor helpers to satisfy utility/class targets */
.content { padding: .5rem 0; }
.aside { padding: .5rem; }
.image-frame, .image-frame img { image-rendering: -webkit-optimize-contrast; }