/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #00ffcc;
  background-color: #000000;
  overflow-x: hidden;
}

/* Cyberpunk Background */
#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 */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: transparent(0, 0, 0, 0.8);
  border-bottom: 1px solid #00ffcc;
  position: sticky;
  top: 0;
  z-index: 999;
}

.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;
}

/* Hero */
.hero {
  position: relative;
  padding: 8rem 2rem 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(0,255,204,0.1));
  animation: fade-in 2s ease-out forwards;
}
.hero h1 {
  font-size: 3rem;
  color: #00ffcc;
}
.hero h1 span {
  color: #00ff88;
}
.hero p {
  margin: 1rem 0;
  font-size: 1.2rem;
}
.hero .typing-effect {
  font-size: 1.5rem;
  color: #ff00ff;
  font-weight: bold;
  margin: 1.5rem 0;
  animation: typing 4s steps(30, end), blink-caret 0.75s step-end infinite;
}

.hero-content {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.cta {
  padding: 0.7rem 2rem;
  background-color: #00ffcc;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 0 15px #00ffcc;
  transition: background 0.3s;
}
.cta:hover {
  background-color: #ff00ff;
  color: white;
  box-shadow: 0 0 25px #ff00ff;
}

/* Features */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 2rem;
  background-color: rgba(0, 0, 0, 0.6);
}

.feature {
  background-color: transparent;
  border: 1px solid #00ffcc;
  padding: 2rem;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #00ffcc;
}
.feature img {
  width: 80px;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem;
  background-color: transparent(0, 0, 0, 0.8);
  border-top: 1px solid #00ffcc;
  font-size: 0.9rem;
}

footer .socials {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

footer .socials a {
  color: #00ffff;
  font-size: 1.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

footer .socials a:hover {
  color: #ff00ff;
  transform: scale(1.2);
}


@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .features {
    flex-direction: column;
    align-items: center;
  }
}

.reveal-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease-out, transform 1s ease-out;
}

.reveal-item.active {
  opacity: 1;
  transform: translateY(0);
}

.typing-effect {
  font-size: 1.3rem;
  color: #ff00ff;
  font-weight: bold;
  margin-bottom: 1.5rem;
  min-height: 1.5em; /* reserves space while typing */
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #00ffcc;
  animation: blink 0.7s steps(1) infinite;
}

@keyframes blink {
  0%, 100% { border-color: transparent; }
  50% { border-color: #00ffcc; }
}

