* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Orbitron", sans-serif;
}

body {
  background: #050507;
  color: #fff;
  overflow: hidden;
  cursor: none;
}

#bg {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 2;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: floatAll 7s ease-in-out infinite;
}

@keyframes floatAll {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-28px); }
}

.logo {
  width: 220px;
  height: auto;
  animation: logoGlow 4.5s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 22px #c2185b); }
  50% { filter: drop-shadow(0 0 52px #c2185b); }
}

h1 {
  margin-top: 35px;
  font-size: 32px;
  letter-spacing: 3px;
  background: linear-gradient(90deg, #f5b4d0, #c2185b, #6a00ff, #c2185b);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleShift 8s linear infinite;
}

@keyframes titleShift {
  to { background-position: 220% 0; }
}

.tagline {
  margin-top: 15px;
  font-size: 14px;
  letter-spacing: 4px;
  opacity: 0.8;
}

.actions {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.join,
.showcase {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 168px;
  padding: 13px 28px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  background: #5865f2;
  font-size: 18px;
  letter-spacing: 0.22em;
  cursor: none;
}

.join svg,
.showcase svg {
  width: 22px;
  height: 22px;
}

.join:hover {
  background: #6b76f5;
}

.showcase {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.showcase:hover {
  background: #1a1a1a;
}

.cursor,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 30;
  border-radius: 50%;
}

.cursor {
  width: 6px;
  height: 6px;
  background: #fff;
  box-shadow: 0 0 12px #fff, 0 0 22px #c2185b;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(244, 143, 177, 0.7);
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s;
}

.cursor-ring.is-hot {
  width: 52px;
  height: 52px;
  border-color: #c2185b;
}

footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 24px;
  z-index: 3;
  text-align: center;
  font-size: 11px;
  letter-spacing: 1px;
  opacity: 0.45;
}

@media (hover: none), (pointer: coarse) {
  body,
  .join,
  .showcase {
    cursor: auto;
  }

  .cursor,
  .cursor-ring {
    display: none;
  }
}
