/* ================================================================
   DOWNLOAD PAGE
   ================================================================ */

/* Hero CTA */
.download-hero-cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.btn-download-primary {
  font-size: 1.05rem;
  padding: 1.1rem 2.75rem;
  gap: 0.7rem;
}

.download-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.download-meta {
  font-size: 0.82rem;
  color: var(--text-mid);
  letter-spacing: 0.06em;
}

/* How To Play steps */
.download-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.download-step {
  padding: 2rem;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: var(--bg-card);
  position: relative;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 1.1rem;
}

.download-step h3 {
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}

.download-step p {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.75;
  margin: 0;
}

.step-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--gold-light);
}

.step-link:hover {
  color: var(--text-high);
}

/* System Requirements */
.download-sys-section {
  background: var(--bg-1);
}

.download-sys-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.download-sys-card {
  padding: 2rem;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: var(--bg-card);
}

.download-sys-card h3 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.download-sys-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.download-sys-card li {
  font-size: 0.92rem;
  color: var(--text-mid);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
  line-height: 1.6;
}

.download-sys-card li:last-child {
  border-bottom: none;
}

.download-sys-card strong {
  color: var(--text-high);
  font-weight: 600;
  margin-right: 0.5rem;
}

.download-platform-note {
  margin-top: 2rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  font-style: italic;
  text-align: center;
  opacity: 0.85;
}

/* SmartScreen warning */
.download-warning-section {
  background: var(--bg-0);
}

.download-warning-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.warning-step {
  padding: 1.5rem;
  border: 1px solid var(--ice-border);
  border-radius: 8px;
  background: var(--bg-card);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.warning-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--ice-dim);
  color: var(--ice);
  font-family: var(--font-serif);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.warning-step p {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}

.warning-step strong {
  color: var(--text-high);
  font-weight: 600;
}

.download-warning-trust {
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  border-left: 3px solid var(--gold);
  background: var(--gold-dim);
  font-size: 0.92rem;
  color: var(--text-high);
}

.download-warning-trust strong {
  color: var(--gold-light);
}

/* Responsive */
@media (max-width: 900px) {
  .download-steps,
  .download-sys-grid,
  .download-warning-steps {
    grid-template-columns: 1fr;
  }
}
