* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.feature-image img {
  border: 1px solid #ffffff;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #e0e0e0;
  background: #1a1a1a;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-banner {
  height: 15vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 3rem;
}

.hero-banner-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-banner-content img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 20px;
}

.hero-banner-content .brand-name {
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.hero {
  padding: 6rem 0;
  text-align: center;
  background: linear-gradient(to bottom, #1a1a1a, #0f0f0f);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 700;
}

.hero > .container > p {
  font-size: 1.3rem;
  color: #b0b0b0;
  margin-bottom: 2rem;
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.store-badge {
  height: 60px;
  cursor: pointer;
  transition: transform 0.3s, opacity 0.3s;
  border: none;
}

.store-badge:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.rating {
  font-size: 3rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  color: #ffffff;
}

.reviews {
  color: #b0b0b0;
  font-size: 0.95rem;
  margin-bottom: 3rem;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}

.feature-row.reverse {
  grid-template-columns: 1fr 1fr;
}

.feature-row.reverse .feature-image {
  order: 2;
}

.feature-row.reverse .feature-content {
  order: 1;
}

.feature-content {
  display: flex;
  flex-direction: column;
}

.feature-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.feature-content p {
  color: #b0b0b0;
  font-size: 1.1rem;
  line-height: 1.8;
}

.feature-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 4rem 0;
}

.feature-card {
  text-align: center;
}

.feature-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.feature-card p {
  color: #b0b0b0;
  font-size: 0.95rem;
}

footer {
  background: #0f0f0f;
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.footer-links.tight {
  gap: 1rem;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

footer p {
  color: #999;
  font-size: 0.85rem;
}

footer a {
  color: #999;
}

.divider {
  margin: 1.5rem 0;
  color: #999;
}

.coming-soon-section {
  padding: 4rem 0;
  background: linear-gradient(to bottom, #0f0f0f, #1a1a1a);
}

.coming-soon-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #ffffff;
}

.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 0;
}

.coming-soon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: #2a2a2a;
  border-radius: 1rem;
  border: 1px solid #3a3a3a;
  transition: transform 0.3s, background 0.3s;
}

.coming-soon-card:hover {
  transform: translateY(-5px);
  background: #353535;
}

.coming-soon-card .icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
}

.coming-soon-card h3 {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.coming-soon-card p {
  color: #b0b0b0;
  font-size: 0.95rem;
}

.legend-section {
  padding: 3rem 0;
  background: linear-gradient(to bottom, #0f0f0f, #1a1a1a);
  border-top: 1px solid #3a3a3a;
  border-bottom: 1px solid #3a3a3a;
}

.legend-section h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.legend-section p {
  color: #b0b0b0;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legend-section .fine-print {
  color: #999999;
  font-size: 0.9rem;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .hero-banner {
    padding-left: 1.5rem;
  }

  .hero-banner-content {
    gap: 1rem;
  }

  .hero-banner-content img {
    width: 80px;
    height: 80px;
    border-radius: 15px;
  }

  .hero-banner-content .brand-name {
    font-size: 2.5rem;
  }

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

  .feature-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-row.reverse .feature-image,
  .feature-row.reverse .feature-content {
    order: unset;
  }

  .feature-image img {
    max-width: 100%;
  }

  .feature-content h2 {
    font-size: 1.25rem;
  }

  .feature-content p {
    font-size: 0.9rem;
  }

  .rating {
    font-size: 2rem;
  }
}
