::selection {
  background: #39FF14;
  color: #000;
}

body {
  background: #1A1A1A;
  color: #ffffff;
  font-family: sans-serif;
  padding: 40px;
  line-height: 1.6;
  max-width: 800px; 
  margin: 0 auto; 
}
p {
  color: #ffffff;
}
h1 {
  letter-spacing: 3px;  
font-weight: bold;
    color: #39FF14;
    text-transform: uppercase;
    border-bottom: 2px solid #39FF14;
  font-size: 2px;
}


img{
    width: 300px;
    border-style: solid;
    border-radius: 20px;
    border-width: 5px;
    border-color: #39FF14;
  text-shadow: 0 0 10px #39FF14, 0 0 20px #39FF14;
  letter-spacing: 2px;
  }



  a:link, a:visited {
    color: #39FF14;
    font-weight: bold;
    text-decoration: none;
}
a:hover {
  color: #1A1A1A;
  background-color: #39FF14;
  padding: 5px 10px;
  border-radius: 5px;
  transition: 0.2s;
}


.YOU_CANT_SEE_ME:hover {
  background-image: url("2006_2.jpg");
  filter: brightness(1.2);
  transform: scale(1.05);
}

.YOU_CANT_SEE_ME:hover {
  background-image: url("2006_2.jpg");
  filter: brightness(1.3);
  transform: scale(1.05);
  box-shadow: 0 0 20px #39FF14;
}

body {
  background: radial-gradient(circle, #2a2a2a 0%, #0a0a0a 100%);
  color: #ffffff;
}

@keyframes belt-glow {
  0% { box-shadow: 0 0 5px #39FF14; }
  50% { box-shadow: 0 0 25px #39FF14; }
  100% { box-shadow: 0 0 5px #39FF14; }
}

.YOU_CANT_SEE_ME {
  animation: belt-glow 3s infinite;
}
  
  h1 {
    font-weight: 900;
    color: #39FF14;
    text-transform: uppercase;
    font-style: italic;
    text-shadow: 3px 3px 0px #000, 5px 5px 0px #222;
    border-bottom: 4px solid #39FF14;
    display: inline-block;
      background: linear-gradient(to right, #39FF14, #ffffff, #39FF14);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-size: 3rem;
      font-weight: 900;
      filter: drop-shadow(0 0 5px rgba(57, 255, 20, 0.5));
    }


.YOU_CANT_SEE_ME:hover {
  background-image: url("YOU_CANT_SEE_ME.jpg");
  filter: brightness(1.3) contrast(1.2);
  transform: scale(1.1) rotate(-2deg);
  box-shadow: 0 0 40px #39FF14;
}

.YOU_CANT_SEE_ME:hover {
  background-image: url("YOU_CANT_SEE_ME.jpg");
  animation: flicker 0.2s infinite; /* Rapid flickering effect */
  filter: brightness(1.5) contrast(1.5);
}

@keyframes flicker {
  0% { opacity: 1; }
  50% { opacity: 0.8; }
  100% { opacity: 1; }
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #39FF14; /* Your Neon Green */
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50%; /* Makes it a circle */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px #39FF14;
  z-index: 9999;
  transition: 0.3s;
}

.back-to-top:hover {
  transform: scale(1.2) rotate(360deg);
  background-color: #ffffff;
  box-shadow: 0 0 25px #ffffff;
}

h1 {
  /* ... keep your current h1 styles ... */
  animation: entrance 1s ease-out forwards;
}

@keyframes entrance {
  from {
    transform: translateX(-100%); /* Start off-screen to the left */
    opacity: 0;
  }
  to {
    transform: translateX(0); /* End in the normal spot */
    opacity: 1;
  }
  
  .belt-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #39FF14;
    padding: 20px;
    border-radius: 15px;
    transition: 0.5s;
  }

  .belt-card:hover {
    transform: perspective(1000px) rotateX(10deg) rotateY(-5deg);
    box-shadow: 0 20px 50px rgba(57, 255, 20, 0.3);
    background: rgba(57, 255, 20, 0.1);
  }
  
  .back-to-top:active {
    transform: scale(0.9); /* Shrinks slightly when clicked */
    box-shadow: 0 0 5px #39FF14; /* Glow gets smaller */
    filter: brightness(0.8);
  }
  
  .back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #39FF14;
    color: #000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000;
    transition: 0.1s; 
  }


  .back-to-top:hover {
    transform: scale(1.1); 
    background-color: #ffffff;
    box-shadow: 0 0 20px #39FF14;
  }

  .back-to-top:active {
    transform: scale(0.8);
    background-color: #1a1a1a;
    color: #39FF14;
    box-shadow: inset 0 0 10px #000;
  }
  
 