body {
  background-color: #0d0d0d;
  color: #00ff00;
  font-family: "Orbitron", sans-serif;
}

.button:hover {
  animation: glitch-hover 300ms linear infinite;
}

.circuit-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/assets/images/circuit-pattern.svg");
  animation: circuitAnimation 20s linear infinite;
  opacity: 0.2;
}
@keyframes circuitAnimation {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.neon-text {
  color: #ff0;
  text-shadow: 0 0 5px #ff0, 0 0 20px #ff0, 0 0 40px #ff0;
  animation: neon-pulse 2s infinite alternate;
}

.hero {
  text-align: center;
  padding: 50px 20px;
  color: #ff0;
}
.hero .hero-content {
  animation: flicker 2s infinite alternate;
  border: 2px solid #ff0;
  padding: 20px;
  background: linear-gradient(to right, rgba(13, 13, 13, 0.7), rgba(20, 20, 20, 0.2));
  box-shadow: 0 0 10px #ff0;
}
.hero .hero-content h2 {
  position: relative;
  font-size: 2.5rem;
  color: #ff0;
  animation: glitchEffect 2s infinite alternate-reverse;
}
.hero .neon-glow {
  text-shadow: 0 0 10px #ff0, 0 0 20px #ff0, 0 0 30px #ff0, 0 0 40px #ff0;
}

.nav-link {
  color: #9f00ff;
  text-decoration: none;
  position: relative;
}
.nav-link:hover {
  animation: glitch-hover 300ms linear infinite;
}
.nav-link::before, .nav-link::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
  color: #00ffcc;
}
.nav-link::after {
  color: #ff00ff;
  z-index: -2;
}

.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.posts-grid .post-card {
  background: #1a1a1a;
  padding: 15px;
  border: 2px solid #ff0;
  border-radius: 5px;
  color: #00ff00;
  box-shadow: 0 0 10px #ff0;
  transition: transform 300ms ease;
}
.posts-grid .post-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 0 20px #ff00ff;
}

.section-divider {
  height: 4px;
  width: 100%;
  background: linear-gradient(to right, #ff00ff, #00ffcc);
  animation: gradientShift 4s linear infinite;
}

.skills-section, .experience-section {
  padding: 50px 20px;
  text-align: center;
}
.skills-section .section-title, .experience-section .section-title {
  font-size: 2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #ff0;
}
.skills-section .skills-grid, .experience-section .skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  padding-top: 20px;
}
.skills-section .skills-grid .skill-item, .experience-section .skills-grid .skill-item {
  padding: 15px;
  border: 2px solid #00ff00;
  color: #00ff00;
  background: #1a1a1a;
  box-shadow: 0 0 10px #00ff00;
  transition: box-shadow 300ms ease-in-out;
}
.skills-section .skills-grid .skill-item:hover, .experience-section .skills-grid .skill-item:hover {
  box-shadow: 0 0 20px #ff0;
}
.skills-section .experience-timeline, .experience-section .experience-timeline {
  padding-top: 20px;
}
.skills-section .experience-timeline .experience-item, .experience-section .experience-timeline .experience-item {
  padding: 15px;
  border: 2px solid #00ff00;
  color: #00ff00;
  background: #1a1a1a;
  box-shadow: 0 0 10px #00ff00;
  margin-bottom: 20px;
}
.skills-section .experience-timeline .experience-item:hover, .experience-section .experience-timeline .experience-item:hover {
  box-shadow: 0 0 20px #ff0;
}

.site-footer {
  padding: 20px;
  text-align: center;
  border-top: 1px solid #00ff00;
}
.site-footer .footer-content .social-links img {
  width: 40px;
  height: 40px;
  margin: 10px;
  transition: transform 0.3s ease;
}
.site-footer .footer-content .social-links img:hover {
  transform: rotate(15deg) scale(1.1);
  filter: hue-rotate(90deg);
}

@keyframes neon-pulse {
  from {
    text-shadow: 0 0 5px #ff0, 0 0 20px #ff0, 0 0 40px #ff0;
  }
  to {
    text-shadow: 0 0 10px #ff0, 0 0 30px #ff0, 0 0 60px #ff0;
  }
}
@keyframes glitch-hover {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(2px, -2px);
  }
  60% {
    transform: translate(-3px, 1px);
  }
  80% {
    transform: translate(3px, -1px);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes glitchEffect {
  0% {
    text-shadow: 2px 2px #ff00ff, -2px -2px #00ffff;
  }
  10% {
    text-shadow: -2px -2px #ff00ff, 2px 2px #00ffff;
  }
  20% {
    text-shadow: 2px -2px #ff00ff, -2px 2px #00ffff;
  }
  100% {
    text-shadow: 0 0 #ff00ff, 0 0 #00ffff;
  }
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
@keyframes flicker {
  0% {
    opacity: 0.9;
  }
  5% {
    opacity: 0.75;
  }
  10% {
    opacity: 0.95;
  }
  15% {
    opacity: 0.85;
  }
  20% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}

/*# sourceMappingURL=main.css.map */
