:root{
  --bg: #041814;
  --bg-2: #041b1a;
  --text: #eafaf5;
  --muted: #a9d6cc;
  --accent: #2cf5cc;     /* seafoam */
  --accent-2: #c6782b;   /* copper */
  --card: rgba(255,255,255,.08);
  --card-strong: rgba(255,255,255,.14);
  --border: rgba(255,255,255,.25);
  --shadow: 0 8px 28px rgba(0,0,0,.28);
  --radius: 14px;
  --focus: 0 0 0 3px rgba(44,255,205,.65);
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  --h1: clamp(1.75rem, 3.5vw + .5rem, 3rem);
  --gap: 1rem;
}
* { box-sizing: border-box; }
html { height: 100%; }
html, body { height: 100%; }
html { font-family: var(--font); font-size: clamp(14px, 0.8vw + 12px, 18px); }
body {
  margin: 0;
  color: var(--text);
  background: 
    linear-gradient(135deg, rgba(2,6,6,.96), rgba(2,6,6,.92)),
    radial-gradient(circle at 15% 10%, rgba(46,255,196,.22), transparent 40%),
    radial-gradient(circle at 85% 15%, rgba(198,120,42,.18), transparent 40%),
    #041410;
  background-blend-mode: normal, screen, screen, normal;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  overflow-x: hidden;
  position: relative;
}
body::after{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  /* Subtle scanline/noise pattern without images */
  background-image: 
    repeating-linear-gradient(to bottom, rgba(255,255,255,.04) 0 1px, transparent 1px 2px);
  opacity: .55;
  mix-blend-mode: overlay;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; color: #8ffbe0; }
a:focus-visible { outline: none; box-shadow: var(--focus); border-radius: 6px; }
button { font: inherit; cursor: pointer; }

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

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

header{
  padding-block: 1.25rem;
}
header h1{
  margin: .25rem 0 .5rem;
  font-size: var(--h1);
  line-height: 1.04;
  letter-spacing: .2px;
  text-align: center;
}
header nav{
  display: flex;
  justify-content: center;
  gap: .75rem;
}
header nav a{
  padding: .5rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.15);
  color: var(--text);
}
header nav a:hover{ background: rgba(0,0,0,.25); text-decoration: none; }

main{ padding-block: 1rem; }
article{ display:block; }

.image-frame{
  width: min(92%, 720px);
  margin: 1rem auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 8px 28px rgba(0,0,0,.28);
  background: #000;
  aspect-ratio: 16 / 9;
}
.image-frame img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  image-rendering: auto;
  filter: saturate(1.05);
}
.content{ padding: 0.75rem 0; }

.glass{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
@supports not (backdrop-filter: blur(12px)){
  .glass{ background: rgba(255,255,255,.14); }
}

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover{ transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,.32); }

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

.tag{
  display:inline-flex; align-items:center; gap:.4rem;
  padding:.25rem .6rem; border-radius:999px;
  font-size:.75rem; line-height:1;
  border:1px solid rgba(46,255,196,.6);
  background: rgba(46,255,196,.15);
  color: #eafff7;
}

.product-ad, .sponsored-page{
  display:block;
  text-align:center;
  padding: .75rem 1rem;
  margin: .5rem 0;
  border-radius: var(--radius);
  background: rgba(0,0,0,.15);
  border: 1px solid rgba(46,255,196,.5);
  text-decoration: none;
}
.product-ad a, .sponsored-page a { color: var(--text); text-decoration: none; display: block; }
.product-ad a:hover, .sponsored-page a:hover { text-decoration: underline; }
footer{ padding: 1rem 0; }

.btn, .cta{
  display:inline-flex; align-items:center; justify-content:center;
  padding:.75rem 1.25rem; border-radius:999px;
  border:1px solid rgba(255,255,255,.4);
  background: linear-gradient(135deg, rgba(46,255,196,.95), rgba(18,140,120,.95));
  color: #041b18; font-weight:700; text-transform: none;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease;
}
.btn:hover, .cta:hover{ transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,0,0,.25); }
.btn:active, .cta:active{ transform: translateY(0); }
.btn--outline{
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(214,120,0,.8);
}
.btn--outline:hover{ background: rgba(214,120,0,.15); }

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

/* Layout helpers (responsive) */
@media (min-width: 600px){
  header{ padding: 1.25rem 0; text-align: left; }
  header h1{ text-align: left; }
  .container{ padding-inline: 1.25rem; }
}
@media (min-width: 960px){
  main{ padding-block: 1.25rem 2rem; }
}
@media (prefers-reduced-motion: reduce){
  * { animation: none !important; transition: none !important; }
}

/* Print styles */
@media print{
  body{ background: #fff; color: #000; }
  a{ color: #000; text-decoration: underline; }
}
