body {
  background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
  font-family: 'Segoe UI', sans-serif;
  color: #f1f1f1;
  margin: 0;
  padding: 0;
}

header {
  background: #1a1a2e;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

header h1 {
  color: #ff00cc;
  margin-bottom: 10px;
}

nav a {
  margin: 0 10px;
}

.btn-cyber {
  background: linear-gradient(135deg, #ff00cc, #3333ff);
  color: white !important;
  border: none;
  transition: 0.3s ease;
}
.btn-cyber:hover {
  transform: scale(1.03);
  box-shadow: 0 0 10px #ff00cc;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 10px;
  margin-top: 40px;
}

.producto-box {
  background: #1a1a2e;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
  margin: 15px;
  padding: 20px;
  max-width: 280px;
  text-align: center;
  color: #fff;
}

.producto-box img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 10px;
}

.producto-box:hover {
  transform: scale(1.03);
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 20px #ff00ccaa;
}

.producto-box h4 {
  color: #cc66ff;
  text-shadow: 0 0 4px #f0f;
}

.producto-box strong {
  color: #0ff;
}

.badge-nuevo {
  background: #ff00cc;
  color: white;
  font-size: 0.7rem;
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  border-radius: 6px;
}

.producto-box-container {
  position: relative;
}

.neon-box {
  border-radius: 15px;
  box-shadow: 0 0 15px #ff00ff44;
}

/* Modal estilo */
.modal-content {
  background-color: #1a1a2e;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
}
