/* 46527974.css - Black abstract blur background with magenta hacker theme, frosted glass, cyberpunk */
:root{
  --bg: #000;
  --magenta: #ff00ff;
  --magenta-2: #e600ff;
  --glass: rgba(255,255,255,.08);
  --glass-border: rgba(255,255,255,.25);
  --text: #e9e0f6;
  --muted: #c9b4d9;
  --shadow: 0 8px 24px rgba(0,0,0,.5);
}

* { 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;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  /* subtle abstract background texture */
  background-image: radial-gradient(circle at 50% 0%, rgba(255,0,255,.15), transparent 40%),
                    radial-gradient(circle at 20% 70%, rgba(0,0,0,.6), transparent 40%);
  background-size: cover;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::before{
  content:"";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 40% 20%, rgba(255,0,255,.18), transparent 40%),
              radial-gradient(circle at 70% 60%, rgba(0,0,0,.8), transparent 40%);
  filter: blur(6px);
  z-index: 0;
  pointer-events: none;
}

header, main, footer { position: relative; z-index: 1; }

header {
  text-align: center;
  padding: 1rem 1rem 0.5rem;
}
header h2 {
  margin: 0;
  font-size: 0.95rem;
  color: #fff;
  opacity: .9;
  letter-spacing: .02em;
}

main { padding: 0 1rem; }

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: center;
  justify-items: center;
  padding: 1.25rem;
}

.hero-copy {
  text-align: center;
  padding: 1.75rem;
  border-radius: 14px;
  max-width: 760px;
  background: rgba(2,0,20,.55);
  border: 1px solid rgba(255,0,190,.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 28px rgba(0,0,0,.5);
}
.hero-copy h1 {
  font-size: 2rem;
  margin: 0 0 .5rem;
}
.subhead {
  font-size: 1rem;
  color: #f0e3ff;
  margin-bottom: 1.25rem;
}
.cta {
  display: inline-block;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #ff2e9a 0%, #8f00ff 100%);
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 6px 20px rgba(143,0,255,.6);
  transition: transform .15s ease, box-shadow .15s ease;
}
.cta:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(143,0,255,.75); }
.cta:focus-visible { outline: 3px solid #ffd8f2; outline-offset: 3px; }

.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,.6);
}

footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.92rem;
}
footer .advertisements a {
  color: #ffd2ff;
  text-decoration: none;
  border-bottom: 1px dotted rgba(255,255,255,.5);
}
footer .advertisements a:hover { text-decoration: underline; }
footer .gratitude { margin-top: .5rem; color: #e9e4ff; }

@media (min-width: 860px) {
  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    padding: 2rem;
  }
  .hero-copy {
    text-align: left;
    padding: 2rem;
  }
  .hero-copy h1 { font-size: 2.5rem; }
  .hero-media { align-self: center; }
  .hero-media img { width: 100%; max-width: 740px; }
}