/* index.css - gold striped background, white frosted glass hero, cyberpunk/hacker vibe */

/* Reset basics (light) */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto;
  color: #1a1a1a;
  /* Gold striped background pattern with dark base to emphasize hacker theme */
  background-color: #0b0b0b;
  background-image:
    /* gold stripes */
    repeating-linear-gradient(45deg, rgba(255,215,0,0.25) 0 12px, rgba(0,0,0,0) 12px 24px),
    /* subtle dark overlay for depth */
    linear-gradient(to bottom right, rgba(0,0,0,0.25), rgba(0,0,0,0.25));
  background-size: auto;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Neon/magic glow for brand (header) */
.site-header { text-align: center; padding: 14px 12px; }
.brand { font-weight: 900; font-size: 1.05rem; color: #fff; text-shadow: 0 0 12px rgba(0, 255, 180, 0.8); }

/* Main content wrapper */
main { display: block; }

/* Hero section - frosted glass, prominent centerpiece image, mobile-first layout */
.hero {
  width: min(1000px, 92%);
  margin: 22px auto;
  padding: 28px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92); /* frosted glass feel */
  backdrop-filter: saturate(120%) blur(6px);
  -webkit-backdrop-filter: saturate(120%) blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 28px 48px rgba(0,0,0,0.15);
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  grid-gap: 14px;
  text-align: center;
  place-items: center;
}

/* Title styling */
.hero > h1 {
  grid-column: 1 / -1;
  font-size: 1.6rem;
  line-height: 1.25;
  margin: 0;
  color: #0b0b0b;
  letter-spacing: .5px;
  text-shadow: 0 0 8px rgba(0,0,0,0.08);
}

/* Centerpiece image */
.hero-media { grid-column: 1 / -1; width: 100%; display: flex; justify-content: center; }
.hero-media img {
  width: 100%;
  height: auto;
  max-width: 720px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  display: block;
}

/* Subhead text */
.subhead { grid-column: 1 / -1; font-size: 1.05rem; color: #1e1e1e; margin: 0; }

/* CTA - prominent centerpiece button (as a link) */
.cta {
  grid-column: 1 / -1;
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 800;
  color: #0b0b0b;
  text-decoration: none;
  background: linear-gradient(135deg, #ffffff 0%, #f2f5ff 60%, #e9f2ff 100%);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,0,0,0.22); }
.cta:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }

/* Footer */
.site-footer { text-align: center; padding: 14px; }
.footer-ad a {
  display: inline-block;
  font-size: 0.85rem;
  color: #111;
  padding: 6px 10px;
  border-radius: 6px;
  text-decoration: none;
  background: linear-gradient(135deg, #ffd400 0%, #ffd000 100%);
}
.gratitude { margin-top: 8px; font-size: 0.95rem; color: #e8e8e8; }

/* Desktop layout: image remains prominent to the right, content on left */
@media (min-width: 860px) {
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    grid-template-areas: "title image" "subhead image" "cta image";
    text-align: left;
  }
  .hero > h1 { grid-area: title; font-size: 2rem; }
  .hero-media { grid-area: image; align-self: center; justify-self: center; }
  .subhead { grid-area: subhead; }
  .cta { grid-area: cta; justify-self: start; }
}
```