:root {
  --bg: #09090f;
  --text: #f8fafc;
  --muted: #9ca3af;
  --accent: #ffcf24;
  --accent2: #7c3aed;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 207, 36, 0.18), transparent 28%),
    radial-gradient(circle at 85% 80%, rgba(124, 58, 237, 0.22), transparent 32%),
    linear-gradient(135deg, #09090f 0%, #111827 100%);
  color: var(--text);
  overflow: hidden;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  position: relative;
}

.card {
  width: min(720px, 92vw);
  min-height: min(720px, 86vh);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-100%);
  animation: shine 5s ease-in-out infinite;
}

.wink {
  width: clamp(190px, 34vw, 320px);
  height: auto;
  filter: drop-shadow(0 28px 48px rgba(255, 207, 36, 0.28));
  animation: float 3.8s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

h1 {
  margin: 0;
  font-size: clamp(64px, 12vw, 142px);
  line-height: 0.9;
  letter-spacing: -0.085em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.link {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.link:hover {
  color: white;
  border-color: white;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.6;
}

.orb-a {
  width: 220px;
  height: 220px;
  background: rgba(255, 207, 36, 0.2);
  top: 10%;
  left: 8%;
}

.orb-b {
  width: 260px;
  height: 260px;
  background: rgba(124, 58, 237, 0.22);
  bottom: 10%;
  right: 8%;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

@keyframes shine {
  0%, 40% { transform: translateX(-100%); }
  70%, 100% { transform: translateX(100%); }
}

@media (max-width: 640px) {
  .card {
    min-height: 76vh;
    border-radius: 30px;
  }
}
