/* ----------------------------------------------------
   ✔ PLAY STORE STYLE SLIDER — FIXED + RESTORED
---------------------------------------------------- */

.shot-slider {
  position: relative;
  margin-top: 30px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 460px;
}

/* MASK / VIEWPORT */
.shot-track-mask {
  width: 100%;
  height: 260px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  border-radius: 18px;
  background: #0002;
}

/* IMAGE TRACK */
.shot-track {
  display: flex;
  gap: 14px;
  height: 100%;
}

/* ONE SCREENSHOT */
.shot-item {
  flex: 0 0 auto;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  scroll-snap-align: center;
}

/* IMAGE FIT */
.shot-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* MOBILE = full bleed */
  display: block;
}

/* NAV BUTTONS --------------------------------------- */
.shot-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.55);
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background .2s;
}

.shot-nav:hover {
  background: rgba(0,0,0,0.75);
}

.shot-nav.left  { left: 6px; }
.shot-nav.right { right: 6px; }

/* DOTS ---------------------------------------------- */
.shot-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.shot-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.45;
  cursor: pointer;
  transition: opacity .2s, background .2s;
}

.shot-dots .dot.active {
  opacity: 1;
  background: var(--accent);
}

/* SCROLLBAR ----------------------------------------- */
.shot-track-mask::-webkit-scrollbar {
  height: 10px;
}

.shot-track-mask::-webkit-scrollbar-track {
  background: #1a2129;
  border-radius: 10px;
}

.shot-track-mask::-webkit-scrollbar-thumb {
  background: #4e4e4e;
  border-radius: 10px;
  border: 2px solid #1a2129;
}

/* --------------------------------------------
   DESKTOP OVERRIDES (Play Store style)
--------------------------------------------- */
@media (min-width: 900px) {

  .shot-slider { margin-top: 20px; }

  .shot-track-mask {
    height: 260px;
  }

  .shot-item img {
    object-fit: contain;   /* DESKTOP = CLEAN IMAGE */
    background: #000;
  }

  .shot-nav {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }

  .shot-nav.left {
    left: -65px;
  }

  .shot-nav.right {
    right: -65px;
  }

}
