/* style/download.css */
.page-download {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-download__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0;
  text-align: center;
  overflow: hidden;
}

.page-download__hero-image-wrapper {
  width: 100%;
  height: auto;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px; /* Space between image and content */
}

.page-download__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-download__hero-content {
  max-width: 900px;
  padding: 0 20px;
  z-index: 1; /* Ensure text is above any background elements */
}

.page-download__hero-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-download__hero-description {
  font-size: 1.2em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-download__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-download__btn-primary,
.page-download__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-download__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2AD16F;
}

.page-download__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px #57E38D; /* Glow */
}

.page-download__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Button top color */
  border: 2px solid #2AD16F;
}

.page-download__btn-secondary:hover {
  background-color: rgba(42, 209, 111, 0.1);
  color: #57E38D; /* Glow */
  border-color: #57E38D;
}

.page-download__cta-buttons--single {
  max-width: 400px; /* Constrain single button width */
  width: 100%;
}

.page-download__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.3;
}

.page-download__section-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  padding: 0 15px;
}

.page-download__text-highlight {
  color: #57E38D; /* Glow */
  font-weight: 600;
}

/* Video Section */
.page-download__video-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #08160F;
}

.page-download__video-title {
  font-size: clamp(1.6em, 3vw, 2.5em);
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
}

.page-download__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 10px;
  margin: 0 auto 30px auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-download__video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-download__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}

.page-download__video-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.page-download__video-description {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Features Section */
.page-download__features-section {
  padding: 60px 20px;
  background-color: #11271B; /* Card BG */
  border-top: 1px solid #2E7A4E; /* Border */
  border-bottom: 1px solid #2E7A4E;
}

.page-download__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-download__feature-card {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-download__feature-title {
  font-size: 1.5em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-download__feature-text {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

/* App Features Section */
.page-download__app-features-section {
  padding: 60px 20px;
  background-color: #08160F;
}

.page-download__app-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-download__app-feature-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-download__app-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-download__app-feature-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-download__app-feature-item h3 {
  padding: 20px 20px 10px 20px;
  font-size: 1.4em;
  font-weight: 600;
  color: #F2C14E; /* Gold */
}

.page-download__app-feature-item h3 a {
  color: #F2C14E;
  text-decoration: none;
}

.page-download__app-feature-item h3 a:hover {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

.page-download__app-feature-item p {
  padding: 0 20px 20px 20px;
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  flex-grow: 1;
}

/* Guide Section */
.page-download__guide-section {
  padding: 60px 20px;
  background-color: #11271B; /* Card BG */
  border-top: 1px solid #2E7A4E;
}

.page-download__guide-steps-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-download__guide-step {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-download__guide-step-title {
  font-size: 1.6em;
  color: #57E38D; /* Glow */
  margin-bottom: 15px;
  font-weight: 600;
}