* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none
}

html, body {
  cursor: none;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at center, #050505, #000);
  font-family: "Inter", sans-serif;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: none;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(59,130,246,0.12), transparent 50%),
    radial-gradient(circle at 75% 70%, rgba(59,130,246,0.08), transparent 50%);
  filter: blur(80px);
  cursor: none;
}

body::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.4;
  cursor: none;
}

.container {
  text-align: center;
  max-width: 720px;
  padding: 40px 20px;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
  cursor: none;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h1 {
  font-family: "Space Grotesk";
  font-size: 6rem;
  letter-spacing: -0.05em;
  margin-bottom: 8px;
  background: linear-gradient(90deg, #fff, #9ca3af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: none;
}

h1 span {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: none;
}

.subtitle {
  color: #6b7280;
  font-size: 1rem;
  margin-bottom: 50px;
  cursor: none;
}

.codebox {
  text-align: left;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 18px 20px;
  backdrop-filter: blur(25px);
  cursor: pointer;
  transition: 0.25s;
  margin-bottom: 30px;
  cursor: none;
}

.codebox:hover {
  border-color: rgba(59,130,246,0.6);
  box-shadow: 0 0 50px rgba(59,130,246,0.2);
  cursor: none;
}

.code-header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 8px;
  cursor: none;
}

.copy {
  opacity: 0.6;
  cursor: none;
}

.codebox:hover .copy {
  opacity: 1;
  cursor: none;
}

code {
  font-family: monospace;
  font-size: 13px;
  color: #cbd5f5;
  cursor: none;
}

.games {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  cursor: none;
}

.game {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: #9ca3af;
  text-decoration: none;
  transition: 0.25s;
  cursor: none;
}

.game:hover {
  color: white;
  border-color: #3b82f6;
  box-shadow: 0 0 20px rgba(59,130,246,0.3);
  cursor: none;
}

.cursor {
  width: 18px;
  height: 18px;
  border: 2px solid #555;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
}