body {
  margin: 0;
  padding: 0;
  font-family: Helvetica, sans-serif;
  font-weight: 300;
  color: #fff; /* white text for contrast */
  text-align: center;
  background: #000; /* solid black background */
}

/* body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255,255,255,0.5);
  z-index: -1;
} */

.container {
  position: relative;
  padding: 40px 20px;
  max-width: 600px;
  margin: 0 auto;
}

.gradient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px; /* reduced height for a smaller background area */
  background: url('images/fadeCoSho.png') no-repeat center center;
  background-size: cover;
  z-index: -1;
}

.app-icon {
  width: 120px;  /* increased from 100px */
  height: 120px; /* increased from 100px */
  border-radius: 20px;
  margin-top: 40px; /* keep top spacing */
  margin-bottom: 30px; /* add more space before title */
  border: 2px solid #fff; /* reduced from 3px */
}

.title {
  font-size: 4.5rem; /* was 4rem */
  font-weight: 600;
  margin-top: 5px; /* closer to icon */
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.2rem;
  color: #ccc; /* lighter gray for visibility */
  margin-bottom: 30px;
}

.tagline span {
  color: #2dbb47;
  font-weight: 600;
}

.download-btn {
  display: inline-block;
  background: #2dbb47;
  color: #fff;
  padding: 18px 36px; /* bigger button */
  border-radius: 10px;
  font-size: 1.2rem; /* slightly larger text */
  text-decoration: none;
  font-weight: 400;
  margin-bottom: 15px;
}

.download-btn:hover {
  background: #28a53e;
  transform: scale(1.05); /* slight grow effect */
  box-shadow: 0 4px 10px rgba(45, 187, 71, 0.4);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.support-link {
  display: block;
  font-size: 0.9rem;
  color: #2dbb47;
  text-decoration: none;
  margin-top: 10px;
  margin-bottom: 40px;
  padding: 0;
}

.support-link:hover {
  color: #1e8f35;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.screenshot-wrapper {
  display: flex;
  justify-content: center;
  overflow: hidden; /* hide any excess from image edges */
  border-radius: 40px; /* smooth rounded corners */
}

.screenshot {
  max-width: 90%;
  height: auto;
  border-radius: 0; /* remove radius from image */
  box-shadow: none; /* remove shadow */
}

@media (min-width: 768px) {
  .title {
    font-size: 5rem; /* was 4rem */
  }
  .tagline {
    font-size: 1.5rem;
  }
}

.button-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px; /* reduced spacing between button and link */
}

@media (max-width: 480px) {
  .app-icon {
    margin-top: 20px; /* smaller top spacing for mobile */
  }
}

img {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media (max-width: 768px) {
  .gradient-bg {
    position: absolute; /* only for phones */
    margin-top: calc(-1 * env(safe-area-inset-top)); /* keep safe area adjustment */
  }
}
