
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    cursor: url('band_cursor.png') 16 16, auto;
    overflow: hidden;
}
@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: 320px;
    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;
    margin: 0 2%;
    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;
    }
  }
  
  
  .fullscreen-element {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none; 
    z-index: 999;
  }
  

  .image-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60vw; 
  }
  
.random-image {
    width: 100%;
    transition: transform 0.3s ease;
}



.marquee {
    position: fixed;
    top: 0;
    width: 100vw;
    overflow: hidden;
    background: #fff;
    color: #000;
    filter: blur(0.1px);
    padding: 5px 0;
    z-index: 20;
}

.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%); }
}
.nav-icon:hover {
    transform: scale(1.1); 
    transition: transform 0.3s ease; 
}
