:root {
  --bg-1: #05070f;
  --bg-2: #0e1327;
  --gold-1: #d8b35e;
  --gold-2: #f1dfaf;
  --text: #f6f8ff;
  --muted: #bcc3dd;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 15% 10%, #1a2145 0%, transparent 35%),
    radial-gradient(circle at 85% 85%, #3f2e12 0%, transparent 30%),
    linear-gradient(130deg, var(--bg-1), var(--bg-2));
  overflow: hidden;
}

#antiGravityCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

.bg-animation span {
  position: absolute;
  border: 1px solid rgba(216, 179, 94, 0.2);
  border-radius: 50%;
  animation: float 14s linear infinite;
}

.bg-animation {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.bg-animation span:nth-child(1) {
  width: 360px;
  height: 360px;
  top: -120px;
  left: -90px;
}

.bg-animation span:nth-child(2) {
  width: 240px;
  height: 240px;
  bottom: 8%;
  right: 8%;
  animation-delay: 3s;
}

.bg-animation span:nth-child(3) {
  width: 120px;
  height: 120px;
  top: 15%;
  right: 20%;
  animation-delay: 6s;
}

.bg-animation span:nth-child(4) {
  width: 180px;
  height: 180px;
  bottom: 10%;
  left: 14%;
  animation-delay: 9s;
}

.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  perspective: 1200px;
}

.card {
  position: relative;
  overflow: hidden;
  width: min(900px, 100%);
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.03)
  );
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.45);
  animation: rise 1.2s ease-out both;
  transform-style: preserve-3d;
  will-change: transform;
}

.shine {
  position: absolute;
  width: 180px;
  height: 180%;
  top: -40%;
  left: -220px;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0)
  );
  transform: rotate(16deg);
  filter: blur(2px);
  pointer-events: none;
}

.status-badge {
  display: inline-block;
  color: var(--gold-2);
  border: 1px solid rgba(216, 179, 94, 0.65);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

h1 {
  font-family: "Cinzel", serif;
  font-size: clamp(1.9rem, 5vw, 3.5rem);
  color: var(--gold-2);
}

h2 {
  margin-top: 0.6rem;
  font-weight: 500;
  color: #e9d59a;
  font-size: clamp(1rem, 2vw, 1.3rem);
}

.tagline {
  max-width: 700px;
  margin: 1.5rem auto;
  line-height: 1.7;
  color: var(--muted);
}

.legal-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.8rem;
}

.icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(216, 179, 94, 0.35);
  font-size: 1.35rem;
  animation: pulse 3.8s ease-in-out infinite;
  transition: transform 220ms ease;
}

.icon:hover {
  transform: translateY(-7px) scale(1.06);
}

.icon:nth-child(2) {
  animation-delay: 0.8s;
}

.icon:nth-child(3) {
  animation-delay: 1.6s;
}

.footer-note {
  margin-top: 1.7rem;
  color: #e9eefc;
  line-height: 1.6;
}

@keyframes float {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(18px) scale(1.02);
    opacity: 0.95;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
}

@keyframes rise {
  from {
    transform: translateY(25px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(216, 179, 94, 0);
  }
  50% {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(216, 179, 94, 0.25);
  }
}

@media (max-width: 720px) {
  body {
    overflow-y: auto;
  }

  .hero {
    padding: 1rem;
  }

  .card {
    padding: 2rem 1.2rem;
  }

}
