/* e0dcffc0.css - Pink galaxy starscape with olive hacker theme, frosted glass, mobile-first */

:root {
  --bg: #170313;
  --pink-dark: #b6007a;
  --pink-soft: #ff4fbf;
  --olive: #7c8a2a;
  --olive-dark: #3a5313;
  --text: #eafff3;
  --muted: #c9e0b0;
  --glass: rgba(8, 12, 10, 0.65);
  --ring: rgba(176, 255, 190, 0.6);
  --card-radius: 14px;
}

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

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

/* Pink galaxy starscape with olive accents */
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  color: var(--text);
  background-color: #120016;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 120, 180, 0.25) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 60%, rgba(176, 255, 190, 0.18) 0 2px, transparent 3px),
    radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.15) 0 2px, transparent 3px),
    linear-gradient(135deg, rgba(20,0,20,.9), rgba(30,0,20,.9));
  background-size: 240px 240px, 240px 240px, 240px 240px, cover;
  background-position: 0 0, 60px 60px, 120px 40px, 0 0;
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color-scheme: dark;
  min-height: 100vh;
}

/* Lightweight header (brand visible) */
.site-header {
  display: block;
  padding: 0.75rem 1rem;
  text-align: center;
  background: rgba(0,0,0,.25);
  border-bottom: 1px solid rgba(255,255,255,.15);
  position: sticky;
  top: 0;
  z-index: 2;
  backdrop-filter: blur(6px);
}
.brand {
  font-weight: 800;
  color: #d0ffd8;
  letter-spacing: .5px;
  text-shadow: 0 0 8px rgba(176,255,190,.6);
}

/* Centered content area */
main {
  display: grid;
  place-items: center;
  padding: 1.5rem;
  min-height: calc(100vh - 120px);
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

/* Frosted glass hero container */
.hero {
  width: 100%;
  max-width: 980px;
  padding: 1.75rem;
  border-radius: var(--card-radius);
  border: 1px solid rgba(176, 255, 190, 0.35);
  background: linear-gradient(180deg, rgba(10, 16, 12, 0.72), rgba(6, 10, 8, 0.58));
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
  display: grid;
  gap: 1.25rem;
  text-align: center;
}

/* Title and subhead */
.hero h1 {
  font-size: clamp(1.8rem, 4vw + 1rem, 3rem);
  line-height: 1.04;
  margin: 0;
  color: #eaffd8;
  text-shadow: 0 0 12px rgba(176,255,190,.9);
}
.subhead {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--muted);
  margin: 0.25rem 0 0;
}

/* Centerpiece area: image + CTA */
.hero-media {
  display: grid;
  gap: 20px;
  align-items: center;
  justify-items: center;
}
.hero-media img {
  width: min(92%, 720px);
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.25);
  box-shadow: 0 14px 38px rgba(0,0,0,.6);
}
.cta {
  display: inline-block;
  padding: 16px 34px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #04140b;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff77c8 0%, #ff2d87 100%);
  border: 1px solid rgba(0,0,0,.25);
  box-shadow: 0 8px 22px rgba(0,0,0,.45);
  transition: transform .2s ease, box-shadow .2s ease;
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.55); }
.cta:focus { outline: none; box-shadow: 0 0 0 4px var(--ring); }

/* Footer: small ad + gratitude */
footer {
  padding: 1rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  border-top: 1px solid rgba(255,255,255,.15);
  margin-top: 2rem;
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(2px);
}
.footer-ad a {
  color: #ffd4e9;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.18);
}
.gratitude { margin-top: 6px; color: var(--muted); }

/* Accessibility: respect user motion preference */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* Responsive tweaks */
@media (min-width: 768px) {
  .hero { padding: 2rem; }
  .hero-media { gap: 28px; }
  .hero-media img { width: auto; max-width: 760px; }
}