/* Light reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Core palette and utilities */
:root {
  --bg: #0b0b0b;
  --fg: #f5efe6;
  --orange: #ff8c00;
  --orange-dark: #e86b00;
  --card: rgba(255,255,255,.08);
}

html, body { height: 100%; }

/* Mobile-first, cyberpunk vibe with orange carbon-fiber background */
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Inter, Arial;
  color: var(--fg);
  background-color: var(--bg);
  background-image:
    linear-gradient(135deg, rgba(255,140,0,.15) 0, rgba(255,140,0,.15) 60%, transparent 60%),
    linear-gradient(225deg, rgba(255,140,0,.15) 0, rgba(255,140,0,.15) 60%, transparent 60%),
    repeating-linear-gradient(45deg, rgba(0,0,0,.24) 0 6px, rgba(0,0,0,0) 6px 12px);
  background-size: 240px 240px, 240px 240px, 40px 40px;
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Layout */
main {
  display: grid;
  place-items: center;
  padding: 1.5rem;
  min-height: calc(100vh - 120px);
}

.image-frame {
  position: relative;
  width: min(92vw, 900px);
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px) saturate(1.2);
  box-shadow: 0 18px 40px rgba(0,0,0,.5);
  z-index: 0;
}

.image-frame::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,.12), rgba(255,255,255,0) 40%),
              radial-gradient(circle at 20% 0%, rgba(255,140,0,.25), transparent 30%);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.image-frame::after {
  content: "";
  position: absolute;
  left: -20px; top: -20px; right: -20px; bottom: -20px;
  border-radius: 22px;
  pointer-events: none;
  box-shadow: inset 0 0 60px rgba(255,140,0,.6),
              0 0 40px rgba(255,140,0,.65);
  z-index: 0;
  filter: saturate(1.25);
}

.image-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  /* subtle cyber punch to the image */
  filter: hue-rotate(-8deg) saturate(1.05);
}

/* Frosted glass feel for surrounding elements (footer) */
footer {
  width: 100%;
  text-align: center;
  padding: 1.75rem 1rem 2rem;
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(6px);
  color: #e9d9c8;
  margin-top: 1.75rem;
}

/* Featured product CTA (prominent) */
.product-ad {
  display: inline-block;
  padding: .5rem 1rem;
  border-radius: 999px;
  background: rgba(255,140,0,.22);
  border: 1px solid rgba(255,140,0,.6);
  margin-bottom: .75rem;
  transform: translateZ(0);
}

.product-ad h3 {
  font-size: .95rem;
  color: #ffd9a3;
  font-weight: 700;
  letter-spacing: .2px;
}

.product-ad a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #1a0f00;
  font-weight: 900;
  padding: .9rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff, #ffe7d1);
  box-shadow: 0 8px 16px rgba(255,120,0,.45);
  border: none;
  transition: transform .15s ease, box-shadow .2s ease;
}

.product-ad a:hover { transform: translateY(-1px); box-shadow: 0 12px 20px rgba(255,120,0,.55); }

.product-ad a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255,170,0,.9);
}

/* Ensure the inner <p> inside the link doesn't disrupt sizing */
.product-ad a p { margin: 0; padding: 0; }

/* Footer copy */
footer p {
  font-size: .85rem;
  color: #e9d5c8;
  margin-top: .25rem;
}

/* Responsive tweaks */
@media (min-width: 768px) {
  .image-frame { border-radius: 28px; }
  .product-ad { transform: translateY(0); }
}

@media (min-width: 1024px) {
  main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }
  .image-frame { min-height: 420px; }
  /* Placeholder for a future hero text column on larger screens */
}