* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  background: linear-gradient(135deg, #0078ff, #00c6ff);
  color: white;
}

.hero-content {
  max-width: 500px;
}

.hero h1 {
  font-size: 2.5rem;
}

.hero p {
  margin: 15px 0;
}

.play-btn {
  margin-top: 15px;
  width: 180px;
}

.hero-img img {
  max-width: 250px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.features {
  padding: 50px 20px;
  text-align: center;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.feature {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


.how-it-works {
  background: #eef6ff;
  padding: 50px 20px;
  text-align: center;
}

.how-it-works ol {
  margin-top: 20px;
  text-align: left;
  max-width: 400px;
  margin-inline: auto;
}

.cta {
  background: #0078ff;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.cta-btn {
  display: inline-block;
  margin-top: 15px;
  background: white;
  color: #0078ff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #00c6ff;
  color: white;
}