/* 7e410673.css - Maroon crosshatch background with white, hacker/cyberpunk frosted glass hero */

:root{
  --maroon: #7a0a22;
  --maroon-dark: #4b0b1a;
  --bg: #000;
  --text: #ffffff;
  --glass: rgba(255,255,255,.08);
  --glass-border: rgba(255,255,255,.25);
  --shadow: 0 8px 24px rgba(0,0,0,.5);
  --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-color: var(--maroon);
  /* maroon crosshatch background */
  background-image:
    linear-gradient(45deg, rgba(255,0,102,.15) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,0,102,.15) 25%, transparent 25%),
    linear-gradient(45deg, rgba(0,0,0,.25) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(0,0,0,.25) 25%, transparent 25%);
  background-size: 18px 18px;
  background-position: 0 0, 0 0, 0 0, 0 0;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

main { padding: 0 1rem; }

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

.hero-copy {
  text-align: center;
  padding: 1.75rem;
  border-radius: var(--radius);
  max-width: 760px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 10px 28px rgba(0,0,0,.5);
}
.hero-copy h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin: 0 0 .5rem;
}
.subhead {
  font-size: 1rem;
  color: #f8f8ff;
  margin-bottom: 1.25rem;
}
.cta {
  display: inline-block;
  padding: 1rem 1.75rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff2a8a 0%, #7a00ff 100%);
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 6px 20px rgba(122,0,255,.6);
  transition: transform .15s ease, box-shadow .15s ease;
}
.cta:hover { transform: translateY(-1px); box-shadow: 0 14px 26px rgba(122,0,255,.8); }
.cta:focus-visible { outline: 3px solid #ffd9f2; 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: #fff;
  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: #f7f7ff; }

/* Desktop layout: hero image as centerpiece, copy beside on wide screens */
@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; }
}