/* 333502eb.css - magenta low-poly triangles background, black hacker theme, frosted glass */

:root {
  --bg: #000;
  --fg: #f8e7f5;
  --muted: #e6c6d9;
  --accent: #ff3d9e;
  --accent-soft: rgba(255, 61, 158, 0.6);
  --glass: rgba(0, 0, 0, 0.6);
  --card: rgba(0, 0, 0, 0.55);
  --ring: rgba(255, 61, 158, 0.9);
  --radius: 14px;
  --shadow: 0 8px 28px rgba(0, 0, 0, 0.6);
}

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

html, body { height: 100%; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto;
  color: var(--fg);
  background: #000;
  /* Magenta low-poly triangles background */
  background-image:
    linear-gradient(135deg, rgba(255, 0, 140, 0.25) 25%, transparent 25%),
    linear-gradient(315deg, rgba(255, 0, 212, 0.25) 25%, transparent 25%),
    linear-gradient(45deg, rgba(255, 0, 150, 0.25) 25%, transparent 25%);
  background-size: 60px 60px, 60px 60px, 60px 60px;
  background-position: 0 0, 15px 15px, -5px -5px;
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Glassy header */
header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.38);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(3px) saturate(1.2);
}

.brand {
  font-weight: 900;
  color: #ffe7f6;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(125, 0, 40, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-shadow: 0 0 8px rgba(255, 61, 158, 0.6);
  letter-spacing: .2px;
}

/* Main layout - mobile-first, grid-based hero */
main {
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.hero {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  text-align: center;
  width: min(92%, 820px);
  padding: 2rem;
  border-radius: var(--radius);
  /* frosted card look */
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px) saturate(1.2);
}

h1 {
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  margin: 0.25rem 0;
  color: #ffd6ea;
  text-shadow: 0 0 12px rgba(255, 61, 158, 0.6);
  line-height: 1.08;
}

.subhead {
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: #ffd9e6;
  margin: 0;
  opacity: 0.95;
}

/* Hero CTA - visual centerpiece */
.hero-cta {
  display: grid;
  grid-template-rows: auto auto;
  width: min(92%, 720px);
  text-decoration: none;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px) saturate(1.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  align-items: center;
  justify-items: center;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.75);
  outline: none;
}

.hero-cta img {
  width: 100%;
  height: auto;
  display: block;
}

.cta-text {
  padding: 0.75rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.25);
  user-select: none;
}

/* Footer with small advertisement */
footer {
  padding: 1.25rem;
  text-align: center;
  color: #e1cbd8;
}

.footer-ad {
  display: inline-block;
  margin: 0.25rem auto 0.75rem;
}

.footer-ad a {
  color: #ffd7e9;
  text-decoration: none;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-block;
  font-size: 0.9rem;
}

/* Accessibility focus */
a:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
  border-radius: 6px;
}

/* Desktop enhancement */
@media (min-width: 640px) {
  .hero { padding: 2.5rem; }
}