/* style/download.css */

/* General styles for the download page */
.page-download {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background handled by shared.css */
}

.page-download__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-download__section-title,
.page-download__hero-title,
.page-download__guide-title,
.page-download__video-title,
.page-download__feature-title,
.page-download__feature-card-title,
.page-download__security-subtitle,
.page-download__faq-title,
.page-download__cta-title {
  color: #FFD700; /* Brand gold for titles */
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-download__section-description,
.page-download__hero-description,
.page-download__video-description,
.page-download__cta-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-download a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-download a:hover {
  color: #ffd000;
  text-decoration: underline;
}

/* Buttons */
.page-download__btn-primary,
.page-download__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow long words to break */
  box-sizing: border-box; /* Include padding in width */
}

.page-download__btn-primary {
  background-color: #FFD700; /* Gold background */
  color: #1A1A1A; /* Dark text for gold background */
  border: 2px solid #FFD700;
}

.page-download__btn-primary:hover {
  background-color: #ffd000;
  border-color: #ffd000;
  color: #000000;
  transform: translateY(-2px);
}

.page-download__btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-download__btn-secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
  transform: translateY(-2px);
}

.page-download__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-download__btn-large {
  padding: 18px 40px;
  font-size: 1.1em;
}

/* Hero Section */
.page-download__hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background-color: #1A1A1A; /* Dark background for hero */
  text-align: center;
}

.page-download__hero-section .page-download__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.page-download__hero-content {
  flex: 1;
  text-align: left;
}

.page-download__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  text-align: left;
}

.page-download__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  text-align: left;
  max-width: none;
}

.page-download__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}

.page-download__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-download__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: block;
}

/* Why Download Section */
.page-download__why-download {
  padding: 80px 0;
  background-color: #1A1A1A; /* Dark background */
  color: #ffffff;
}

.page-download__why-download .page-download__section-title {
  font-size: 2.5em;
  color: #FFD700;
}

.page-download__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

.page-download__feature-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-download__feature-item:hover {
  transform: translateY(-5px);
}

.page-download__feature-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
  text-align: left;
}

.page-download__feature-text {
  font-size: 1em;
  color: #f0f0f0;
  text-align: left;
}

/* Download Guides Section */
.page-download__download-guides {
  padding: 80px 0;
  background-color: #0d0d0d; /* Body background color */
  color: #ffffff;
}

.page-download__download-guides .page-download__section-title {
  font-size: 2.5em;
  color: #FFD700;
}

.page-download__guide-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-download__guide-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 25px;
  text-align: left;
}

.page-download__guide-content {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: flex-start;
}

.page-download__guide-steps {
  flex: 2;
  color: #f0f0f0;
}

.page-download__guide-steps ol {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-download__guide-steps li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-download__guide-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-download__guide-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: block;
}

/* Video Section */
.page-download__video-section {
  padding: 60px 0;
  background-color: #1A1A1A; /* Dark background */
  color: #ffffff;
  text-align: center;
}

.page-download__video-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
}

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

.page-download__video-wrapper .page-download__video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

.page-download__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.page-download__video-description {
  font-size: 1.1em;
  max-width: 700px;
}

/* App Features Section */
.page-download__app-features {
  padding: 80px 0;
  background-color: #1A1A1A; /* Dark background */
  color: #ffffff;
}

.page-download__app-features .page-download__section-title {
  font-size: 2.5em;
  color: #FFD700;
}

.page-download__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}