/* style/download.css */

:root {
  --primary-color: #F2C14E;
  --secondary-color: #FFD36B;
  --card-bg: #111111;
  --background-color: #0A0A0A;
  --text-main-color: #FFF6D6;
  --border-color: #3A2A12;
  --glow-color: #FFD36B;
  --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-download {
  font-family: 'Arial', sans-serif;
  color: var(--text-main-color);
  background-color: var(--background-color);
  line-height: 1.6;
}

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

.page-download__section {
  padding: 60px 0;
  text-align: center;
}

.page-download__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  margin-bottom: 30px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-download__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* HERO Section */
.page-download__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--background-color);
}

.page-download__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-download__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-download__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(242, 193, 78, 0.4);
  border: 2px solid var(--primary-color);
}

.page-download__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-download__main-title {
  font-size: clamp(2em, 4vw, 3em);
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(255, 211, 107, 0.7);
}

.page-download__hero-description {
  font-size: 1.2em;
  color: var(--text-main-color);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-download__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-gradient);
  color: var(--background-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  border: none;
  cursor: pointer;
}

.page-download__cta-button:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

/* Introduction Section */
.page-download__introduction-section {
  background-color: var(--card-bg);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.page-download__btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: var(--button-gradient);
  color: var(--background-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-download__btn-primary:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.5);
}

/* Download Guide Section */
.page-download__download-guide-section {
  background-color: var(--background-color);
}

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

.page-download__card {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  border: 1px solid var(--border-color);
}

.page-download__card-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-download__card img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
}

.page-download__card ol {
  list-style: decimal;
  padding-left: 20px;
  margin-top: 20px;
  color: var(--text-main-color);
}

.page-download__card ol li {
  margin-bottom: 10px;
  font-size: 1em;
}

.page-download__card strong {
  color: var(--secondary-color);
}

.page-download__btn-secondary {
  display: inline-block;
  padding: 10px 25px;
  background: var(--secondary-color);
  color: var(--background-color);
  text-decoration: none;
  border-radius: 6px;
  font-size: 1em;
  font-weight: bold;
  margin-top: 25px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-download__btn-secondary:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

/* Features Section */
.page-download__features-section {
  background-color: var(--background-color);
}

.page-download__dark-section {
  background-color: var(--card-bg);
  color: var(--text-main-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.page-download__feature-list li {
  background-color: rgba(242, 193, 78, 0.1);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--primary-color);
  font-size: 1.1em;
  color: var(--text-main-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-download__feature-list li strong {
  color: var(--secondary-color);
}

/* Security Section */
.page-download__security-section {
  background-color: var(--background-color);
}

.page-download__security-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  text-align: left;
}

.page-download__security-list li {
  background-color: rgba(255, 211, 107, 0.1);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--secondary-color);
  font-size: 1.1em;
  color: var(--text-main-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-download__security-list li strong {
  color: var(--primary-color);
}

/* Compatible Devices Section */
.page-download__compatible-devices-section {
  background-color: var(--card-bg);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.page-download__device-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  font-size: 4em;
  color: var(--primary-color);
}

.page-download__icon {
  /* Placeholder for actual icons, e.g., using font-awesome or SVG */
  display: inline-block;
  width: 1em;
  height: 1em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.page-download__icon--android {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23F2C14E"><path d="M17.43 3.32c-.08-.1-.18-.16-.29-.19-.13-.04-.26-.05-.39-.03-.32.06-.59.27-.72.56-.05.11-.08.23-.08.35v.02c0 .24.1.48.29.65.19.18.45.28.72.28.27 0 .53-.1.72-.28.19-.17.29-.41.29-.65v-.02c0-.12-.03-.24-.08-.35zm-2.86 15.34c.08.1.18.16.29.19.13.04.26.05.39.03.32-.06.59-.27.72-.56.05-.11.08-.23.08-.35v-.02c0-.24-.1-.48-.29-.65-.19-.18-.45-.28-.72-.28-.27 0-.53.1-.72.28-.19.17-.29.41-.29.65v.02c0 .12.03.24.08.35zM12 1c-4.97 0-9 4.03-9 9v11c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V10c0-4.97-4.03-9-9-9zm0 2c3.87 0 7 3.13 7 7v7c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V10c0-3.87 3.13-7 7-7zM7 10v7h10V10H7z"/></svg>');
}