* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: linear-gradient(135deg, #0f0f1a, #1b1b2f);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 420px;
  text-align: center;
  padding: 20px;
}

.hero-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  margin-bottom: 20px;
}

.title {
  font-size: 22px;
  margin-bottom: 8px;
  font-weight: bold;
}

.subtitle {
  font-size: 14px;
  color: #b3b3b3;
  margin-bottom: 20px;
}

.search-box input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: none;
  outline: none;
  font-size: 14px;
  margin-bottom: 25px;
}

.cta {
  margin-top: 10px;
}

.download-btn {
  display: inline-block;
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg, #ff2e63, #ff8a00);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 10px;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 46, 99, 0.4);
}

.download-btn:hover {
  transform: scale(1.03);
}

.note {
  margin-top: 15px;
  font-size: 12px;
  color: #888;
}