body {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: white;
  overflow-x: hidden;
}
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 20px;
}
.navbar {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.logo {
  width: 50px;
  margin-right: 10px;
}
.brand-name {
  font-size: 1.8em;
  font-weight: 600;
}
.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.text-section h1 {
  font-size: 3em;
  margin-bottom: 20px;
}
.text-section p {
  font-size: 1.2em;
  margin-bottom: 30px;
}
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(to right, #ff758c, #ff7eb3);
  padding: 14px 28px;
  border-radius: 40px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 118, 169, 0.3);
}
.download-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(255, 118, 169, 0.6);
}
.btn-icon {
  width: 20px;
}
.mockup {
  max-width: 300px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  background: rgba(255, 255, 255, 0.05);
}
