/* Global Styles */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  line-height: 1.6;
  color: #333;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
h1, h2, h3 {
  margin-bottom: 15px;
}
.btn-primary {
  background: #2b2dff;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s ease;
}
.btn-primary:hover {
  background: #1a1b99;
}

/* Header */
.header {
  background: #fff;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.logo {
  font-size: 22px;
  font-weight: 700;
}
.logo span {
  color: #ff2b5a;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
nav ul li a.active {
  color: #ff2b5a;
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 0;
}
.hero-text {
  flex: 1;
}
.hero-text span {
  color: #ff2b5a;
}
.hero-img img {
  max-width: 100%;
  border-radius: 12px;
}
.rating {
  margin-top: 10px;
  font-weight: bold;
  color: #555;
}

/* Features */
.features {
  padding: 60px 0;
  text-align: center;
}
.features .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 30px;
  margin-top: 40px;
}
.card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* CTA */
.cta {
  background: linear-gradient(90deg, #5a00f0, #ff2b5a);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 20px;
  margin: 60px 0;
}
.store-btns img {
  height: 50px;
  margin: 15px;
}

/* Footer */
footer {
  background: #f9f9f9;
  padding: 40px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 30px;
}
.footer-brand p {
  font-size: 14px;
  margin-top: 10px;
}
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #777;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-text {
    order: 2;
  }
  .hero-img {
    order: 1;
  }
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .nav-bar {
    flex-direction: column;
    gap: 15px;
  }
  .features .grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta {
    padding: 50px 20px;
  }
}

@media (max-width: 500px) {
  .features .grid {
    grid-template-columns: 1fr;
  }
  .store-btns img {
    height: 40px;
    margin: 10px;
  }
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 22px;
  }
  .btn-primary {
    padding: 10px 18px;
    font-size: 14px;
  }
}