.downloads-container {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: 'Poppins', sans-serif;
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.downloads-header {
  text-align: center;
  margin-bottom: 60px;
}

.downloads-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #161925;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #0062FF, #00C6FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.downloads-header p {
  font-size: 20px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.download-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: rotate(0deg);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.download-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 98, 255, 0.15);
  border-color: rgba(0, 98, 255, 0.3);
}

.download-card.download-coming-soon {
  opacity: 0.7;
}

.download-card.download-coming-soon:hover {
  transform: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.download-card-icon {
  font-size: 64px;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.download-card:hover .download-card-icon {
  transform: scale(1.2);
}

.download-card.download-coming-soon:hover .download-card-icon {
  transform: none;
}

.download-card-content h3 {
  font-size: 24px;
  color: #161925;
  margin: 0 0 10px;
}

.download-card-content p {
  color: #666;
  font-size: 18px;
  margin: 0;
}

.download-button {
  margin-top: 25px;
  background: linear-gradient(135deg, #0062FF, #00C6FF);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 98, 255, 0.3);
  width: 100%;
  max-width: 200px;
}

.download-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 98, 255, 0.4);
}

.download-soon-badge {
  margin-top: 25px;
  background: #ffc107;
  color: #333;
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 0.8; }
  50% { opacity: 0.65; }
  100% { opacity: 0.8; }
}

.download-additional-info {
  background: rgba(0, 98, 255, 0.05);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(0, 98, 255, 0.1);
}

.download-additional-info h3 {
  font-size: 24px;
  color: #161925;
  margin-top: 0;
}

.download-additional-info p {
  color: #555;
  line-height: 1.8;
  font-size: 17px;
}

@media (max-width: 768px) {
  .downloads-header h2 {
    font-size: 36px;
  }
  
  .download-grid {
    grid-template-columns: 1fr;
  }
  
  .download-button {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .downloads-header h2 {
    font-size: 32px;
  }
  
  .downloads-header p {
    font-size: 18px;
  }
  
  .download-card-icon {
    font-size: 48px;
  }
}