/* Reset and base styles */
*, *::before, *::after { box-sizing: border-box; }

html, body { padding: 0; margin: 0; height: 100%; }

/* Yellow sunset gradient background with beige, hacker-glass aesthetic */
body {
  min-height: 100vh;
  color: #2b2413;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Inter, Arial;
  line-height: 1.4;
  background: linear-gradient(135deg, #fff0b0 0%, #ffd37a 40%, #e7c184 100%);
}

/* Mobile-first hero container */
main {
  display: grid;
  place-items: center;
  padding: 24px;
  min-height: calc(100vh - 100px);
}

/* Frosted glass frame for the hero image (beige glass) */
.image-frame {
  width: min(92vw, 720px);
  background: rgba(255, 255, 240, 0.65);
  border-radius: 20px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Footer with a prominent CTA */
footer {
  padding: 20px 16px;
  text-align: center;
}

.product-ad {
  display: inline-block;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 240, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  margin: 6px 0 12px;
}

.product-ad h3 {
  margin: 0 0 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.95rem;
  color: #6f5932;
  letter-spacing: .04em;
}

.product-ad a {
  text-decoration: none;
  display: inline-block;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffd861 0%, #f4c23f 100%);
  color: #1b170c;
  border: 1px solid rgba(0,0,0,.08);
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(0,0,0,.15);
  transition: transform .15s ease, filter .15s ease;
}
.product-ad a:hover { transform: translateY(-1px); filter: brightness(1.05); }
.product-ad a:focus-visible { outline: 3px solid #3bdcff; outline-offset: 2px; }

/* Small layout tweaks for larger screens */
@media (min-width: 640px) {
  main { padding: 48px 0; min-height: 60vh; }
  .image-frame { padding: 18px; border-radius: 24px; }
  .product-ad { font-size: 1rem; }
}

@media (min-width: 1024px) {
  body { background: linear-gradient(135deg, #fff3b8 0%, #ffd06a 35%, #dfbd66 100%); }
}