:root {
    /* Original theme */
    /* --neon-blue: #00f3ff;
    --dark-bg: #050505;
    --accent-color: #F4C2C2;
    --modal-bg: rgba(5, 5, 5, 0.95); */

    /* New cyberpunk theme */
    --neon-blue: #FFE45C;     /* Yellow */
    --dark-bg: #000000;       /* Deep navy blue */
    --accent-color: #ffff00;  /* Hot pink */
    --secondary-accent: #8b61ff; /* Purple */
    --modal-bg: rgba(10, 11, 26, 0.95);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: default !important;
}

body {
    background-color: var(--dark-bg);
    color: white;
    overflow-x: hidden;
    cursor: default;
}

.hero {
    min-height: 100vh;
    position: relative;
    background: linear-gradient(45deg, #070817, var(--dark-bg));
    overflow: hidden;
    padding-bottom: 4rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Remove or comment out this background image */
    /* background: url('/api/placeholder/1920/1080') center/cover; */
    opacity: 0.15;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--neon-blue) 1px, transparent 1px),
        linear-gradient(90deg, var(--neon-blue) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.05;
}

.content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--neon-blue);
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--neon-blue);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s;
    /* Secondary cursor - shows it's clickable */
    cursor: pointer;
}

.nav-links a:hover {
    color: var(--neon-blue);
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
    margin-top: 5rem;
    background: linear-gradient(45deg, var(--neon-blue), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue);
    }
    to {
        text-shadow: 0 0 20px var(--neon-blue), 0 0 30px var(--neon-blue);
    }
}

.villages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.village-card {
  /* Updated background with subtle gradient */
  background: linear-gradient(
      145deg,
      rgba(10, 11, 26, 0.8) 0%,
      rgba(15, 20, 45, 0.9) 100%
  );
  border: 1px solid rgba(15, 240, 252, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.village-card:hover {
  transform: translateY(-5px);
  border-color: var(--neon-blue);
  box-shadow: 
      0 8px 25px rgba(0, 0, 0, 0.3),
      0 0 20px rgba(15, 240, 252, 0.2),
      inset 0 0 20px rgba(15, 240, 252, 0.05);
  background: linear-gradient(
      145deg,
      rgba(15, 20, 45, 0.9) 0%,
      rgba(20, 25, 55, 0.95) 100%
  );
}

.village-card::before {
  background: linear-gradient(
      45deg, 
      transparent, 
      rgba(15, 240, 252, 0.05)
  );
}

.village-title {
  color: var(--neon-blue);
  text-shadow: 0 0 5px rgba(15, 240, 252, 0.3);
}

.village-card p {
  color: #a0a0b8; /* Slightly blueish grey for better readability */
}

.village-icon {
    font-size: 2rem;
    color: var(--neon-blue);
    margin-bottom: 1rem;
}

.village-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--modal-bg);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-content {
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--neon-blue);
    border-radius: 15px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    position: relative;
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal.active .modal-content {
    transform: scale(1);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: white;
    cursor: pointer;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--neon-blue);
}

.modal-image {
    width: 50%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.modal-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-blue);
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    /* Use CSS variables for the gradient */
    background: linear-gradient(45deg, var(--neon-blue), var(--secondary-accent));
    color: black;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 2rem;
    margin-right: 1rem;
    transition: transform 0.3s;
    cursor: pointer !important;
}

.cta-button:hover {
    transform: scale(1.05);
    /* Reverse gradient on hover */
    background: linear-gradient(45deg, var(--secondary-accent), var(--neon-blue));
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Add these particle-specific styles */
.particle {
  position: absolute;
  background: linear-gradient(
      45deg,
      var(--cyber-yellow),  /* Yellow */
      var(--cyber-red)      /* Red */
  );
  border-radius: 50%;
  animation: float 3s infinite ease-in-out;
}

/* Add particle glow effect */
.particle::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: inherit;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.7;
}

@keyframes float {
  0%, 100% {
      transform: translateY(0) scale(1);
      opacity: 0.8;
  }
  50% {
      transform: translateY(-20px) scale(1.1);
      opacity: 0.4;
  }
}

.glitch, .glow {
  color: #ffff00;
  position: relative;
  animation: glitch 5s 5s infinite;
}

.glitch::before, .glow::before {
  content: attr(data-text);
  position: absolute;
  left: -2px;
  text-shadow: -5px 0 #ff0000;
  background: var(--dark-bg);
  overflow: hidden;
  top: 0;
  animation: noise-1 3s linear infinite alternate-reverse, glitch 5s 5.05s infinite;
}

