.body {
  height: 100%;
  width: 100%;
  background-color: #190529;
  margin: 0;
  overflow-x: hidden; /* prevent sideways scrolling */
  font-family: Arial, sans-serif;
}

/* Image Track */
#image-track {
  display: flex;
  gap: 6vmin;
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(0%, -50%);
  user-select: none;
  transition: transform 1s ease-in-out;
}

/* Fullscreen responsive video background */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* Ensures no black bars */
  z-index: -1;         /* Send behind all content */
}

#image-track > .image {
  width: 60vmin;
  height: 76vmin;
  object-fit: cover;
  object-position: 90% center;
  border-radius: 12px;
  transition: transform 0.8s, box-shadow 0.8s;
}

/* Neon Glow on hover */
#image-track > .image:hover {
  box-shadow: 0 0 10px #00faff,
              0 0 20px #00faff,
              0 0 40px #00faff,
              0 0 80px #00faff;
  transform: scale(1.05);
}

/* ==============================
   RESPONSIVE DESIGN (Mobile + Tablet)
   ============================== */

/* Small phones (max-width: 480px) */
@media screen and (max-width: 480px) {


  #image-track {
    gap: 7vmin;
    top: 60%;
    left: 50%;
    transform: translate(0%, -50%);
  }

  #image-track > .image {
    width: 100vw;
    height: 70vh;
    border-radius: 8px;
  }
}

/* Medium phones (481px – 767px) */
@media screen and (min-width: 481px) and (max-width: 767px) {

  #image-track {
    gap: 7vmin;
    top: 52%;
    left: 50%;
    transform: translate(0%, -50%);
  }

  #image-track > .image {
    width: 70vw;
    height: 65vh;
    border-radius: 10px;
  }
}

/* Tablets (768px – 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #image-track {
    gap: 5vmin;
    top: 53%;
    left: 50%;
    transform: translate(0%, -50%);
  }

  #image-track > .image {
    width: 55vw;
    height: 70vh;
    border-radius: 12px;
  }
}

/* Large screens (above 1024px stays as original) */
/* Custom Modern Scrollbar */
::-webkit-scrollbar {
  width: 10px;              /* scrollbar width */
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05); /* transparent track */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #06ffc1, #00faff); /* neon gradient */
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(5, 192, 176, 0.7);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #00faff, #34f092);
  box-shadow: 0 0 15px rgba(0, 250, 255, 0.9);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #04ffab #1a1a1a;
}