/* CSS */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #0f0c29; /* Deep cyberpunk purple */
  color: #fff;
  font-family: 'Orbitron', sans-serif;
}

.product-showcase {
  background: linear-gradient(to bottom, #0f0c29, #302b63, #24243e);
  padding: 60px 20px;
  color: #fff;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #00ffe7;
  text-shadow: 0 0 10px #00ffe7;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #00ffe7;
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.3s ease;
  box-shadow: 0 0 20px #00ffe7;
}

.product-card:hover {
  transform: scale(1.05);
}

.product-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 1.5rem;
  color: #ff00c8;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 20px;
}

.product-card button {
  background: #ff00c8;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 0 10px #ff00c8;
}

.product-card button:hover {
  background: #ff33d4;
}