.glitch::after, .glow::after {
  content: attr(data-text);
  position: absolute;
  left: 2px;
  text-shadow: -5px 0 #ffff00;
  background:  var(--dark-bg);
  overflow: hidden;
  top: 0;
animation: noise-2 3s linear infinite alternate-reverse, glitch 5s 5s infinite;
}

@keyframes glitch {
  1% {
    transform: rotateX(10deg) skewX(90deg);
  }
  2% {
    transform: rotateX(0deg) skewX(0deg);
  }
}
@keyframes noise-1 {
  3.3333333333% {
    clip-path: inset(41px 0 25px 0);
  }
  6.6666666667% {
    clip-path: inset(4px 0 51px 0);
  }
  10% {
    clip-path: inset(52px 0 12px 0);
  }
  13.3333333333% {
    clip-path: inset(97px 0 4px 0);
  }
  16.6666666667% {
    clip-path: inset(5px 0 21px 0);
  }
  20% {
    clip-path: inset(9px 0 23px 0);
  }
  23.3333333333% {
    clip-path: inset(39px 0 27px 0);
  }
  26.6666666667% {
    clip-path: inset(48px 0 33px 0);
  }
  30% {
    clip-path: inset(10px 0 7px 0);
  }
  33.3333333333% {
    clip-path: inset(68px 0 15px 0);
  }
  36.6666666667% {
    clip-path: inset(7px 0 23px 0);
  }
  40% {
    clip-path: inset(16px 0 55px 0);
  }
  43.3333333333% {
    clip-path: inset(45px 0 45px 0);
  }
  46.6666666667% {
    clip-path: inset(10px 0 23px 0);
  }
  50% {
    clip-path: inset(8px 0 41px 0);
  }
  53.3333333333% {
    clip-path: inset(6px 0 55px 0);
  }
  56.6666666667% {
    clip-path: inset(50px 0 31px 0);
  }
  60% {
    clip-path: inset(56px 0 4px 0);
  }
  63.3333333333% {
    clip-path: inset(27px 0 5px 0);
  }
  66.6666666667% {
    clip-path: inset(29px 0 26px 0);
  }
  70% {
    clip-path: inset(92px 0 5px 0);
  }
  73.3333333333% {
    clip-path: inset(77px 0 20px 0);
  }
  76.6666666667% {
    clip-path: inset(94px 0 6px 0);
  }
  80% {
    clip-path: inset(18px 0 32px 0);
  }
  83.3333333333% {
    clip-path: inset(17px 0 34px 0);
  }
  86.6666666667% {
    clip-path: inset(56px 0 21px 0);
  }
  90% {
    clip-path: inset(89px 0 6px 0);
  }
  93.3333333333% {
    clip-path: inset(80px 0 17px 0);
  }
  96.6666666667% {
    clip-path: inset(63px 0 32px 0);
  }
  100% {
    clip-path: inset(21px 0 67px 0);
  }
}
@keyframes noise-2 {
  0% {
    clip-path: inset(36px 0 54px 0);
  }
  3.3333333333% {
    clip-path: inset(19px 0 59px 0);
  }
  6.6666666667% {
    clip-path: inset(54px 0 42px 0);
  }
  10% {
    clip-path: inset(10px 0 16px 0);
  }
  13.3333333333% {
    clip-path: inset(1px 0 63px 0);
  }
  16.6666666667% {
    clip-path: inset(69px 0 25px 0);
  }
  20% {
    clip-path: inset(61px 0 29px 0);
  }
  23.3333333333% {
    clip-path: inset(99px 0 2px 0);
  }
  26.6666666667% {
    clip-path: inset(88px 0 13px 0);
  }
  30% {
    clip-path: inset(49px 0 12px 0);
  }
  33.3333333333% {
    clip-path: inset(45px 0 35px 0);
  }
  36.6666666667% {
    clip-path: inset(13px 0 10px 0);
  }
  40% {
    clip-path: inset(54px 0 10px 0);
  }
  43.3333333333% {
    clip-path: inset(89px 0 12px 0);
  }
  46.6666666667% {
    clip-path: inset(59px 0 21px 0);
  }
  50% {
    clip-path: inset(75px 0 21px 0);
  }
  53.3333333333% {
    clip-path: inset(93px 0 5px 0);
  }
  56.6666666667% {
    clip-path: inset(61px 0 20px 0);
  }
  60% {
    clip-path: inset(81px 0 3px 0);
  }
  63.3333333333% {
    clip-path: inset(78px 0 11px 0);
  }
  66.6666666667% {
    clip-path: inset(29px 0 65px 0);
  }
  70% {
    clip-path: inset(34px 0 52px 0);
  }
  73.3333333333% {
    clip-path: inset(50px 0 4px 0);
  }
  76.6666666667% {
    clip-path: inset(39px 0 62px 0);
  }
  80% {
    clip-path: inset(66px 0 7px 0);
  }
  83.3333333333% {
    clip-path: inset(5px 0 92px 0);
  }
  86.6666666667% {
    clip-path: inset(48px 0 44px 0);
  }
  90% {
    clip-path: inset(58px 0 2px 0);
  }
  93.3333333333% {
    clip-path: inset(66px 0 30px 0);
  }
  96.6666666667% {
    clip-path: inset(10px 0 38px 0);
  }
  100% {
    clip-path: inset(25px 0 75px 0);
  }
}
.scanlines {
  overflow: hidden;
  mix-blend-mode: difference;
}

