/* Game Template - Epic Quest */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: linear-gradient(180deg, #0f0c29 0%, #302b63 40%, #24243e 100%);
  min-height: 100vh;
  color: #fff;
  line-height: 1.6;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 24px;
  text-align: center;
}

/* Hero */
.hero {
  margin-bottom: 56px;
}

.hero-banner {
  width: 100%;
  max-width: 700px;
  height: 320px;
  margin: 0 auto 28px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #ffd700, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.hero-tagline {
  font-size: 1.2rem;
  opacity: 0.95;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 20px;
}

.badge {
  display: inline-block;
  background: rgba(255, 215, 0, 0.25);
  color: #ffd700;
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Features Section */
.game-features {
  margin-bottom: 48px;
  text-align: center;
}

.game-features h2 {
  font-size: 1.75rem;
  margin-bottom: 32px;
  font-weight: 600;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  text-align: center;
}

.feat {
  background: rgba(255, 255, 255, 0.08);
  padding: 28px 24px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s, background 0.2s;
}

.feat:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.feat-icon {
  display: block;
  font-size: 40px;
  margin-bottom: 16px;
}

.feat strong {
  font-size: 1.1rem;
  display: block;
  margin-bottom: 8px;
}

.feat p {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.5;
}

/* Testimonials */
.testimonials {
  margin-bottom: 48px;
}

.testimonials h2 {
  font-size: 1.75rem;
  margin-bottom: 28px;
  font-weight: 600;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.testimonial-grid blockquote {
  background: rgba(255, 255, 255, 0.06);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid #ffd700;
  font-style: italic;
  text-align: left;
  opacity: 0.95;
}

/* CTA */
.cta {
  margin-top: 32px;
}

.btn {
  display: inline-block;
  background: linear-gradient(90deg, #ff6b6b, #ffd700);
  color: #1a1a2e;
  padding: 20px 52px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 8px 32px rgba(255, 107, 107, 0.4);
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 107, 107, 0.5);
}

.cta-note {
  margin-top: 16px;
  font-size: 0.9rem;
  opacity: 0.85;
}
