/* ec1ce799.css - Pink abstract blur background with olive hacker theme, frosted glass */
:root{
  --bg: #140217;
  --pink: #ff2d87;
  --pink-soft: #ff74ce;
  --olive: #7bd44a;
  --olive-dark: #3a5313;
  --text: #eaf0f6;
  --muted: #c9a9bd;
  --ring: rgba(190, 255, 210, .6);
  --card: 14px;
}
*,
*::before,
*::after { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }

/* Pink abstract blur background overlay and starry vibe */
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  color: var(--text);
  background: #0e0010;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,0,128,.22) 0 120px, transparent 120px),
              radial-gradient(circle at 70% 40%, rgba(255,100,200,.22) 0 120px, transparent 120px),
              radial-gradient(circle at 40% 80%, rgba(255,0,140,.18) 0 120px, transparent 120px);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}
* { box-sizing: border-box; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 2; text-align: center; padding: .5rem 1rem;
  background: rgba(0,0,0,.25); border-bottom: 1px solid rgba(255,255,255,.15); backdrop-filter: blur(6px); }
.brand { font-weight: 800; color: #ffd6e2; text-shadow: 0 0 8px rgba(255,0,128,.6); }

/* Layout */ 
main { display: grid; place-items: center; padding: 2rem 1rem; min-height: calc(100vh - 120px); position: relative; z-index: 1; }

/* Frosted glass hero */
.hero {
  width: 100%; max-width: 920px; padding: 1.8rem; border-radius: 16px;
  border: 1px solid rgba(255,255,255,.25);
  background: linear-gradient(180deg, rgba(12,14,12,.75), rgba(6,8,6,.65));
  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;
}
.hero h1 {
  font-size: clamp(1.8rem, 4vw + 1rem, 3rem);
  margin: 0; color: #fff0f6;
  text-shadow: 0 0 12px rgba(255,0,128,.9);
}
.subhead { font-size: clamp(1rem, 2.5vw, 1.15rem); color: var(--muted); margin-top: .25rem; }

/* Media area (image + CTA) */
.hero-media { display: grid; gap: 20px; place-items: center; }
.hero-media img {
  width: min(92%, 700px); 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: #041015; text-decoration: none; border-radius: 999px;
  background: linear-gradient(135deg, #ff8bd8 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 */
footer { padding: 1rem; text-align: center; color: var(--muted); font-size: .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: #ffd3e6; 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; }

/* Accessibility: respect user motion */
@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; }
}