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

body {
  background-color: #000;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text",
               "SF Pro Display", Inter, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: #fff;
  text-decoration: underline;
}

.header {
  padding: 24px;
  display: flex;
  justify-content: center;
}

.logo {
  height: 40px;
}

.section {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 16px;
  margin-top: 12px;
}

.intro h1 {
  font-size: 48px;
  text-align: center;
}

.intro p {
  font-size: 18px;
  opacity: 0.85;
  text-align: center;
}

h2 {
  font-size: 28px;
  padding-top: 12px;
}

h3 {
  font-size: 22px;
  padding-top: 18px;
}

.app-card {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.app-icon {
  width: 120px;
  height: 120px;
  border-radius: 24px;
}

.app-info {
  flex: 1;
}

.app-info h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.carousel {
  display: flex;
  gap: 16px;
  margin: 24px 0;
  overflow-x: auto;
}

.carousel img {
  height: 300px;
  border-radius: 16px;
}

.appstore-badge {
  height: 180px; /* Increase from 48px if you want bigger */
  width: auto;  /* maintain aspect ratio */
}

.contact {
  text-align: center;
}

.footer {
  padding: 32px;
  text-align: center;
  opacity: 0.6;
  font-size: 14px;
}

/* ---------- Mobile Responsive Fixes ---------- */
@media (max-width: 768px) {

  .header {
    padding: 16px;
  }

  .logo {
    height: 32px;
  }

  .section {
    padding: 48px 16px;
  }

  .intro h1 {
    font-size: 48px;
    text-align: center;
  }

  .intro p {
    font-size: 16px;
    text-align: center;
  }

  h2 {
    font-size: 24px;
    text-align: center;
  }

  .app-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .app-icon {
    width: 96px;
    height: 96px;
  }

  .app-info {
    width: 100%;
  }

  .carousel img {
    height: 220px;
  }

  .appstore-badge {
    height: 56px;
  }

  .contact {
    padding: 0 8px;
  }
}
