.glitch-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 190px;
  background: rgba(10, 10, 10, 0.85);
  border-right: 2px solid var(--accent-color);
  padding: 2em 1em;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 4px 0 12px rgba(255, 102, 204, 0.2);
  backdrop-filter: blur(3px);
}

.glitch-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.glitch-sidebar li {
  margin-bottom: 1.5em;
}

.glitch-sidebar a {
  display: block;
  font-family: 'Share Tech Mono', monospace;
  font-size: 1em;
  color: #66ffff;
  padding: 0.5em 0.75em;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-left: 4px solid var(--accent-color);
  background: linear-gradient(90deg, rgba(255, 102, 204, 0.2) 0%, transparent 100%);
  transition: all 0.2s ease-in-out;
  text-shadow:
    0 0 4px #00ffff,
    0 0 8px #ff66cc;
  position: relative;
}

.glitch-sidebar a:hover {
  background-color: #ff339980;
  border-left-color: #00ffff;
  color: #ffffff;
  animation: glitch-pulse 0.3s infinite alternate;
}

@keyframes glitch-pulse {
  0% {
    transform: skew(0deg);
    text-shadow: 1px 0 #ff00ff, -1px 0 #00ffff;
  }
  100% {
    transform: skew(1deg, -1deg);
    text-shadow: -1px 0 #ff00ff, 1px 0 #00ffff;
  }
}

body {
  margin-left: 190px;
}

@media (max-width: 768px) {
  .glitch-sidebar {
    display: none;
  }

  body {
    margin-left: 0;
  }
}