.scanlines::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: repeating-linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.05) 0.5%, transparent 1%);
  animation: fudge 7s ease-in-out alternate infinite;
}

@keyframes fudge {
  from {
    transform: translate(0px, 0px);
  }
  to {
    transform: translate(0px, 2%);
  }
}
.glow {
  text-shadow: 0 0 1000px #dfbfbf;
  color: transparent;
  position: absolute;
  top: 0;
}

.subtitle {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 100;
  font-size: 0.8vw;
  color: rgba(165, 141, 141, 0.4);
  text-transform: uppercase;
  letter-spacing: 1em;
  text-align: center;
  position: absolute;
  left: 17%;
  animation: glitch-2 5s 5.02s infinite;
}

@keyframes glitch-2 {
  1% {
    transform: rotateX(10deg) skewX(70deg);
  }
  2% {
    transform: rotateX(0deg) skewX(0deg);
  }
}

.bulleted-section {
    margin-left: 40px; /* Indentation for the bullet points */
}

.spacer {
    height: 20px; /* Space between sections */
}

.site-footer {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 0px solid var(--neon-blue);
  padding: 1rem 0;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.site-footer p {
  color: #808080;
  font-size: 0.9rem;
  margin: 0;
}

:root {
  --neon-aqua: #00FFFF;
  --neon-pink: #FF69B4;
}

.music-player {
  position: fixed;
  bottom: 60px;
  right: 20px;
  width: 300px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  border-radius: 15px;
  padding: 15px;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(139, 97, 255, 0.2);
  box-shadow: 0 0 10px rgba(139, 97, 255, 0.3);
  opacity: 0.7;
}



.music-player:hover {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(0);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  opacity: 1;
}

.player-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.song-info {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 10px;
}

.song-info p {
  margin: 5px 0;
  color: white;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

#song-title {
  font-weight: bold;
  color: var(--neon-aqua);
  font-size: 1.1em;
}

#song-artist {
  color: var(--neon-pink);
  font-size: 0.9em;
}

#song-genre {
  color: #BBB;
  font-size: 0.8em;
}

.controls {
  display: flex;
  justify-content: space-around;
  margin: 10px 0;
}

.control-btn {
  background: none;
  border: 2px solid var(--neon-aqua);
  color: var(--neon-aqua);
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.control-btn:hover {
  background: var(--neon-aqua);
  color: black;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
}

.progress-container {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0, 255, 255, 0.2);
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(to right, var(--neon-blue), var(--accent-color));
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(255, 105, 180, 0.7);
}

@media (max-width: 768px) {
  .music-player {
      width: 250px;
      bottom: 10px;
      right: 10px;
  }
}



.music-player.minimized {
  width: fit-content;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
}

