.mediaTrack {
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

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

.videoCard {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
  background: #000;
}

.minH240 {
  min-height: 240px;
}

.tallThumb {
  height: 340px;
}

.playBtn {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.videoOverlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  color: #fff;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0) 100%
  );
}

.platformIcon svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
}

.profileCard {
  max-width: 100%;
  height: 450px;
  overflow: hidden;
  position: relative;
}

.profileCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topActions {
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 2;
}

.previewBtn {
  pointer-events: auto;
}

.heroOverlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 30px 20px;
  text-align: center;
  color: #fff;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.95) 0%,
    rgba(30, 58, 138, 0.7) 40%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
}

@media screen and (max-width: 991px) {
  .minH240 {
    min-height: 210px;
  }

  .tallThumb {
    height: 270px;
  }
}

@media screen and (max-width: 767px) {
  .profileCard {
    height: 300px;
  }
}

