@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

body {
  background-color: #0a0a0a;
  color: #e4e4e7;
  font-family: 'Inter', sans-serif;
  margin: 0;
  height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
}

#hki_main_container {
  width: 100%;
  height: 100%;
  position: relative;
  display: grid;
  place-items: center;
}

#hki_blob {
  background: linear-gradient(to right, #4f46e5, #ec4899);
  height: 300px;
  width: 300px;
  border-radius: 50%;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: hki_rotate 20s infinite;
  opacity: 0.7;
  filter: blur(100px);
  pointer-events: none;
}

#hki_blur_overlay {
  backdrop-filter: blur(150px);
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

@keyframes hki_rotate {
  from { transform: rotate(0deg) scale(1); }
  to { transform: rotate(360deg) scale(1.2); }
}

.hki_content_wrapper {
  text-align: center;
  position: relative;
  z-index: 3;
}

.hki_scramble_text {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 900;
  margin: 0;
  letter-spacing: -0.05em;
  color: #fafafa;
  min-height: 1.2em;
}

.hki_subtitle {
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: #a1a1aa;
  margin: 0.5em 0 2em 0;
}

.hki_social_nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.hki_magnetic_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #e4e4e7;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s;
}

.hki_magnetic_link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}