/* 41d1206a.css - Olive galaxy, lime hacker theme with frosted glass */
:root {
  --bg-olive: #18240e;
  --olive-lite: #6bd34a;
  --olive-mid: #3a7a1a;
  --lime: #b6ff6a;
  --lime-dark: #8fe34a;
  --text: #eafff0;
  --muted: #b6d998;
  --glass: rgba(9, 13, 11, 0.65);
  --ring: rgba(102, 255, 170, 0.6);
  --card-radius: 14px;
}

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

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

/* Olive galaxy starscape background with a subtle star field overlay */
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  color: var(--text);
  min-height: 100vh;
  position: relative;
  margin: 0;
  background-color: #0b1200;
  /* layered olive tones and a light star grid to evoke a galaxy feel */
  background-image:
    radial-gradient(circle at 10% 20%, rgba(107, 255, 90, .18) 0 2px, transparent 2px),
    radial-gradient(circle at 60% 60%, rgba(140, 255, 150, .15) 0 2px, transparent 2px),
    radial-gradient(circle at 85% 15%, rgba(100, 190, 60, .18) 0 2px, transparent 2px);
  background-size: 240px 240px, 300px 300px, 360px 360px;
  background-position: 0 0, 60px 60px, 120px 40px;
  background-attachment: fixed;
  /* faint aligned stars grid for a hacker vibe */
  --star-density: 0.15;
}

/* Subtle star field overlay for extra texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.9) 1px, transparent 1px);
  background-size: 2px 2px;
  opacity: var(--star-density);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

/* Header (kept minimal but visible for structure) */
.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: 700;
  color: #d6ffcc;
  letter-spacing: .5px;
  text-shadow: 0 0 8px rgba(102,255,170,.6);
}

/* Layout container to center content on wide screens */
main {
  display: grid;
  place-items: center;
  padding: 1.5rem 1rem;
  position: relative;
  z-index: 1;
}

/* Frosted glass hero section */
.hero {
  width: 100%;
  max-width: 980px;
  padding: 1.75rem;
  border-radius: var(--card-radius);
  border: 1px solid rgba(102, 255, 170, 0.35);
  background: linear-gradient(180deg, rgba(10, 20, 14, 0.68), rgba(6, 12, 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;
  position: relative;
  z-index: 1;
}

/* Heading and subheading */
.hero h1 {
  font-size: clamp(1.8rem, 4vw + 1rem, 3.2rem);
  line-height: 1.04;
  margin: 0;
  color: #eaffd9;
  text-shadow: 0 0 12px rgba(102, 255, 170, 0.9);
}
.subhead {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--muted);
  margin: 0.25rem 0 0;
}

/* Centerpiece media area: image + CTA, grid-based */
.hero-media {
  display: grid;
  gap: 20px;
  align-items: center;
  justify-items: center;
}

.hero-media img {
  width: min(92%, 700px);
  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 button styled as a prominent visual centerpiece */
.cta {
  display: inline-block;
  padding: 16px 34px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #06210a;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #aaff6a 0%, #5dff3f 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 with small advertisement and 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);
  position: relative;
  z-index: 1;
}
.footer-ad a {
  color: #c8ffd8;
  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: reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

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