.player-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.minimized-title {
  margin: 0;
  color: var(--neon-aqua);
  font-size: 1em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.full-player {
  display: none;
}

.music-player:not(.minimized) .full-player {
  display: block;
}

.music-player:not(.minimized) .minimized-title {
  display: none;
}

.ripple {
    position: fixed;
    border: 2px solid #FF0033;
    width: 0;
    height: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    animation: rippleEffect 1s ease-out;
}

@keyframes rippleEffect {
    0% {
        width: 0;
        height: 0;
        opacity: 0.5;
        transform: translate(-50%, -50%);
    }
    100% {
        width: 500px;
        height: 500px;
        opacity: 0;
        transform: translate(-50%, -50%);
    }
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: auto;
}

/* Custom Cursor Styles */
body {
    /* Primary cursor - small target/crosshair */
    cursor: url('../media/cursors/target.png'), crosshair;
}

/* For clickable elements */
a, button, .cta-button, .nav-links a, .social-link {
    /* Secondary cursor - shows it's clickable */
    cursor: pointer !important;
}

/* For text selection */
.text-select {
    /* When selecting text */
    cursor: text !important;
}

/* For loading states */
.loading {
    /* When something is processing */
    cursor: wait !important;
}

/* For disabled elements */
.disabled {
    /* When element is not clickable */
    cursor: not-allowed !important;
}

/* Add glowing effect on hover */
a:hover, button:hover, .cta-button:hover, .nav-links a:hover, .social-link:hover {
    cursor: pointer;
    filter: drop-shadow(0 0 5px #FF0033);
}

/* Reset cursor styles */
* {
    cursor: url('../media/cursors/pointer.png'), default !important;
}

body {
    cursor: url('../media/cursors/pointer.png'), default !important;
}

/* For clickable elements - can use the same or a different cursor */
a, button, .cta-button, .nav-links a, .social-link {
    cursor: url('../media/cursors/pointer.png'), pointer !important;
}

/* Make sure particles don't interfere */
#particles-js {
    pointer-events: none;
}

/* Add hover effects */
a:hover, button:hover, .cta-button:hover, .nav-links a:hover, .social-link:hover {
    filter: drop-shadow(0 0 5px #FF0033);
}

/* Custom cursor base styles */
* {
    cursor: none !important;
}

/* Primary cursor dot */
body::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--neon-blue);
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue);
    transition: width 0.2s, height 0.2s, background 0.2s;
}

/* Secondary cursor ring */
body::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 1px solid var(--accent-color);
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}

/* Hover states for clickable elements */
a:hover ~ body::before,
button:hover ~ body::before,
.cta-button:hover ~ body::before,
.nav-links a:hover ~ body::before,
.social-link:hover ~ body::before {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
}

a:hover ~ body::after,
button:hover ~ body::after,
.cta-button:hover ~ body::after,
.nav-links a:hover ~ body::after,
.social-link:hover ~ body::after {
    width: 30px;
    height: 30px;
    border-color: var(--neon-blue);
}

/* Text selection cursor */
.text-select ~ body::before {
    width: 2px;
    height: 15px;
    border-radius: 0;
    background: var(--secondary-accent);
}

.text-select ~ body::after {
    opacity: 0;
}

/* Loading cursor */
.loading ~ body::before {
    animation: loadingCursor 1s infinite linear;
}

.loading ~ body::after {
    width: 30px;
    height: 30px;
    border-width: 2px;
    animation: loadingRing 1s infinite linear;
}

/* Disabled cursor */
.disabled ~ body::before {
    background: #666;
    box-shadow: none;
}

.disabled ~ body::after {
    border-color: #666;
    border-style: dashed;
}

@keyframes loadingCursor {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes loadingRing {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(-360deg); }
}

.custom-cursor {
    width: 8px;
    height: 8px;
    background: #FF0033;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
    box-shadow: 0 0 10px #FF0033;
}

.custom-cursor-ring {
    width: 30px;
    height: 30px;
    border: 2px solid #FFD700;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease-out;
}

/* Click animation */
.custom-cursor.click {
    transform: translate(-50%, -50%) scale(0.8);
}

.custom-cursor-ring.click {
    transform: translate(-50%, -50%) scale(1.2);
}

/* Hover effect for interactive elements */
a:hover ~ .custom-cursor,
button:hover ~ .custom-cursor,
.interactive:hover ~ .custom-cursor {
    transform: translate(-50%, -50%) scale(1.5);
    background: #FFD700;
    box-shadow: 0 0 10px #FFD700;
}

a:hover ~ .custom-cursor-ring,
button:hover ~ .custom-cursor-ring,
.interactive:hover ~ .custom-cursor-ring {
    border-color: #FF0033;
    width: 40px;
    height: 40px;
}

.security-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
}

.security-cursor::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: #00ff00;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px #00ff00;
}

