/* a8b40ea7.css - dark sunset gradient, purple hacker vibe, frosted glass, mobile-first */

/* Global reset and theme */
:root {
  --bg-dark: #000;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.18);
  --text: #ece6ff;
  --muted: #d6c4ff;
  --purple: #9b5cff;
  --purple-dark: #6a28d9;
  --shadow: rgba(0,0,0,.5);
}

*, *::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(--text);
  background: #000;
  /* Black sunset gradient + subtle purple glow */
  background-image:
    linear-gradient(135deg, #140b26 0%, #000000 60%, #000000 100%),
    radial-gradient(circle at 70% 0%, rgba(170, 0, 255, 0.25), transparent 25%),
    radial-gradient(circle at 20% 0%, rgba(255, 90, 180, 0.22), transparent 25%);
  background-color: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

/* Header (frosted glass feel) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: center;
  background: linear-gradient(to right, rgba(0,0,0,.35), rgba(0,0,0,.25));
  border-bottom: 1px solid rgba(160, 120, 255, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.brand {
  font-weight: 900;
  color: #d9a3ff;
  text-shadow: 0 0 12px rgba(213, 120, 255, 0.85);
  letter-spacing: .4px;
  font-size: 1.05rem;
}

/* Main layout */
main { width: 100%; flex: 1 1 auto; }

/* Hero section */
.hero { padding: 2rem 1rem; display: flex; justify-content: center; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  padding: 0 1rem;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  box-shadow: 0 20px 40px rgba(0,0,0,.5);
  filter: saturate(1.05);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: 1.25rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text);
}

.hero-content h1 {
  font-size: 1.8rem;
  line-height: 1.15;
  margin: 0;
  color: #f6e6ff;
  text-shadow: 0 0 8px rgba(165, 120, 255, 0.65);
}

.hero-content h2 {
  font-size: 0.95rem;
  font-weight: 500;
  color: #f0e0ff;
  opacity: 0.95;
  margin: 0;
}

.cta {
  display: inline-block;
  align-self: flex-start;
  padding: .9rem 1.25rem;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  color: #0b0020;
  background: linear-gradient(135deg, #8a2be2 0%, #a058ff 60%, #6a3cff 100%);
  box-shadow: 0 6px 16px rgba(138, 43, 226, 0.55);
  border: 1px solid rgba(0,0,0,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.cta:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(138, 43, 226, 0.75); }
.cta:focus-visible {
  outline: 3px solid rgba(160, 120, 255, 0.95);
  outline-offset: 2px;
}

/* Responsive: two-column layout on larger screens */
@media (min-width: 800px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
  }
  .hero-content { padding: 2rem; }
  .hero-content h1 { font-size: 2.25rem; }
  .hero-content h2 { font-size: 1.02rem; }
  .hero-image { border-radius: 16px; }
}

/* Footer / advertisement */
.site-footer {
  padding: 1rem;
  text-align: center;
  font-size: 0.92rem;
  color: #e7d9ff;
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(180, 150, 255, 0.25);
}

.advertisement {
  color: #d8c0ff;
  margin-bottom: 0.25rem;
}

.advertisement a {
  color: #ffd6ff;
  font-weight: 700;
  text-decoration: none;
}
.advertisement a:hover { text-decoration: underline; }

.thank-you {
  margin: 0.25rem 0 0;
  color: #e8dfff;
}

/* Focus styles for accessibility on links (and any interactive element) */
a:focus-visible {
  outline: 3px solid rgba(170, 120, 255, 0.95);
  outline-offset: 2px;
}