/* style/download.css */
/* 
  Màu sắc chính: #26A9E0
  Màu phụ trợ: #FFFFFF
  Màu đăng nhập: #EA7C07
  Màu nền body: #0a0a0a (đậm) -> Văn bản chính phải là màu sáng #FFFFFF
*/

.page-download {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Text màu trắng trên nền body tối */
  background-color: #0a0a0a; /* Đảm bảo nền body tối */
}

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

/* Hero Section */
.page-download__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Kế thừa khoảng cách từ header */
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: #0a0a0a;
}

.page-download__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.3; /* Làm mờ hình nền để chữ dễ đọc */
  background-color: #0a0a0a; /* Đảm bảo nền tối */
}

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

.page-download__main-title {
  font-size: 3.5em;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-download__description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-download__btn-primary {
  background-color: #26A9E0; /* Màu chủ đạo */
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-download__btn-primary:hover {
  background-color: #1e87b7;
  border-color: #1e87b7;
}

.page-download__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-download__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

/* Bottom CTA Button specific style */
.page-download__btn-primary--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

/* Section Common Styles */
.page-download__section-title {
  font-size: 2.5em;
  color: #26A9E0; /* Tiêu đề màu chủ đạo */
  text-align: center;
  margin-bottom: 30px;
  padding-top: 60px;
}

.page-download__text-block {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

/* Why Download Section */
.page-download__why-download-section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Nền tối hơn một chút */
}

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

.page-download__feature-card {
  background-color: #0a0a0a; /* Nền tối */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Correcting feature icon size to meet 200x200 minimum requirement */
.page-download__feature-icon {
  width: 200px; /* Minimum width */
  height: 200px; /* Minimum height */
  object-fit: cover; /* Cover ensures it fills the space without distortion */
  margin-bottom: 20px;
  max-width: 100%;
  display: block;
}

.page-download__feature-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-download__feature-description {
  color: #f0f0f0;
  font-size: 1em;
}

/* How to Download Section */
.page-download__how-to-download-section {
  padding: 60px 0;
  background-color: #0a0a0a;
}