.download { 
  display: block;
  margin: 5rem auto;
}

.dl-card {
  background: var(--secondary);
  border: 1px solid var(--accent1);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 20px 60px var(--soft-shadow);
}

.dl-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.dl-title {
  display: flex;
  align-items: center;
}

.dl-title h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text1);
}

.dl-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text2);
  font-size: 0.9rem;
  white-space: nowrap;
}

.dl-grid {
  border: 1px solid var(--accent1);
  border-radius: 12px;
  overflow: hidden;
}

.dl-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--accent1);
}

.dl-row:last-child { border-bottom: none; }

.dl-row-head {
  background: var(--soft-surface);
}

.dl-cell {
  padding: 1.1rem 1.1rem;
}

.dl-row-head .dl-cell {
  padding: 0.85rem 1.1rem;
  font-size: 0.9rem;
  color: var(--text2);
}

.dl-platform { border-right: 1px solid var(--accent1); }

.dl-os {
  font-weight: 600;
  color: var(--text1);
  line-height: 1.2;
}

.dl-os-sub {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  color: var(--text2);
}

.dl-actions {
  display: flex;
  gap: 0.75rem;
}

@media (max-width: 900px) {
  .dl-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .dl-row {
    grid-template-columns: 1fr;
  }

  .dl-row-head {
    display: none;
  }

  .dl-platform {
    border-right: none;
    border-bottom: 1px solid var(--accent1);
    background: var(--soft-surface);
  }
}
