.downloads-container {
  flex: 1;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.section-title {
  font-size: 14px;
  color: #888888;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  border-bottom: 1px solid #222222;
  padding-bottom: 8px;
}

.latest-section {
  margin-bottom: 40px;
}

/* Cards */
.version-card {
  background-color: #1e1e1e;
  border: 1px solid #333333;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  margin-bottom: 16px;
}

.version-card.latest {
  border-color: #3fb950;
  background: linear-gradient(180deg, #1a241c 0%, #1e1e1e 100%);
}

.version-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.version-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge {
  background: #3fb950;
  color: #0a0a0a;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.version-date {
  font-size: 13px;
  color: #888888;
}

.changelog {
  margin-bottom: 24px;
  background: #181818;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #262626;
}

.changelog h4 {
  font-size: 14px;
  color: #cccccc;
  margin-bottom: 6px;
}

.changelog p {
  font-size: 13px;
  color: #aaaaaa;
  line-height: 1.5;
}

/* Download Grid */
.download-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.dl-btn {
  background: #242424;
  border: 1px solid #3a3a3a;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.2s ease;
}

.dl-btn:hover {
  background: #2a2a2a;
  border-color: #555555;
}

.dl-btn strong {
  font-size: 14px;
  margin-bottom: 4px;
}

.dl-btn span {
  font-size: 11px;
  color: #888888;
}

.dl-btn.primary {
  background: #333333;
  border-color: #444444;
}

.dl-btn.primary:hover {
  background: #444444;
}

.versions-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.older-card {
  background-color: #161616;
  border: 1px solid #222222;
  border-radius: 8px;
  padding: 16px;
}