* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  background:
    linear-gradient(rgba(3, 7, 18, 0.82), rgba(3, 7, 18, 0.92)),
    url("https://images.unsplash.com/photo-1519608487953-e999c86e7455?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(37, 99, 235, 0.25), transparent 40%),
    radial-gradient(circle at bottom, rgba(245, 158, 11, 0.15), transparent 35%);
  pointer-events: none;
  z-index: -1;
}

.page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 70px 20px 40px;
}

.hero {
  padding: 80px 25px;
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 50px rgba(37, 99, 235, 0.22);
}

.eyebrow {
  color: #93c5fd;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 22px;
}

h1 {
  font-size: 4.7rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-shadow: 0 0 25px rgba(96, 165, 250, 0.65);
}

h2 {
  color: #e5e7eb;
  font-weight: normal;
  margin-bottom: 24px;
}

.description {
  color: #cbd5e1;
  line-height: 1.8;
  max-width: 760px;
  margin: 0 auto 35px;
  font-size: 1.1rem;
}

.primary-button,
.social-links a {
  display: inline-block;
  text-decoration: none;
  color: white;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: bold;
  box-shadow: 0 0 22px rgba(37, 99, 235, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.primary-button:hover,
.social-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.6);
}

.card,
.socials {
  margin-top: 35px;
  padding: 34px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.22);
  backdrop-filter: blur(8px);
}

.card p,
.socials p {
  color: #cbd5e1;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.social-links a {
  padding: 12px 22px;
  background: rgba(37, 99, 235, 0.85);
}

.social-links .disabled {
  background: rgba(100, 116, 139, 0.6);
  cursor: default;
}

footer {
  color: #94a3b8;
  padding: 30px 20px 45px;
  font-size: 0.9rem;
}

@media (max-width: 700px) {
  h1 {
    font-size: 3rem;
  }

  .hero {
    padding: 55px 20px;
  }

  .description {
    font-size: 1rem;
  }

  .social-links a {
    width: 100%;
    max-width: 280px;
  }
}
