/* Minimal reset and CSS for a neon cyberpunk landing plate with frosted glass panels */

:root {
  --bg-dark: #0b0b0f;
  --bg-dim: #12131a;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.18);
  --pink: #ff4d9a;
  --pink-dark: #e60086;
  --text: #eaeaf0;
  --muted: #c6c6cc;
  --shadow: 0 12px 30px rgba(0,0,0,.38);
  --ring: 0 0 0 4px rgba(255, 0, 170, .6);
}

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

html, body { height: 100%; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Inter, Arial;
  color: var(--text);
  background-color: var(--bg-dark);
  /* gray carbon fiber look with subtle diagonal weave */
  background-image:
    repeating-linear-gradient(45deg, rgba(60,60,60,.25) 0 6px, transparent 6px 12px);
  background-size: 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

/* Hero/content container (mobile-first) */
main {
  width: 100%;
  max-width: 1000px;
  display: grid;
  justify-items: center;
  gap: 1.75rem;
  padding: 1rem 0;
}

/* Frosted glass image frame (hero) */
.image-frame {
  width: 100%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  image-rendering: auto;
  transition: transform .25s ease;
}
.image-frame:hover img { transform: scale(1.005); }

/* Header-like hints (optional subtext) could be added here if needed */

/* Footer area with featured product (CTA) */
footer {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1rem 0 2rem;
}

/* Product card (frosted glass) */
.product-ad {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
  width: min(640px, 92%);
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
}

.product-ad h3 {
  font-size: 1rem;
  margin: 0 .25rem 0.5rem;
  color: var(--pink);
  font-weight: 700;
  letter-spacing: .4px;
}
.product-ad a { text-decoration: none; }

.product-ad a p {
  display: inline-block;
  padding: .75rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6fae, #ff2d95);
  color: #fff;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.45);
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
  transition: transform .2s ease, filter .2s ease;
  text-shadow: 0 1px 0 rgba(0,0,0,.25);
}
.product-ad a p:hover { transform: translateY(-1px); filter: brightness(1.05); }

/* Focus accessibility for keyboard users on interactive elements */
a:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 6px;
}
button:focus-visible,
a:focus-visible { outline: none; }

/* Responsive tweaks (desktop/tablet) */
@media (min-width: 768px) {
  main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .image-frame { padding: 1.25rem; }
  .image-frame img { border-radius: 14px; }
}

@media (min-width: 1024px) {
  /* Emphasize hero width on larger viewports */
  .image-frame { max-width: 900px; padding: 1.25rem; }
  .product-ad { padding: 1.25rem 1.5rem; }
}