/* Reset & base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #fff;
}

/* Hero Section */
.hero {
  background-image: url('background.jpg');
  background-size: cover;
  background-position: center;
  height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.75);
  padding: 20px;
  border-radius: 12px;
}

.app-icon {
  width: 128px;
  height: 128px;
  margin-bottom: 15px;
}

.app-name {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
}

/* Download Section */
.download {
  text-align: center;
  padding: 30px 15px;
}

.google-play-badge {
  width: 200px;
  max-width: 80%;
}

/* Description Section */
.description {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
}

.description h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #222;
}

.description p {
  margin-bottom: 20px;
  font-size: 1rem;
}

.description ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.description ul li {
  margin-bottom: 10px;
}

.disclaimer {
  font-size: 0.875rem;
  color: #666;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

/* Screenshots Section */
.screenshots {
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
}

.screenshots h2 {
  text-align: center;
  margin-bottom: 20px;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 15px;
}

.screenshot-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #f8f8f8;
}

footer a {
  color: #333;
  margin: 0 10px;
  text-decoration: none;
  font-size: 0.9rem;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .app-name {
    font-size: 1.5rem;
  }

  .description h2,
  .screenshots h2 {
    font-size: 1.4rem;
  }
}
