/* 2c7d8048.css - yellow neon glow background with blue hacker theme
   Responsive mobile-first, frosted glass hero, accessible focus styles. */

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

/* Base page */
html, body { height: 100%; margin: 0; }

/* Background: yellow neon glow with blue accents for hacker vibe */
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto;
  color: #0b1b2b;
  background: linear-gradient(135deg, #fff200 0%, #ffd400 40%, #ffd800 100%);
  background-attachment: fixed;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0, 180, 255, 0.15) 0 40%, transparent 40px),
              radial-gradient(circle at 10% 80%, rgba(0, 180, 255, 0.12) 0 40%, transparent 40px);
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 0;
}
:root {
  --turq: #20e5ff;
  --turq-dark: #0aa0cc;
  --glass: rgba(255, 255, 255, 0.92);
  --text: #0b1b2b;
  --shadow: rgba(0,0,0,.15);
  --focus: #fff;
}

/* Header */
.site-header { padding: 12px; text-align: center; position: relative; z-index: 1; }
.brand {
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--turq);
  text-shadow: 0 0 12px rgba(32, 226, 255, 0.7);
}

/* Main content */
main { display: block; position: relative; z-index: 1; }

/* Hero - frosted glass card, mobile-first, grid layout */
.hero {
  width: min(1000px, 92%);
  margin: 22px auto;
  padding: 22px;
  border-radius: 14px;
  background: var(--glass);
  backdrop-filter: saturate(125%) blur(6px);
  -webkit-backdrop-filter: saturate(125%) blur(6px);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 12px;
  text-align: center;
  min-width: 280px;
}
.hero > h1 {
  margin: 0;
  font-size: 1.6rem;
  color: #0b1b2b;
  text-shadow: 0 0 8px rgba(32, 226, 255, 0.25);
}
.hero-media { width: 100%; display: flex; justify-content: center; }
.hero-media img {
  width: 100%;
  max-width: 720px;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
  background: #fff;
  display: block;
}
.subhead { font-size: 1.05rem; color: #2b2b2b; margin: 0; }
.cta {
  display: inline-block;
  margin: 6px auto 0;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 800;
  color: #04152a;
  text-decoration: none;
  /* blue-tavored CTA with neon glow on yellow */
  background: linear-gradient(135deg, #ffffff 0%, #e6f3ff 60%, #7bdfff 100%);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 8px 22px rgba(0, 180, 255, 0.6);
  transition: transform .2s ease, box-shadow .2s ease;
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0, 180, 255, 0.75); }
.cta:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }

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

/* Desktop layout: image to the right, text left */
@media (min-width: 860px) {
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    text-align: left;
    align-items: center;
  }
  .hero > h1 { font-size: 2rem; }
  .subhead { font-size: 1.08rem; }
  .cta { justify-self: start; }
  .hero-media { justify-self: center; }
}
@media (prefers-reduced-motion: reduce) {
  .cta { transition: none; }
  .hero { transition: none; }