body {
  background-color: #121212;
  color: #e0e0e0;
  font-family: "Inter", Arial, sans-serif;
  margin: 0;
  text-align: center;
}

header {
  padding: 20px 20px 10px;
}

.logo {
  width: 96px;
  height: auto;
  border-radius: 25px;
}

.subtitle {
  color: #00bcd4;
  font-size: 1.2em;
  margin-top: 8px;
}

.hero {
  padding: 20px 20px;
}

.screenshot {
  width: 80%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 188, 212, 0.25);
}

.tagline {
  font-size: 1.2em;
  margin-top: 20px;
  color: #cccccc;
}

.features {
  background: #1e1e1e;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.feature h2 {
  color: #00bcd4;
  margin-bottom: 10px;
}

.gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px;
}

.gallery img {
  width: 30%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 188, 212, 0.15);
}

/* Container styles */
.app-buttons-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center; /* Aligns them vertically */
}

/* Base style for the link container: defines the VISIBLE area and hides overflow */
.store-badge {
    display: block;
    height: 60px; /* The standard height we want the badges to appear */
    overflow: hidden; /* Hides the transparent padding outside of our 60px viewport */
    width: auto; /* Width adapts to the image content */
}

/* Styles for all images */
.store-badge img {
    width: auto;
    vertical-align: middle;
    display: block; /* Allows margin auto centering if needed */
}

/* FIX: Google Play badge (PNG has excessive padding) */
.google-play-badge img {
    height: 146px; /* Make the image bigger to fill the viewport */
    /* Use transform to visually center the graphic within the 60px viewport */
    transform: translateY(-30%); /* Adjust this percentage slightly if needed for perfect center */
}

/* App Store badge (SVG needs no padding fix, just fills the container height) */
.apple-app-badge img {
    height: 100%; /* Fills the 60px height of its parent .store-badge container */
    transform: translateY(0); /* Ensure no translation is applied */
}

footer {
  margin-top: 20px;
  padding: 20px;
  background: #1a1a1a;
  font-size: 0.9em;
}

footer a {
  color: #00bcd4;
  text-decoration: none;
  margin-right: 10px;
}
