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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #222;
  z-index: 100;
}

.nav-link {
  color: #888;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #fff;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0a0a0f;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem 2rem;
}

.container {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.badge {
  display: inline-block;
  background: #2a2a35;
  color: #888;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin-bottom: 1.5rem;
  border-radius: 8px;
}

.tagline {
  color: #999;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.release-date {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.preorder-label {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.feature {
  background: #16161c;
  border: 1px solid #222;
  color: #777;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.packs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.pack {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: #14141a;
  border: 1px solid #222;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  transition: all 0.2s ease;
}

.pack:hover {
  background: #1a1a22;
  border-color: #333;
  transform: translateY(-2px);
}

.pack-info {
  text-align: left;
}

.pack-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.pack-desc {
  color: #666;
  font-size: 0.9rem;
}

.pack-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.redemption-note {
  color: #666;
  font-size: 0.8rem;
  line-height: 1.5;
  max-width: 400px;
  margin: 1.5rem auto 2rem;
  padding: 1rem;
  background: #111;
  border: 1px solid #222;
  border-radius: 8px;
}

.platforms {
  margin-bottom: 2rem;
}

.coming-soon {
  color: #555;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.platform-icons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.platform-link {
  color: #444;
  transition: color 0.2s ease;
}

.platform-link:hover {
  color: #888;
}

.platform-link svg {
  width: 28px;
  height: 28px;
}

footer {
  color: #444;
  font-size: 0.85rem;
}

footer a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s ease;
}

footer a:hover {
  color: #888;
}

@media (max-width: 500px) {
  .tagline {
    font-size: 1rem;
  }

  .pack {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .pack-info {
    text-align: center;
  }
}
