* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  font-family:
    'Inter',
    -apple-system,
    'Segoe UI',
    Roboto,
    sans-serif;
  line-height: 1.6;
  background: #0a0a0a;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.wrapper {
  border-left: 1px solid white;
  border-right: 1px solid white;
  height: 100vh;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #6366f1, transparent);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #8b5cf6, transparent);
  bottom: -150px;
  right: -150px;
  animation-delay: 5s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #ec4899, transparent);
  top: 50%;
  right: 10%;
  animation-delay: 10s;
}

.game-wrap {
  width: 100%;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  z-index: 999;
}

h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  color: white;
  margin-bottom: 15px;
  letter-spacing: -0.03em;
}

p {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
  color: white;
  margin-bottom: 45px;
  letter-spacing: -0.03em;
}

button {
  width: 30%;
  padding: 50px 0;
  cursor: pointer;
  border-radius: 15px;
  font-size: 25px;
  background-color: black;
  border: 1px solid white;
  color: white;
  transition: all 0.5s ease;
}

button:hover,
button:focus {
  background-color: rgb(143, 14, 194);
  border: 1px solid black;
  transform: scale(0.95);
}
