/* 91842b69.css - gray parchment background with pink hacker/futuristic frost-glass hero */

/* Reset and base */
*, *::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: #2b2b2b;
  /* Gray parchment background with subtle texture hints */
  background: #d9d9d2;
  background-image:
    linear-gradient(135deg, rgba(0,0,0,.04) 0 100%),
    repeating-linear-gradient(45deg, rgba(210,205,198,.25) 0 8px, transparent 8px 16px);
  background-size: cover;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Accent colors for hacker/futuristic pink theme */
:root {
  --pink: #ff3ea5;
  --pink-dark: #c5007a;
  --glass: rgba(255, 255, 255, 0.88);
  --shadow: rgba(0,0,0,.15);
}

.site-header {
  padding: 12px 12px;
  text-align: center;
}
.brand {
  font-weight: 900;
  font-size: 1.05rem;
  color: #ff5fbf;
  text-shadow: 0 0 12px rgba(255, 80, 200, 0.6);
}

/* Main container with frosted glass vibe in hero */
main { display: block; }

/* Hero section - mobile-first, grid-based, prominent CTA */
.hero {
  width: min(1000px, 92%);
  margin: 22px auto;
  padding: 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92); /* frosted glass */
  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 20px 40px rgba(0,0,0,.15);
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 14px;
  text-align: center;
}

/* Title styling */
.hero > h1 {
  margin: 0;
  font-size: 1.6rem;
  color: #20122a;
  text-shadow: 0 0 8px rgba(255,0,180,.25);
}

/* Centerpiece image */
.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);
  display: block;
}

/* Subhead text */
.subhead {
  font-size: 1.05rem;
  color: #2f2f2f;
  margin: 0;
}

/* Prominent CTA styling (link styled as button) */
.cta {
  display: inline-block;
  margin: 6px auto 0;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 800;
  color: #0b0b0b;
  text-decoration: none;
  background: linear-gradient(135deg, #fff 0%, #ffd6ea 60%, #ffb3d9 100%);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 8px 22px rgba(255, 92, 196, .45);
  transition: transform .2s ease, box-shadow .2s ease;
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(255, 92, 196, .55); }
.cta:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }

/* Footer with small advertisement and gratitude text */
.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, #ffd0e6 0%, #ffc0e0 100%);
}
.gratitude { margin-top: 8px; color: #555; }

/* Desktop layout: image alongside content for emphasis */
@media (min-width: 860px) {
  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    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; }
  /* Ensure the image sits to the right on wide screens while text stays left */
}
```