* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: linear-gradient(to right, #eef2ff, #f8fafc);
}

header {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
}

.container {
  padding: 30px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  border-radius: 15px;
  padding: 30px 20px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
  position: relative;
}

.card:hover {
  transform: translateY(-8px);
}

.badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.code {
  font-size: 0.8rem;
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 5px;
}

.title {
  font-size: 1.1rem;
  font-weight: 600;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2563eb;
  margin: 10px 0;
}

.info {
  font-size: 0.9rem;
  color: #555;
}

/* DOWNLOAD SECTION */
.download-panel {
  margin: 40px 30px 0;
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border-left: 5px solid #2563eb;
}

.download-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.download-btn {
  background: #2563eb;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.footer {
  text-align: center;
  padding: 20px;
  margin-top: 30px;
  background: #1e40af;
  color: white;
}

@media (max-width: 768px) {
  .download-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .download-btn {
    width: 100%;
    text-align: center;
  }
}