/* Styles for app landing pages - minimalistic centered design */

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.app-icon {
  width: 100px;
  height: 100px;
  border-radius: 26px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.app-content {
  max-width: 600px;
  width: 100%;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}

h2 {
  font-size: 1.8em;
  margin: 30px 0 15px;
  font-weight: 600;
  text-align: left;
}

p {
  font-size: 1.1em;
  margin: 15px 0;
  color: #444;
  text-align: left;
}

ul {
  margin: 15px 0;
  padding-left: 20px;
}

li {
  margin: 8px 0;
  font-size: 1.05em;
  color: #444;
}

.appstore-badge {
  margin-top: 30px;
  display: block;
  text-align: center;
}

.appstore-badge img {
  height: 50px;
  width: auto;
  transition: transform 0.2s ease;
}

.appstore-badge:hover img {
  transform: scale(1.05);
}

/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
  p, li {
    color: #ccc;
  }

  .app-icon {
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
  }
}

/* Responsive design */
@media (max-width: 600px) {
  h1 {
    font-size: 2em;
  }

  h2 {
    font-size: 1.5em;
  }

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