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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(145deg, #0f172a, #1e1b4b, #0f172a);
  color: #e2e8f0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.trophy {
  font-size: 72px;
  margin-bottom: 12px;
}

h1 {
  font-size: 48px;
  font-weight: 900;
  color: #fbbf24;
  letter-spacing: 3px;
}

h1 .game {
  display: block;
  font-size: 24px;
  color: #94a3b8;
  letter-spacing: 6px;
}

.tagline {
  font-size: 18px;
  color: #94a3b8;
  margin: 16px 0 40px;
}

.features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 900px;
  margin-bottom: 32px;
}

.feature {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid #1e293b;
  border-radius: 16px;
  padding: 24px;
  width: 260px;
  text-align: center;
}

.feature .icon {
  font-size: 36px;
  display: block;
  margin-bottom: 8px;
}

.feature h3 {
  color: #fbbf24;
  font-size: 16px;
  margin-bottom: 8px;
}

.feature p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.5;
}

.badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.screenshots {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

.screenshots img {
  height: 220px;
  border-radius: 12px;
  border: 2px solid #1e293b;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.download {
  margin-top: 28px;
}

.store-btn {
  display: inline-block;
  padding: 16px 32px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  border-radius: 14px;
  transition: transform 0.2s;
}

.store-btn:hover {
  transform: scale(1.05);
}

.badge {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

footer {
  border-top: 1px solid #1e293b;
  padding: 24px;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #fbbf24;
}

.copy {
  color: #475569;
  font-size: 12px;
}

/* Legal pages */
.legal {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px;
}

.legal h1 {
  font-size: 28px;
  margin-bottom: 8px;
}

.legal .date {
  color: #64748b;
  font-size: 13px;
  margin-bottom: 32px;
}

.legal h2 {
  color: #fbbf24;
  font-size: 18px;
  margin: 24px 0 8px;
}

.legal p, .legal li {
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.legal a {
  color: #fbbf24;
}

.back {
  display: inline-block;
  margin-bottom: 24px;
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
}

.back:hover { color: #fbbf24; }

@media (max-width: 600px) {
  h1 { font-size: 32px; }
  .feature { width: 100%; }
}