.crosshair {
    position: absolute;
    background: transparent;
    border: 1px solid rgba(0, 255, 0, 0.5);
}

.horizontal {
    width: 100%;
    height: 1px;
    top: 50%;
    transform: translateY(-50%);
}

.vertical {
    width: 1px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.security-cursor-ring {
    position: fixed;
    width: 60px;
    height: 60px;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.scan-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, #00ff00, transparent);
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
    animation: scan 2s infinite;
}

/* Scanning animation */
.security-cursor.scanning::before {
    animation: blink 0.5s infinite;
}

.security-cursor.scanning .scan-line {
    opacity: 1;
}

.security-cursor-ring.scanning {
    border-color: rgba(255, 0, 0, 0.5);
    animation: scanPulse 0.5s infinite;
}

@keyframes scan {
    0% {
        transform: translateY(-20px);
    }
    50% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes scanPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        border-color: rgba(255, 0, 0, 0.5);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        border-color: rgba(255, 0, 0, 0.8);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        border-color: rgba(255, 0, 0, 0.5);
    }
}

/* Hover states for interactive elements */
a:hover ~ .security-cursor::before,
button:hover ~ .security-cursor::before {
    background: #ff0000;
    box-shadow: 0 0 10px #ff0000;
}

a:hover ~ .security-cursor .crosshair,
button:hover ~ .security-cursor .crosshair {
    border-color: rgba(255, 0, 0, 0.5);
}

a:hover ~ .security-cursor-ring,
button:hover ~ .security-cursor-ring {
    border-color: rgba(255, 0, 0, 0.3);
}

* {
    cursor: none !important;
}

.security-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
}

.target-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: #FF0033;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px #FF0033;
}

.scan-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 0, 51, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: scanRotate 2s linear infinite;
}

.scan-ring::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid transparent;
    border-top: 2px solid #FF0033;
    border-radius: 50%;
}

.security-cursor-ring {
    position: fixed;
    width: 50px;
    height: 50px;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 0, 51, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Scanning animation */
.security-cursor.scanning .target-dot {
    animation: blink 0.5s infinite;
}

.security-cursor.scanning .scan-ring {
    animation: scanRotate 1s linear infinite;
}

.security-cursor-ring.scanning {
    animation: scanPulse 0.5s infinite;
}

@keyframes scanRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes scanPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        border-color: rgba(255, 0, 51, 0.5);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        border-color: rgba(255, 0, 51, 0.8);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        border-color: rgba(255, 0, 51, 0.5);
    }
}

/* Hover states */
a:hover ~ .security-cursor .target-dot,
button:hover ~ .security-cursor .target-dot {
    transform: translate(-50%, -50%) scale(1.5);
}

a:hover ~ .security-cursor .scan-ring,
button:hover ~ .security-cursor .scan-ring {
    width: 30px;
    height: 30px;
}

a:hover ~ .security-cursor-ring,
button:hover ~ .security-cursor-ring {
    width: 60px;
    height: 60px;
}

/* Add or update the Discord icon styles */
.discord-icon {
    filter: brightness(0) saturate(100%) invert(76%) sepia(61%) saturate(2878%) hue-rotate(359deg) brightness(101%) contrast(110%);
    transition: transform 0.3s ease;
}

.discord-icon:hover {
    transform: scale(1.1);
}

.cyber-map {
    position: relative;
    background: #000;
    border: 2px solid #FF0033;
    box-shadow: 0 0 20px rgba(255, 0, 51, 0.3);
    overflow: hidden;
}

.cyber-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(255, 0, 51, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 51, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.booth {
    position: absolute;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.hex-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 51, 0.1);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border: 1px solid #FF0033;
    transition: all 0.3s ease;
}

.booth-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFFF00;
    z-index: 1;
}

.booth-label {
    font-size: 0.8em;
    text-align: center;
    margin-top: 5px;
}

.booth-tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #FF0033;
    padding: 10px;
    border-radius: 4px;
    font-size: 0.8em;
    width: 150px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    top: 100%;
}

.booth:hover .booth-tooltip {
    opacity: 1;
}

.scan-effect {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #FF0033;
    animation: scan 1s linear;
}

.path-line {
    stroke: #FF0033;
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 2s forwards;
}

@keyframes scan {
    0% { top: 0; }
    100% { top: 100%; }
}

