/* Global styles */
body {
  font-family: 'Orbitron', sans-serif;
  background-color: #0d0d0d;
  color: white;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Header styles */
header {
  text-align: center;
  padding: 40px 0;
  background: linear-gradient(45deg, #ff00ff, #00ffff);
  border-bottom: 2px solid #ffffff;
}

h1 {
  font-size: 3em;
  color: #fff;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #00ffff, 0 0 30px #00ff99;
}

/* Products section */
.products {
  padding: 40px 20px;
  text-align: center;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

/* Individual product cards */
.product-card {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 12px;
  width: 250px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 255, 153, 0.7);
}

/* Product title and price */
.product-card h3 {
  font-size: 1.5em;
  color: #00ff99;
  text-shadow: 0 0 5px #00ff99, 0 0 10px #00ff99;
}

.product-card p {
  font-size: 1.2em;
  color: #f0f0f0;
  margin: 10px 0;
}

/* Buy button styles */
.buy-btn {
  background-color: #25D366;
  color: white;
  padding: 12px;
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.buy-btn:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
}

.buy-btn i {
  margin-right: 6px;
}

/* Footer styles */
footer {
  text-align: center;
  padding: 20px 0;
  background-color: #111;
  margin-top: 50px;
  color: #f0f0f0;
  font-size: 1em;
  text-shadow: 0 0 5px #ff00ff;
}

/* Responsive design */
@media (max-width: 768px) {
  .product-list {
    flex-direction: column;
  }

  .product-card {
    width: 80%;
    margin-bottom: 20px;
  }
}