html, body {
    margin: 0;
    padding: 0;
    background: black;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}

a {
  pointer-events: auto;
}

canvas {
    display: block;
    width: 100vw;
    height: 100vh;
}

#staticCanvas {
  z-index: 1;
}
#animatedCanvas {
  z-index: 2;
}

#topBanner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background-color: rgba(29, 29, 29, 0.4);
    padding-left: 20px;
    z-index: 10;
}

#hamburgerButton {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

#hamburgerButton:hover {
    color: #00ffd0;
}


.bannerTitle {
    position: absolute;
    top:0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    font-family: "Tilt Neon", sans-serif;
    color: white;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
      "XROT" 0,
      "YROT" 0;
    opacity: 1;
    transition: opacity 0.4s ease;
}

#bannerBackArrow {
    position: absolute;
    left: 92%;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

#modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  
#modal-overlay.hidden {
    display: none;
}

#modal-window {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    width: 80%;
    max-width: 90%;
    max-height: 80vh;
    overflow: auto;
    padding: 20px;
    position: relative;
    color: white;
  }
  
#modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5em;
    color: white;
    cursor: pointer;
  }

.titleText {
    font-family: "Tilt Neon", sans-serif;
    color: white;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
      "XROT" 0,
      "YROT" 0;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.descriptionText {
    font-family: "Tilt Neon", sans-serif;
    color: white;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings:
      "XROT" 0,
      "YROT" 0;
    opacity: 1;
    transition: opacity 0.4s ease;
}

#sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 220px;
    height: 100%;
    background-color: #111;
    color: white;
    padding-top: 60px;
    z-index: 999;
    overflow-y: auto;
    transition: transform 0.3s ease;
    transform: translateX(-100%);
}
#sidebar ul {
    list-style-type: none;
    padding: 0;
}
#sidebar ul li {
    padding: 16px;
    cursor: pointer;
    border-bottom: 1px solid #333;
    font-family: "Tilt Neon", sans-serif;
}
#sidebar ul li:hover {
    background-color: #333;
}
#sidebar.show {
    transform: translateX(0);
}

#sidebarMenu {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 10px;
    font-size: 16px;
    color: #fff; /* adjust to match your theme */
}

.menu-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.image-grid {
display: grid;
justify-content: left;
grid-template-columns: repeat(10, minmax(20px, max-content));
gap: 1.5rem;
align-items: center;
}

.image-grid img {
width: 80px;
height: auto;

}

.carrusel-container {
  position: relative;
  width: 100%;
  max-width: 800px; /* Optional: adjust for layout */
  margin: auto;
  overflow: hidden;
}

.carrusel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.carrusel::-webkit-scrollbar {
  display: none;
}

.carrusel-item {
  flex: 0 0 100%;
  scroll-snap-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.carrusel-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.carrusel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 1rem;
  cursor: pointer;
  font-size: 2rem;
  border-radius: 50%;
  transition: background 0.3s;
}

.carrusel-button:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.carrusel-button.left {
  left: 10px;
}

.carrusel-button.right {
  right: 10px;
}