/* ========== DOWNLOADS PAGE STYLES ========== */

.downloads-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.download-category {
  background: #ffffff;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 600px;
}

.download-category:hover {
  border-color: #B5CA01;
  box-shadow: 0 8px 24px rgba(0, 194, 255, 0.15);
  transform: translateY(-4px);
}

.category-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0a0f1e;
  margin: 0 0 0.5rem;
}

.category-desc {
  font-size: 0.9rem;
  color: #666;
  margin: 0 0 1.5rem;
}

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

.download-list li {
  margin-bottom: 1rem;
}

.download-list li:last-child {
  margin-bottom: 0;
}

.download-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, rgba(181, 202, 1, 0.1), rgba(0, 255, 0, 0.05));
  border: 1px solid #B5CA01;
  border-radius: 8px;
  color: #0a0f1e;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.download-link:hover {
  background: linear-gradient(135deg, rgba(181, 202, 1, 0.2), rgba(0, 255, 0, 0.1));
  border-color: #00FF00;
  transform: translateX(4px);
}

.download-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #B5CA01, #00FF00);
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.download-note {
  font-size: 0.85rem;
  color: #999;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e5e5;
}

/* ========== STEPS GRID ========== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.step-card {
  background: #ffffff;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  border-color: #B5CA01;
  box-shadow: 0 8px 24px rgba(0, 194, 255, 0.15);
  transform: translateY(-4px);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #B5CA01, #00FF00);
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0a0f1e;
  margin: 0 0 0.75rem;
}

.step-card p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

.step-card a {
  color: #B5CA01;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.step-card a:hover {
  color: #00FF00;
}

/* ========== FAQ SECTION ========== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.faq-item {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  border-left: 4px solid #B5CA01;
}

.faq-question {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0a0f1e;
  margin: 0 0 0.75rem;
}

.faq-answer {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.faq-answer a {
  color: #B5CA01;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.faq-answer a:hover {
  color: #00FF00;
}

/* ========== SECTION LIGHT ========== */
.section-light {
  background: #f9f9f9;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .downloads-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .download-category {
    padding: 1.5rem;
  }

  .step-card {
    padding: 1.5rem;
  }
}
