body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}




body {
  cursor: url('band_cursor.png') 16 16, auto;
  background: url('background.png') no-repeat center;
  background-attachment: fixed;
  background-size: 80% auto;
  min-height: 200vh;
  overflow-y: hidden;
}

.arrow{
position: fixed;
width: 10vw;
top: 45%;
animation:     arrowBounce 1s infinite, 
    blink 1s infinite;
}
@font-face {
  font-family: 'FTScenikMono';
  src: url('FTScenikMonoTrial-Book.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

.responsive-text {
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 2vw;
  font-family: 'FTScenikMono', sans-serif;
  letter-spacing: -2px; 
  color: #333;
  padding: 20px;
  z-index: 9999;
}

.bottom-nav {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 300px; 
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  border-radius: 30px;
  display: flex;
  justify-content: space-around; 
  align-items: center;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15), inset 0 2px 4px rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 9999;
}

.bottom-nav img {
  width: clamp(30px, 8vw, 50px);
  height: clamp(30px, 8vw, 50px);
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
  opacity: 0.5;
  filter: grayscale(50%);
}


.bottom-nav img.active {
  opacity: 1;
  filter: grayscale(0%); 
}

@media (max-width: 480px) {
  .bottom-nav {
    width: 90%;
    border-radius: 20px;
    padding: 8px;
  }
  
  .bottom-nav img {
    border-radius: 8px;
  }
}

@media (max-width: 320px) {
  .bottom-nav {
    width: 95%;
    padding: 5px;
  }
}

@media (max-width: 480px) {
  .bottom-nav {
    width: 90%;
    border-radius: 20px;
    padding: 8px;
  }
  
  .bottom-nav img {
    border-radius: 8px;
  }
}

@media (max-width: 320px) {
  .bottom-nav {
    width: 95%;
    padding: 5px;
  }
}



@media (max-width: 480px) {
  .bottom-nav {
    width: 90%; 
    border-radius: 20px; 
    padding: 8px;
  }
  
  .bottom-nav img {
    border-radius: 8px; 
  }
}

@media (max-width: 320px) {
  .bottom-nav {
    width: 95%; 
    padding: 5px;
  }
}
.fullscreen-element {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none; 
  z-index: 999;
}




@keyframes arrowBounce {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}

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

.marquee {
  position: fixed;
  top: 0;
  width: 100vw;
  overflow: hidden;
  background: rgb(0, 0, 0);
  color: rgba(0, 255, 47, 0.7);
  filter: blur(0.1px);
  padding: 5px 0;
  z-index: 20;
  font-size: 1.3vw; 
}


.marquee-inner {
  display: flex;
  width: 200vw;
  animation: marquee 15s linear infinite;
}

.marquee-content {
  flex: 1;
  display: flex;
  justify-content: space-around;
  white-space: nowrap;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.scanner-top-image{
position: fixed;
  right: 20%;
  top: 47%;
  transform: translate(50%, -50%);
  width: 90vw;
  z-index: 999;
}
.scanner-topimage {
  width: 100%;
  display: block;
  z-index: 9999;
}




.scanner-container {
  position: fixed;
  right: 20%;
  top: 47%;
  transform: translate(50%, -50%);
  width: 90vw;
  z-index: 10;
}

.scanner {
  width: 100%;
  display: block;
  z-index: 99;
}


.scan-line {
  position: absolute;
  left: 0;
  width: 80%;
  height: 4px; 
  background: rgba(0, 255, 47, 0.7); 
  filter: blur(2px);
  animation: scanLine 3s linear infinite;
  z-index: 3;
}

@keyframes scanLine {
  0% {
    top: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    top: 50%;
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}


.xray {
  filter: invert(1) grayscale(0.7) contrast(1.8) brightness(1.6) drop-shadow(0 0 10px rgba(39, 39, 119, 0.5));
  mix-blend-mode: screen;
}



.band-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index:100;
}


.band {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}


.band[style*="--direction: left"] {
  left: -30%;
  animation: moveBandLeft 3s linear forwards;
}
.band[style*="--direction: right"] {
  right: -30%;

  animation: moveBandLeft 3s linear forwards;
}


@keyframes moveBandLeft {
  from { left: -30%; right: auto; }
  to { left: 110%; right: auto; }
}

.nav-icon:hover {
  transform: scale(1.1); 
  transition: transform 0.3s ease; }
