/*
 * Downloads Section Styles
 * Simple and clean download platform list
 */

.downloads-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}

.download-platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.3s ease;
  flex: 0 1 auto;
}

/* Active platforms - hover effect */
.download-platform.active:hover {
  transform: translateY(-5px);
}

/* Inactive platforms - grayscale filter */
.download-platform.inactive {
  cursor: not-allowed;
  opacity: 0.5;
}

.download-platform.inactive .download-icon {
  filter: grayscale(100%);
}

/* Icon container - respects original 128x128px dimensions */
.download-icon {
  width: 100px;
  height: 100px;
  transition: filter 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Platform name text */
.download-name {
  color: #212529;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  text-align: center;
}

/* Status text (Coming soon) */
.download-status {
  color: #6c757d;
  font-size: 0.875rem;
  margin: 0;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .downloads-list {
    gap: 1.5rem;
  }

  .download-platform {
    flex: 0 1 calc(50% - 0.75rem);
    max-width: 150px;
  }
}

@media (max-width: 575px) {
  .downloads-list {
    flex-direction: column;
    gap: 2rem;
  }

  .download-platform {
    flex: 1 1 auto;
    max-width: 120px;
  }
}
