body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000;
  color: #00ffcc;
  overflow-x: hidden;
}
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -2;
  pointer-events: none;
  background: transparent;
}



.cyberpunk-bg {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -3;
  background: radial-gradient(ellipse at center, #0f0f0f 0%, #000000 100%);
  animation: glow-pulse 6s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.3); }
}

/* Header/Footer */
header, footer {
  padding: 1rem 2rem;
  background-color: rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid #00ffcc;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #00ffcc;
}
.logo span {
  color: #00ff88;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
nav ul li a {
  color: #00ffff;
  text-decoration: none;
  transition: 0.3s ease;
}
nav ul li a:hover,
nav ul li a.active {
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff;
}
footer {
  text-align: center;
  border-top: 1px solid #00ffcc;
  font-size: 0.9rem;
}
footer .socials a {
  color: #00ffff;
  text-decoration: none;
  margin: 0 0.5rem;
}

.logo-video {
  width: 100%;
  max-width: 250px;
  border-radius: 8px;
  box-shadow: 0 0 15px #00ffcc;
  margin-bottom: 1rem;
}

.media-hero {
  min-height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Gallery */
.media-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem 2rem;
  justify-content: center;
}
.media-card {
  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid #00ffcc;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  padding: 1.5rem;
  box-shadow: 0 0 12px #00ffcc;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.media-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #ff00ff;
}
.media-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}