@keyframes drawPath {
    to { stroke-dashoffset: 0; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

#player {
    position: absolute;
    width: 30px;
    height: 30px;
    transform: translate(-50%, -50%);
    z-index: 1000;
    transition: all 0.1s linear;
}

#player i {
    color: #FFFF00;
    font-size: 24px;
    filter: drop-shadow(0 0 5px #FF0033);
}

#booth-info {
    position: absolute;
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid #FF0033;
    padding: 20px;
    border-radius: 8px;
    color: #FFFF00;
    z-index: 1001;
    max-width: 300px;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 20px rgba(255, 0, 51, 0.3);
}

.booth-info-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.booth-icon {
    color: #FF0033;
    animation: pulse 2s infinite;
}

.key-prompt kbd {
    background: #FF0033;
    padding: 2px 8px;
    border-radius: 4px;
    color: #FFFF00;
}

.booth-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: #000;
    border: 2px solid #FF0033;
    border-radius: 10px;
    padding: 20px;
    max-width: 800px;
    width: 90%;
    color: #FFFF00;
    position: relative;
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #FF0033;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    background: none;
    border: none;
    color: #FF0033;
    font-size: 24px;
    cursor: pointer;
}

.code-scanner {
    position: relative;
    background: #111;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
}

.scan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FF0033;
}

@keyframes scanCode {
    from { top: 0; }
    to { top: 100%; }
}

.deps-viewer {
    background: #111;
    padding: 20px;
    border-radius: 5px;
}

button {
    background: #FF0033;
    color: #FFFF00;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background: #FFFF00;
    color: #FF0033;
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.map-container {
    position: relative;
    width: 100%;
    height: 80vh;  /* Fixed height */
    overflow: hidden;  /* Prevent scrolling inside container */
    border: 2px solid #FF0033;
    margin: 20px auto;
    background: #000;
}

.map {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#player {
    position: absolute;
    width: 30px;
    height: 30px;
    transform: translate(-50%, -50%);
    z-index: 1000;
    transition: all 0.1s linear;
    pointer-events: none;  /* Prevent player from blocking interactions */
}

#player i {
    color: #FFFF00;
    font-size: 24px;
    filter: drop-shadow(0 0 5px #FF0033);
    animation: pulse 2s infinite;
}

/* Improved walking animation */
@keyframes walk {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1) rotate(0deg); 
    }
    25% { 
        transform: translate(-50%, -50%) scale(0.95) rotate(-5deg); 
    }
    75% { 
        transform: translate(-50%, -50%) scale(0.95) rotate(5deg); 
    }
}

@keyframes pulse {
    0%, 100% { 
        filter: drop-shadow(0 0 5px #FF0033);
    }
    50% { 
        filter: drop-shadow(0 0 10px #FF0033);
    }
}

#player.walking {
    animation: walk 0.3s infinite;
}

/* Add movement instructions */
.movement-instructions {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    border: 1px solid #FF0033;
    border-radius: 5px;
    color: #FFFF00;
    font-size: 0.9em;
    z-index: 1000;
}

.movement-instructions kbd {
    background: #FF0033;
    padding: 2px 6px;
    border-radius: 3px;
    margin: 0 2px;
}

.booth-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid #FF0033;
    border-radius: 10px;
    padding: 25px;
    z-index: 2000;
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 0 20px rgba(255, 0, 51, 0.3);
    backdrop-filter: blur(5px);
}

.booth-popup.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.popup-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #FF0033;
}

.popup-header i {
    color: #FFFF00;
}

.popup-header h2 {
    color: #FFFF00;
    margin: 0;
    font-size: 1.5em;
}

.popup-body {
    color: #fff;
}

.booth-main-desc {
    color: #FFFF00;
    font-size: 1.1em;
    margin-bottom: 15px;
}

.booth-detailed-info ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.booth-detailed-info li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #fff;
}

.booth-detailed-info li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #FF0033;
}

.popup-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.close-popup-btn {
    background: #FF0033;
    color: #FFFF00;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.close-popup-btn:hover {
    background: #FFFF00;
    color: #FF0033;
    transform: scale(1.05);
}

.directions {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 0, 51, 0.1);
    border-left: 3px solid #FF0033;
    border-radius: 3px;
}

.directions p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #fff;
}

.directions i {
    color: #FF0033;
    font-size: 1.2em;
}

.next-stop {
    color: #FFFF00;
    font-weight: bold;
    text-decoration: none;
    padding: 2px 5px;
    background: rgba(255, 0, 51, 0.2);
    border-radius: 3px;
}
