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

/* --- Hero (full-viewport landing) --- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, #a855f7 0%, #7c3aed 40%, #3b0764 100%);
}

.logo {
  width: clamp(180px, 30vw, 360px);
  height: auto;
  position: relative;
  z-index: 2;
}

/* --- Sparkles --- */
.sparkles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.sparkle {
  position: absolute;
  animation: twinkle ease-in-out forwards;
  opacity: 0;
}

@keyframes twinkle {
  0%   { opacity: 0; transform: scale(0) rotate(0deg); }
  50%  { opacity: 1; transform: scale(1) rotate(180deg); }
  100% { opacity: 0; transform: scale(0) rotate(360deg); }
}

/* --- Navbar --- */
.navbar {
  position: absolute;
  top: 24px;
  left: 32px;
  right: 32px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  height: 28px;
  width: auto;
}

.navbar a {
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s;
}

.navbar a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.navbar-sep {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 8px;
  font-size: 0.95rem;
}

/* --- Games section --- */
.games {
  background: #f5f0ff;
  padding: 80px 24px;
  text-align: center;
}

.games h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #2d2640;
  margin-bottom: 28px;
}

.store-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.store-links a {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #7c3aed;
  text-decoration: none;
  border: 2px solid #d8b4fe;
  padding: 12px 32px;
  border-radius: 60px;
  transition: all 0.3s;
}

.store-links a:hover {
  background: #7c3aed;
  border-color: #7c3aed;
  color: #fff;
}

/* --- About section --- */
.about {
  background: #ede5ff;
  padding: 80px 24px;
  text-align: center;
}

.about h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #2d2640;
  margin-bottom: 24px;
}

.about p {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.85;
  color: #3d3455;
  max-width: 600px;
  margin: 0 auto;
}

.about p + p {
  margin-top: 20px;
}

/* --- Footer --- */
.footer {
  background: #f5f0ff;
  padding: 32px 24px;
  text-align: center;
}

.footer a {
  color: #9a8bb5;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover {
  color: #7c3aed;
}

.footer-sep {
  color: #c4b5d4;
  margin: 0 8px;
  font-size: 0.8rem;
}

.footer-copy {
  margin-top: 8px;
  color: #b8a9d0;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
}
