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