/* fc9e0cfd.css - Black neon glow background with magenta hacker theme, frosted glass */

/* Design tokens */
:root{
  --bg: #000;
  --grid: rgba(255, 0, 255, 0.25);
  --card: rgba(255,255,255,.92);
  --card-border: rgba(255,255,255,.25);
  --text: #eaffff;
  --muted: #d9d9e8;
  --magenta: #ff00ff;
  --magenta-dark: #c700c7;
  --accent: #ff2bd7;
  --shadow: 0 8px 28px rgba(0,0,0,.45);
  --radius: 14px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
html { font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial; }

body {
  margin: 0;
  color: var(--text);
  background: #000;
  /* black neon glow background with magenta accents */
  background-image:
    linear-gradient(to right, rgba(255,0,255,.25) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,0,255,.25) 1px, transparent 1px);
  background-size: 20px 20px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}
body::before{
  content:"";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 25% 15%, rgba(0,255,255,.15), transparent 40%),
              radial-gradient(circle at 75% 60%, rgba(255,0,255,.15), transparent 40%);
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
  filter: saturate(1.05);
}

/* Layout layers */
header, main, footer { position: relative; z-index: 1; }

/* Header styling */
header { text-align: center; padding: 1rem; }
header h2 { margin: 0; font-size: .95rem; color: #e9e6ff; opacity: .95; }

/* Main area */
main { padding: 0 1rem; }

/* Hero section: mobile-first, two-column on larger screens */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  align-items: center;
  justify-items: center;
  padding: 1.3rem;
}

/* Frosted glass card for content */
.hero-copy {
  text-align: center;
  padding: 1.75rem;
  border-radius: var(--radius);
  max-width: 760px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}
.hero-copy h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin: 0 0 .5rem;
  color: #ff4dff;
}
.subhead {
  font-size: 1rem;
  color: #e8e8ff;
  margin-bottom: 1.25rem;
}
.cta {
  display: inline-block;
  padding: 1rem 1.8rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: #0a0a0a;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff2bd7 0%, #ff5bd6 60%, #9b0fcb 100%);
  border: 1px solid rgba(0,0,0,.15);
  box-shadow: 0 6px 20px rgba(255,0,255,.6);
  transition: transform .15s ease, box-shadow .15s ease;
}
.cta:hover { transform: translateY(-1px); box-shadow: 0 14px 26px rgba(255,0,255,.8); }
.cta:focus-visible { outline: 3px solid #eaffff; outline-offset: 3px; }

/* Centerpiece image */
.hero-media {
  display: flex;
  justify-content: center;
  width: 100%;
}
.hero-media img {
  width: min(680px, 92%);
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,.45);
  image-rendering: crisp-edges;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.92rem;
}
footer .advertisements a {
  color: #7afcff;
  text-decoration: none;
  border-bottom: 1px dotted rgba(122,252,255,.5);
}
footer .advertisements a:hover { text-decoration: underline; }
footer .gratitude { margin-top: .5rem; color: #eaffff; }

/* Desktop two-column layout: text left, image right */
@media (min-width: 860px) {
  .hero {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    padding: 2rem;
  }
  .hero-copy { text-align: left; padding: 2rem; }
  .hero-copy h1 { font-size: 2.4rem; }
  .hero-media { align-self: center; }
  .hero-media img { width: 100%; max-width: 740px; }
}