/* Minimal reset and a single, responsive stylesheet for a hacker/cyberpunk, frosted-glass landing */

:root {
  --red: #ff2a2a;
  --red-dark: #b3001a;
  --bg: #1b0000;
  --card: rgba(255,255,255,.08);
  --card-border: rgba(255,255,255,.25);
  --text: #ffe9e9;
  --shadow: 0 8px 28px rgba(0,0,0,.35);
}

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

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

body {
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  line-height: 1.6;
  min-height: 100vh;
  /* Maroon metallic sheen background */
  background: linear-gradient(135deg, rgba(102,0,0,.95) 0%, rgba(40,0,0,.95) 60%, rgba(12,0,0,.95) 100%), 
              radial-gradient(circle at 20% 0%, rgba(255,0,80,.15), transparent 40%),
              #120000;
  background-attachment: fixed;
  margin: 0;
  padding: 0;
}

/* Header / hero styling (neon, glassy feel) */
header {
  padding: 2rem 1rem;
  text-align: center;
  position: relative;
  z-index: 1;
  /* subtle gloss to imply a holographic sign */
  text-shadow: 0 0 8px rgba(255,0,0,.4);
}
header h1 {
  margin: 0 0 .25rem;
  font-size: 1.6rem;
  color: #ffd6d6;
  letter-spacing: .4px;
  text-shadow: 0 0 8px rgba(255,0,0,.8);
}
header .meta {
  font-size: .9rem;
  color: #ffdede;
  opacity: .95;
}

/* Layout: center the article with a frosted-glass card */
main {
  display: flex;
  justify-content: center;
  padding: 0 1rem;
}
article {
  width: 100%;
  max-width: 860px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 14px;
  padding: 1rem;
  color: #ffe7e7;
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px) saturate(1.2);
  -webkit-backdrop-filter: blur(6px);
}

/* Featured image styling */
.featured-image { width: 100%; overflow: hidden; border-radius: 12px; margin: 0 0 .75rem; }
.featured-image img { display: block; width: 100%; height: auto; border-radius: 8px; }

/* Footer / CTA area (prominent red CTAs) */
footer { padding: 1.5rem; text-align: center; color: #ffdede; }

/* Featured product ad (CTA) */
.product-ad {
  display: inline-block;
  padding: .5rem;
  border-radius: 12px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.25);
  margin-bottom: .5rem;
}
.product-ad h3 {
  font-size: 1.05rem;
  margin: 0 0 .5rem;
}
.product-ad a { text-decoration: none; color: inherit; display: inline-block; }
.product-ad a p {
  margin: 0;
  padding: .6rem 1rem;
  border-radius: 8px;
  background: linear-gradient(#ff3b3b, #b3001a);
  color: #fff;
  font-weight: 700;
  display: inline-block;
  transition: transform .15s ease;
}
.product-ad a p:hover { transform: translateY(-1px); }

/* Accessibility: focus styles for interactive elements */
a:focus-visible, button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Basic hover feedback on CTA */
.product-ad a p:active { transform: scale(0.98); }

/* Responsive tweaks (mobile-first) */
@media (min-width: 600px) {
  header h1 { font-size: 2rem; }
  article { padding: 1.25rem; }
  .product-ad { margin-top: .25rem; }
}
@media (min-width: 900px) {
  header { padding: 2.5rem 1rem; }
  header h1 { font-size: 2.25rem; }
  article { padding: 1.5rem; }
}