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: transparent(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 {
  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;
}

/* Hero */
.more-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* About Details */
.about-details {
  padding: 3rem 2rem;
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.about-block {
  background-color: transparent(0, 0, 0, 0.7);
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid #00ffcc;
  box-shadow: 0 0 15px #00ffcc;
}
.about-block h2 {
  color: #ff00ff;
  margin-bottom: 1rem;
}
.about-block ul {
  padding-left: 1.2rem;
}
.cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 2rem;
  background-color: #00ffcc;
  color: #000;
  border-radius: 5px;
  box-shadow: 0 0 10px #00ffcc;
  text-decoration: none;
  transition: 0.3s ease;
}
.cta:hover {
  background-color: #ff00ff;
  color: white;
  box-shadow: 0 0 15px #ff00ff;
}
