
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #161616;
  color: #ffffffd5;
}

body > header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
}

.hidden {
  display: none;
}

.progret {
  background-color: #161616;
  color: #ffffff;
}

/* SCROLL PROGRESS BAR */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #eeeeee33;
  z-index: 16;
}

.scroll-progress-bar {
  height: 100%;
  width: 0;
  background: #0084ff;
  transition: width 0.2s ease-out;
}


.hero {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.slide-link.no-click {
  pointer-events: none;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  cursor: grab;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 1;
}

.slide a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
object-position: center top;



  display: block;
}


.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.7) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 25px 10px;
  transition: all 0.3s ease;
}


.text {
  animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.game-name2 {
  width: 60%;
  padding-bottom: 10px;
}

.game-name2 img {
  width: 150px;
  height: auto;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}

.game-name2 span {
  font-family: 'Fugaz One', cursive;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  text-shadow:
    0 0 7px rgba(255, 255, 255, 0.3),
    0 0 10px rgba(255, 255, 255, 0.2),
    0 4px 8px rgba(0, 0, 0, 0.8),
    0 8px 16px rgba(0, 0, 0, 0.5);
  display: block;
  line-height: 1.1;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              letter-spacing 0.45s ease;
}

.slide:hover .game-name2 img  {
  transform: scale(1.05);
}

.slide:hover .game-name2 span {
  transform: scale(1.05);
}

/* Rating & Genre Pills Row */
.rating-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.rating-score {
  font-size: 16px;
  font-weight: 700;
  color: #f5c518;
  text-shadow: 0 0 8px rgba(245, 197, 24, 0.4);
  letter-spacing: 0.5px;
}

.genre-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pill {
  font-size: 14px;
  font-weight: 500;
  padding: 1.5px 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ccc;
  backdrop-filter: blur(4px);
  transition: background 0.3s, color 0.3s;
}

.pill:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}


.meta-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 3px 7px;
  border-radius: 4px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: background 0.3s, transform 0.2s;
}

.tag:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.tag-year {
  background: rgba(229, 9, 20, 0.25);
  border-color: rgba(229, 9, 20, 0.4);
}

.tag-type {
  background: rgba(46, 213, 115, 0.2);
  border-color: rgba(46, 213, 115, 0.35);
}

.tag-audio {
  background: rgba(55, 141, 255, 0.2);
  border-color: rgba(55, 141, 255, 0.35);
}

.tag-runtime {
  background: rgba(255, 165, 0, 0.2);
  border-color: rgba(255, 165, 0, 0.35);
}


/* Progress Bar */
.progress-bar {
  position: absolute;
  bottom: 10px;
  left: 0;
  height: 4px;
  background: linear-gradient(
    to right,
    #e50914 0%,
    #ff6b6b 100%
  );
  width: 0;
  z-index: 10;
  animation: progress 5s linear forwards;
}

@keyframes progress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.slider-nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 100px;
  height: 100%;
  display: flex;
  align-items: center;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5) 0%,
    transparent 100%
  );
  border: none;
  color: #fff;
  font-size: 0;
  cursor: pointer;
  z-index: 12;
  border-radius: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.slider-container:hover .slider-nav {
  opacity: 1;
}

.slider-nav:hover {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7) 0%,
    transparent 100%
  );
}

.slider-nav.prev {
  left: 0;
  justify-content: flex-start;
  padding-left: 22px;

}

.slider-nav.next {
  right: 0;
  justify-content: flex-end;
  padding-right: 22px;
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.5) 0%,
    transparent 100%
  );
}

.slider-nav.next:hover {
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.7) 0%,
    transparent 100%
  );
}

/* Arrow icon */
.slider-nav::after {
  content: '';
  width: 18px;
  height: 18px;
  border-left: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transition: transform 0.3s ease, margin 0.3s ease;
  
}

.slider-nav.prev::after {
  transform: rotate(45deg);
  
}

.slider-nav.next::after {
  transform: rotate(-135deg);
}

.slider-nav.prev:hover::after {
  transform: rotate(45deg) translateX(-3px);
}

.slider-nav.next:hover::after {
  transform: rotate(-135deg) translateX(-3px);
}

.slider-indicators {
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  display: flex;
  z-index: 15;
}

.indicator-dot {
  height: 10px;
  width: 100%;
  position: relative;
  background-color: rgba(22, 22, 22, 0.836);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1.5px solid rgb(70, 69, 69);
}

.indicator-dot:hover {
  background-color: rgba(255, 255, 255, 0.7);
  transform: scale(1.02);
}

.indicator-dot.active {
  background-color: rgba(22, 22, 22, 0.836);
  overflow: hidden;
}

.indicator-dot.active::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #e50914;
  animation: indicatorProgress 5s linear forwards;
}

@keyframes indicatorProgress {
  from { width: 0%; }
  to { width: 100%; }
}

/* Loading State */
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  color: #fff;
  font-size: 1.5rem;
}

/* NAVIGATION BAR (GENRE FILTERS) */

.navbar {
  display: flex;
  justify-content: flex-start;
  background-color: #161616;
  padding: 5px 10px 10px 10px;
  position: relative;
  width: 100%;
  top: 0vw !important;
  z-index: 10;
  overflow-x: auto;
  overflow-y: hidden;
  font-family: "Oswald", serif;
  letter-spacing: 2px;
  font-weight: 700;
  -webkit-overflow-scrolling: touch;
  font-style: oblique 20deg;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  box-shadow: inset 4px 3px 3px 0px #111, inset -2px -4px 4px 0px #333;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 5px;
  justify-content: flex-start;
  align-items: flex-start;
  scroll-snap-type: x mandatory;
}

.nav-links li {
  position: relative;
  cursor: pointer;
  scroll-snap-align: start;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 10px;
  width: 100px;
  height: 60px;
  overflow: hidden;
}

.nav-text {
  position: absolute;
  overflow: auto;
  bottom: -12px;
  width: 110%;
  color: white;
  font-size: 14px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.6);
  line-height: 18px;
  padding: 0px 0px 10px 0px;
  border-radius: 3px;
  z-index: 12;
  letter-spacing: 0;
  transform: translateX(-50%);
  font-family: 'Roboto', sans-serif;
}

.content {
  position: relative;
  width: 100%;
  height: 100%;
}

.nav-links video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 5px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-links img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: all 0.3s ease-in-out;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links :hover {
  color: rgb(156, 255, 138);
  z-index: 10;
}

.nav-links :hover img {
  transform: scale(1.1);
  background-color: #7678f169;
  color: #000000;
}

.nav-links:hover .nav-text {
  transition: none;
}

.nav-links .active {
  background-color: rgba(0, 0, 0, 0.6);
  color: #06ac51 !important;
  border-radius: 5px;
}

.nav-links .active .nav-text {
  color: #11f31c;
}

.nav-links li .content {
  transition: opacity 0.3s ease;
}

.nav-links li.video-active .content {
  opacity: 0 !important;
}

.nav-links li video {
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.nav-links li.video-active video {
  opacity: 1;
  z-index: 3;
}

.nav-links li:hover .content {
  transition-delay: 0.3s;
}

.nav-links li {
  position: relative;
  z-index: 1;
}

/* MOVIE CARDS SECTION  */
.Movie_content {
  display: flex;
  flex-wrap: wrap;
  color: #ffffff;
  gap: 10px;
  justify-content: center;
  padding: 10px 0;
  width: 100%;
}

.Movie_card {
  position: relative;
  width: 45vw;
  border-radius: 8px;
  transition: transform 0.3s ease;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
}

.image-link {
  position: relative;
  z-index: 5;
}

.Movie_card::after {
  top: 0px;
  right: 0px;
  width: 50px;
  height: 50px;
  content: "";
  position: absolute;
  background-image: url("Web-Img/G-LOGO/Lohaput\ logo\ Favicion.png");
  background-size: cover;
  background-position: center;
  z-index: 7;
  pointer-events: none;
}

.Movie_card:hover::after {
  transform: scale(1.2);
  transition: transform 0.2s ease-in-out;
}

.Movie_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease, filter 0.3s ease;
  border-radius: 5%;
  -webkit-mask-image: linear-gradient(
      to right,
      rgba(22, 22, 22, 0.788) 10%,
      rgba(22, 22, 22, 1) 100%,
      rgba(22, 22, 22, 1) 5%,
      rgba(22, 22, 22, 0.85) 1%
    ),
    linear-gradient(
      to bottom,
      transparent 0%,
      #161616 40%,
      #161616 60%,
      transparent 95%
    );
  mask-image: linear-gradient(
      to right,
      rgba(22, 22, 22, 0) 1%,
      rgb(16, 16, 16) 5%,
      rgba(16, 16, 16, 16) 8%,
      rgba(22, 22, 22, 0.85) 100%
    ),
    linear-gradient(
      to left,
      rgba(16, 16, 16, 0) 0%,
      rgb(16, 16, 16) 5%,
      rgb(16, 16, 16) 8%,
      rgba(16, 16, 16, 0.85) 100%
    ),
    linear-gradient(
      to top,
      transparent 5%,
      #161616 20%,
      #161616 40%,
      transparent 800%
    );
  -webkit-mask-composite: intersect;
  mask-composite: intersect;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.Movie_card:hover img {
  transform: scale(1.05);
  filter: blur(3px);
  filter: opacity(40%);
}

.Movie_card:hover .hover_content {
  opacity: 1;
  visibility: visible;
}


/* Movie Name Wrapper */
.Movie_name_wrapper {
  position: absolute;
  bottom: 3px;
  left: 10px;
  overflow: hidden;
  white-space: nowrap;
  z-index: 7;
}

.Movie_name {
  font-size: 18px;
  letter-spacing: 0.3vw;
  color: #ffffff;
  font-weight: bolder;
  display: inline-block;
  position: relative;
  font-family: "Overlock SC", sans-serif;
  transform: translateX(0);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.scrolling {
  animation: scrollText linear infinite;
}

@keyframes scrollText {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50%));
  }
}

.Movie_info {
  position: absolute;
  bottom: 35px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 7;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease;
  width: 100%;
}

.Movie_card:hover .Movie_info {
  opacity: 1;
  transform: translateY(0);
}

.Genre {
  position: absolute;
  bottom: 33px;
  left: 0px;
  font-size: 15px;
  font-weight: 500;
  text-align: start;
  color: #ffffff;
  background: none;
  padding: 0;
  border: none;
  box-shadow: none;
  font-family: 'Work Sans', sans-serif;
  text-transform: uppercase;
  opacity: 0;
  line-height: normal;
  letter-spacing: normal;
  transition: all 0.3s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8),
               0 0 20px rgba(255, 255, 255, 0.15);
  z-index: 8;
}

.Movie_card:hover .Genre {
  opacity: 1;
  transform: translateY(0);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9),
               0 0 30px rgba(255, 255, 255, 0.3);
}

.duration-year {
  font-size: 15.2px;
  color: #e0e0e0;
  font-weight: 600;
  font-family: "Acme", sans-serif;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 0, 0, 0.4);
  padding: 3px 7px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
  width: fit-content;
}

.Movie_card:hover .duration-year {
  opacity: 0;
}

.rating-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.Language {
  position: absolute;
  bottom: 3px;
  left: 0px;
  font-size: 14px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.9), rgba(56, 142, 60, 0.9));
  color: white;
  padding: 2px 5px;
  border-radius: 7px;
  font-weight: bold;
  font-family: 'Work Sans', sans-serif;
  letter-spacing: normal;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
  white-space: nowrap;
  display: inline-block;
  z-index: 8;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.3s ease;
}

.Movie_card:hover .Language {
  opacity: 1;
  transform: translateY(0);
}

.feather {
  font-size: 15px;
  text-align: start;
  line-height: 18px;
  overflow: hidden;
  white-space: nowrap;
  border-radius: 7px;
  font-weight: bold;
  font-family: "Acme", sans-serif;
  background: rgba(0, 191, 255, 0.9);
  color: white;
  padding: 3px 6px;
  box-shadow: 0 2px 8px rgba(0, 191, 255, 0.3);
  display: inline-block;
}

.Movie_card:hover .feather {
  opacity: 0;
}

.download-icon {
  position: absolute;
  font-size: 26px;
  bottom: 1px;
  right: 8px;
  width: 42px;
  height: 42px;
  background: #4caf50;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  transform: translateY(-10px);
  transition: transform 0.3s ease;
}

.game-card:hover .download-icon {
  transform: translateY(0);
}

.border-animation {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  animation: border-run 1.5s infinite linear;
}

@keyframes border-glow {
  from {
    border-color: white;
  }
  to {
    border-color: lightgreen;
  }
}

/* Favorite Button */
.favorite-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  background: none !important;
  border: none;
  cursor: pointer;
  font-size: 26px;
  color: #ffd700;
  z-index: 8;
  transform: scale(1);
  transition: transform 0.5s ease-in-out;
}

.far.fa-star,
.fas.fa-star {
  background: none !important;
  color: #ffd700;
}

.far.fa-star:hover,
.fas.fa-star:hover {
  transform: scale(1.2);
  text-shadow: 0 0 5px #0ff, 0 0 7px #0ff, 0 0 1px #0ff;
}

.favorite-list-page {
  display: none;
}

.favorite-items {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.favorite-fullsize {
  max-width: 300px;
  margin: 10px;
  border: 3px solid #ffd700;
}

.remove-btn {
  display: block;
  margin: 10px auto;
  padding: 5px 15px;
  background: #ff4444;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

/*  6. PAGINATION CONTROLS  */
.pagination {
  text-align: center;
  top: -10px;
  margin: 2.5vw 0;
}

.pagination :hover {
  background-color: #0084ff;
}

.pagination:hover #page_numbers {
  background-color: rgba(255, 0, 0, 0);
}

#next_page,
#prev_page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background-color: #007bff;
  color: rgb(255, 255, 255);
  border-radius: 15%;
}

#next_page:hover,
#prev_page:hover {
  background-color: #007bff;
  color: white;
}

.pagination a {
  color: white;
  background: #333;
  padding: 5px 10px;
  margin: 5px;
  cursor: pointer;
  border-radius: 5px;
}

.pagination a.active {
  background: #f00;
}

#pageCounter {
  font-size: 16px;
  padding: 8px 10px 3px;
  border: 2px solid #007bff;
  font-weight: bold;
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
  animation: pulse 2s infinite;
  cursor: pointer;
}

#next_10,
#prev_10 {
  position: relative;
  width: 68px;
  font-size: 16px;
  padding: 2px 0px 5px;
  height: auto;
  font-weight: bold;
  color: rgb(255, 255, 255);
  text-shadow: 0 0 1px #0ff, 0 0 1px #0ff, 0 0 1px #0ff;
  background-color: black;
  border-radius: 6px;
}

#next_10 img,
#prev_10 img {
  width: 25px;
}

.prev-icon55,
.next-icon55 {
  position: relative;
  top: 8px;
  width: 25px;
  height: auto;
  transition: transform 0.3s ease, opacity 0.3s ease; /* Smooth transition */
}

.prev-icon55:hover,
.next-icon55:hover {
  background-color: #00000000;
  transform: scale(1.2);
  opacity: 0.8;
}

#pageCounter:hover,
#next_10:hover,
#prev_10:hover {
  background-color: #000;
}

.page-counter-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-input-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 0px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}

#pageInput {
  width: 30px;
  text-align: center;
  padding-left: 10px;
  border: none;
  background: transparent;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  outline: none;
}

#totalPages {
 padding-right: 10px;
}

#pageInput::-webkit-inner-spin-button,
#pageInput::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.page-input-box:focus-within {
  border-color: #ff00ff;
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

/*  RESPONSIVE CSS */

@media (max-width: 350px) {
  .slider-container {
    height: 220px;
  }
  .slider-nav {
    width: 50px;
    opacity: 0.8;
  }
  .slider-nav.prev {
    padding-left: 10px;
  }
  .slider-nav.next {
    padding-right: 10px;
  }
  .slider-nav::after {
    width: 12px;
    height: 12px;
    border-left-width: 2px;
    border-bottom-width: 2px;
  }
  .overlay {
    padding: 15px 8px;
    height: auto !important;
  }
  .game-name2 {
    padding-bottom: 6px;
  }
  .game-name2 span {
    font-size: 16px;
    letter-spacing: 0.8px;
  }
  .game-name2 img {
    width: 100px;
  }
  .rating-row {
    gap: 6px;
  }
  .rating-score {
    font-size: 12px;
  }
  .genre-pills {
    gap: 4px;
  }
  .pill {
    font-size: 10px;
    padding: 1.5px 6px;
    border-radius: 8px;
  }
  .tags {
    gap: 5px;
  }
  .tag {
    font-size: 0.6rem;
    padding: 2px 5px;
    letter-spacing: 0.8px;
  }
  .progress-bar {
    height: 3px;
    bottom: 6px;
  }
  .slider-indicators {
    bottom: 0;
  }
  .indicator-dot {
    height: 7px;
    border-width: 1px;
  }

  .navbar {
    padding: 4px 6px 2px 6px;
  }
  .nav-links {
    gap: 5px;
  }
  .nav-links li {
    width: 65px;
    height: 48px;
  }
  .nav-text {
    font-size: 10px;
    bottom: -11px;
    line-height: 14px;
    padding-bottom: 7px;
  }

  .Movie_content {
    gap: 6px;
    padding: 6px 0;
  }
  .Movie_card {
    width: 46vw;
    border-radius: 6px;
  }
  .Movie_card::after {
    width: 40px;
    height: 40px;
  }
  .Movie_name_wrapper {
    bottom: 2px;
    left: 6px;
  }
  .Movie_name {
    font-size: 12.5px;
    letter-spacing: 0.25vw;
  }
  .Movie_info {
    bottom: 25px;
    left: 6px;
    gap: 4px;
  }
  .Genre {
    bottom: 23px;
    left: 0;
    font-size: 9px;
  }
  .duration-year {
    font-size: 11px;
    padding: 2px 5px;
    border-radius: 6px;
    gap: 4px;
  }
  .rating-lang {
    gap: 5px;
  }
  .feather {
    font-size: 11px;
    padding: 2px 5px;
    line-height: 14px;
  }
  .Language {
    bottom: 2px;
    left: 0;
    font-size: 9px;
    padding: 1px 4px;
    border-radius: 5px;
  }
  .download-icon {
    font-size: 18px;
    bottom: 1px;
    right: 5px;
    width: 30px;
    height: 30px;
    border-radius: 7px;
  }
  .favorite-btn {
    top: 6px;
    left: 6px;
    font-size: 18px;
  }

  .pagination {
    margin: 3.5vw 0;
    top: -6px;
  }
  #next_page,
  #prev_page {
    font-size: 14px;
    padding: 4px 8px;
  }
  .pagination a {
    padding: 4px 8px;
    margin: 3px;
    font-size: 12px;
  }
  #pageCounter {
    font-size: 12px;
    padding: 6px 8px 2px;
  }
  #next_10,
  #prev_10 {
    width: 52px;
    font-size: 12px;
    padding: 2px 0 4px;
  }
  .page-input-box {
    font-size: 12px;
    padding: 4px 0;
  }
  #pageInput {
    width: 25px;
    padding-left: 8px;
  }
  #totalPages {
    padding-right: 8px;
  }
  .prev-icon55,
  .next-icon55 {
    width: 18px;
    top: 6px;
  }
}

@media (max-width: 299px) {
  .slider-container {
    height: 180px;
  }
  .slider-nav {
    width: 40px;
    opacity: 0.7;
  }
  .slider-nav.prev {
    padding-left: 8px;
  }
  .slider-nav.next {
    padding-right: 8px;
  }
  .slider-nav::after {
    width: 10px;
    height: 10px;
    border-left-width: 2px;
    border-bottom-width: 2px;
  }
  .overlay {
    padding: 12px 6px;
    height: auto !important;
  }
  .game-name2 {
    width: 85%;
    padding-bottom: 4px;
  }
  .game-name2 span {
    font-size: 13px;
    letter-spacing: 0.5px;
  }
  .game-name2 img {
    width: 70px;
  }
  .rating-row {
    gap: 5px;
  }
  .rating-score {
    font-size: 11px;
  }
  .genre-pills {
    gap: 3px;
  }
  .pill {
    font-size: 9px;
    padding: 1px 4px;
    border-radius: 6px;
  }
  .tags {
    gap: 4px;
  }
  .tag {
    font-size: 0.55rem;
    padding: 2px 4px;
    letter-spacing: 0.5px;
  }
  .progress-bar {
    height: 2px;
    bottom: 5px;
  }
  .indicator-dot {
    height: 6px;
    border-width: 1px;
  }

  .navbar {
    padding: 3px 5px 2px 5px;
  }
  .nav-links {
    gap: 3px;
  }
  .nav-links li {
    width: 55px;
    height: 40px;
  }
  .nav-text {
    font-size: 8px;
    bottom: -10px;
    line-height: 12px;
    padding-bottom: 6px;
  }

  .Movie_content {
    gap: 5px;
    padding: 5px 0;
  }
  .Movie_card {
    width: 46vw;
    border-radius: 5px;
  }
  .Movie_card::after {
    width: 35px;
    height: 35px;
  }
  .Movie_name_wrapper {
    bottom: 2px;
    left: 5px;
  }
  .Movie_name {
    font-size: 11px;
    letter-spacing: 0.5px;
  }
  .Movie_info {
    bottom: 20px;
    left: 5px;
    gap: 3px;
  }
  .Genre {
    bottom: 18px;
    left: 0;
    font-size: 9px;
  }
  .duration-year {
    font-size: 9px;
    padding: 2px 4px;
    border-radius: 5px;
    gap: 3px;
  }
  .rating-lang {
    gap: 4px;
  }
  .feather {
    font-size: 9px;
    padding: 2px 4px;
    line-height: 12px;
  }
  .Language {
    bottom: 2px;
    left: 0;
    font-size: 8px;
    padding: 1px 3px;
    border-radius: 4px;
  }
  .download-icon {
    font-size: 14px;
    bottom: 1px;
    right: 4px;
    width: 24px;
    height: 24px;
    border-radius: 6px;
  }
  .favorite-btn {
    top: 5px;
    left: 5px;
    font-size: 17px;
  }

  .pagination {
    margin: 3vw 0;
    top: -5px;
  }
  #next_page,
  #prev_page {
    font-size: 12px;
    padding: 3px 6px;
  }
  .pagination a {
    padding: 3px 6px;
    margin: 2px;
    font-size: 11px;
  }
  #pageCounter {
    font-size: 11px;
    padding: 5px 6px 2px;
  }
  #next_10,
  #prev_10 {
    width: 45px;
    font-size: 14px;
    padding: 2px 0 3px;
  }
  #next_10 img,
  #prev_10 img{
    width: 15px;
    font-size: 11px;
    padding: 1px 0 2px;
  }
  .page-input-box {
    font-size: 11px;
    padding: 3px 0;
  }
  #pageInput {
    width: 22px;
    padding-left: 6px;
  }
  #totalPages {
    padding-right: 6px;
  }
  .prev-icon55,
  .next-icon55 {
    width: 16px;
    top: 5px;
  }
}

@media (min-width: 570px) {
  .slider-container {
    height: 380px;
  }
  .slider-nav {
    width: 10%;
  }
  .slider-nav.prev {
    padding-left: 28px;
  }
  .slider-nav.next {
    padding-right: 28px;
  }
  .slider-nav::after {
    width: 22px;
    height: 22px;
    border-left-width: 3px;
    border-bottom-width: 3px;
  }
  .overlay {
    padding: 35px 20px;
  }
  .game-name2 {
    padding-bottom: 12px;
  }
  .game-name2 span {
    font-size: 32px;
    letter-spacing: 1.5px;
  }
  .game-name2 img {
    width: 180px;
  }
  .rating-row {
    gap: 12px;
  }
  .rating-score {
    font-size: 18px;
  }
  .genre-pills {
    gap: 7px;
  }
  .pill {
    font-size: 15px;
    padding: 2px 10px;
    border-radius: 12px;
  }
  .meta-container {
    gap: 12px;
  }
  .tags {
    gap: 10px;
  }
  .tag {
    font-size: 0.85rem;
    padding: 4px 9px;
    letter-spacing: 1.4px;
  }
  .progress-bar {
    height: 5px;
    bottom: 12px;
  }
  .indicator-dot {
    height: 11px;
    border: 2px solid rgb(116, 115, 115);
  }

  .navbar {
    padding: 6px 15px 4px 15px;
  }
  .nav-links {
    gap: 6px;
  }
  .nav-links li {
    width: 110px;
    height: 68px;
  }
  .nav-text {
    font-size: 15px;
    bottom: -16px;
    line-height: 20px;
    padding-bottom: 11px;
  }

  .Movie_content {
    gap: 10px;
    padding: 12px 0;
  }
  .Movie_card {
    width: 30vw;
    border-radius: 10px;
  }
  .Movie_card::after {
    width: 55px;
    height: 55px;
  }
  .Movie_name_wrapper {
    bottom: 4px;
    left: 12px;
  }
  .Movie_name {
    font-size: 16px;
    letter-spacing: 0.2vw;
  }
  .Movie_info {
    bottom: 30px;
    left: 8px;
    gap: 4px;
  }
  .Genre {
    bottom: 38px;
    left: 0;
    font-size: 15px;
  }
  .duration-year {
    font-size: 16px;
    padding: 2px 4px;
    border-radius: 5px;
    gap: 6px;
  }
  .rating-lang {
    gap: 10px;
  }
  .feather {
    font-size: 16px;
    padding: 3px 4px;
    line-height: auto;
  }
  .Language {
    font-size: 15px;
    padding: 2px 4px;
    border-radius: 5px;
  }
  .download-icon {
    font-size: 28px;
    bottom: 2px;
    right: 10px;
    width: 46px;
    height: 46px;
    border-radius: 11px;
  }
  .favorite-btn {
    top: 12px;
    left: 12px;
    font-size: 28px;
  }

  .pagination {
    margin: 2vw 0;
    top: -12px;
  }
  #next_page,
  #prev_page {
    font-size: 20px;
    padding: 6px 12px;
  }
  .pagination a {
    padding: 6px 12px;
    margin: 6px;
    font-size: 15px;
  }
  #pageCounter {
    font-size: 17px;
    padding: 10px 12px 4px;
  }
  #next_10,
  #prev_10 {
    width: 75px;
    font-size: 17px;
    padding: 3px 0 6px;
  }
  .page-input-box {
    font-size: 17px;
    padding: 6px 0;
  }
  #pageInput {
    width: 35px;
    padding-left: 12px;
  }
  #totalPages {
    padding-right: 12px;
  }
  .prev-icon55,
  .next-icon55 {
    width: 28px;
    top: 9px;
  }
}

@media (min-width: 760px) {
  .slider-container {
    height: 55vw;
  }
  .slider-nav {
    width: 8%;
  }
  .slider-nav.prev {
    padding-left: 35px;
  }
  .slider-nav.next {
    padding-right: 35px;
  }
  .slider-nav::after {
    width: 26px;
    height: 26px;
    border-left-width: 3px;
    border-bottom-width: 3px;
  }
  .overlay {
    padding: 45px 30px;
  }
  .game-name2 {
    padding-bottom: 15px;
  }
  .game-name2 span {
    font-size: 38px;
    letter-spacing: 2px;
  }
  .game-name2 img {
    width: 220px;
  }
  .rating-row {
    gap: 15px;
  }
  .rating-score {
    font-size: 20px;
  }
  .genre-pills {
    gap: 8px;
  }
  .pill {
    font-size: 16px;
    padding: 2.5px 12px;
    border-radius: 14px;
  }
  .meta-container {
    gap: 15px;
  }
  .tags {
    gap: 12px;
  }
  .tag {
    font-size: 0.9rem;
    padding: 4px 10px;
    letter-spacing: 1.5px;
  }
  .progress-bar {
    height: 5px;
    bottom: 14px;
  }
  .indicator-dot {
    height: 12px;
  }

  .navbar {
    padding: 8px 20px 5px 20px;
  }
  .nav-links {
    gap: 8px;
  }
  .nav-links li {
    width: 116px;
    height: 74px;
  }
  .nav-text {
    font-size: 16px;
    bottom: -18px;
    line-height: 22px;
    padding-bottom: 12px;
  }

  .Movie_content {
    gap: 10px;
    padding: 15px 0;
  }
  .Movie_card {
    width: 23.3vw;
    border-radius: 12px;
  }
  .Movie_card::after {
    width: 60px;
    height: 60px;
  }
  .Movie_name_wrapper {
    bottom: 5px;
    left: 10px;
  }
  .Movie_name {
    font-size: 18px;
    letter-spacing: 0.2vw;
  }
  .Movie_info {
    bottom: 35px;
    left: 10px;
    gap: 4px;
  }
  .Genre {
    bottom: 42px;
    left: 0;
    font-size: 15px;
  }
  .duration-year {
    font-size: 16.5px;
    padding: 3px 4px;
    border-radius: 6px;
    gap: 6px;
  }
  .rating-lang {
    gap: 12px;
  }
  .feather {
    font-size: 16.5px;
    padding: 4px 4px;
  }
  .Language {
    left: 0;
    font-size: 15.5px;
    padding: 3px 4px;
    border-radius: 6px;
  }
  .download-icon {
    font-size: 30px;
    bottom: 2px;
    right: 12px;
    width: 50px;
    height: 50px;
    border-radius: 6px;
  }
  .favorite-btn {
    top: 10px;
    left: 15px;
    font-size: 30px;
  }

  .pagination {
    margin: 1.8vw 0;
    top: -14px;
  }
  #next_page,
  #prev_page {
    font-size: 22px;
    padding: 7px 14px;
  }
  .pagination a {
    padding: 7px 14px;
    margin: 7px;
    font-size: 16px;
  }
  #pageCounter {
    font-size: 18px;
    padding: 12px 14px 5px;
  }
  #next_10,
  #prev_10 {
    width: 82px;
    font-size: 18px;
    padding: 4px 0 7px;
  }
  .page-input-box {
    font-size: 18px;
    padding: 7px 0;
  }
  #pageInput {
    width: 38px;
    padding-left: 14px;
  }
  #totalPages {
    padding-right: 14px;
  }
  .prev-icon55,
  .next-icon55 {
    width: 30px;
    top: 10px;
  }
}

@media (min-width: 990px) {
  .slider-container {
    height: 78vh;
  }
  .slider-nav.prev {
    padding-left: 20px;
  }
  .slider-nav.next {
    padding-right: 20px;
  }
  .slider-nav::after {
    width: 25px;
    height: 25px;
    border-left-width: 3.5px;
    border-bottom-width: 3.5px;
  }
  .overlay {
    padding: 40px 30px;
  }
  .game-name2 {
    padding-bottom: 18px;
  }
  .game-name2 span {
    font-size: 44px;
    letter-spacing: 2.5px;
  }
  .game-name2 img {
    width: 260px;
  }
  .rating-row {
    gap: 18px;
  }
  .rating-score {
    font-size: 22px;
  }
  .genre-pills {
    gap: 10px;
  }
  .pill {
    font-size: 17px;
    padding: 3px 14px;
    border-radius: 16px;
  }
  .meta-container {
    gap: 18px;
  }
  .tags {
    gap: 14px;
  }
  .tag {
    font-size: 0.95rem;
    padding: 5px 12px;
    letter-spacing: 1.6px;
  }
  .progress-bar {
    height: 6px;
    bottom: 16px;
  }
  .indicator-dot {
    height: 14px;
    border-width: 2px;
  }

  .navbar {
    padding: 10px 25px 6px 25px;
  }
  .nav-links {
    gap: 10px;
  }
  .nav-links li {
    width: 125px;
    height: 78px;
  }
  .nav-text {
    font-size: 16px;
    bottom: -20px;
    line-height: 24px;
    padding-bottom: 14px;
  }

  .Movie_content {
    gap: 8px;
    padding: 18px 0;
  }
  .Movie_card {
    width: 19vw;
    border-radius: 14px;
  }
  .Movie_card::after {
    width: 65px;
    height: 65px;
  }
  .Movie_name_wrapper {
    bottom: 10px;
    left: 10px;
  }
  .Movie_name {
    font-size: 20px;
    letter-spacing: 0.18vw;
  }
  .Movie_info {
    bottom: 40px;
    left: 8px;
    gap: 6px;
  }
  .Genre {
    bottom: 47px;
    left: 0;
    font-size: 16px;
  }
  .duration-year {
    font-size: 17px;
    padding: 5px 5px;
    border-radius: 6px;
    gap: 7px;
  }
  .rating-lang {
    gap: 14px;
  }
  .feather {
    font-size: 17px;
    padding: 5px 5px;
  }
  .Language {
    left: 0;
    font-size: 16px;
    padding: 4px 5px;
    border-radius: 6px;
  }
  .download-icon {
    font-size: 32px;
    bottom: 3px;
    right: 14px;
    width: 54px;
    height: 54px;
    border-radius: 13px;
  }
  .favorite-btn {
    top: 10px;
    left: 13px;
    font-size: 32px;
  }

  .pagination {
    margin: 1.5vw 0;
    top: -16px;
  }
  #next_page,
  #prev_page {
    font-size: 24px;
    padding: 8px 16px;
  }
  .pagination a {
    padding: 8px 16px;
    margin: 8px;
    font-size: 17px;
  }
  #pageCounter {
    font-size: 19px;
    padding: 14px 16px 6px;
  }
  #next_10,
  #prev_10 {
    width: 90px;
    font-size: 19px;
    padding: 5px 0 8px;
  }
  .page-input-box {
    font-size: 19px;
    padding: 8px 0;
  }
  #pageInput {
    width: 42px;
    padding-left: 16px;
  }
  #totalPages {
    padding-right: 16px;
  }
  .prev-icon55,
  .next-icon55 {
    width: 32px;
    top: 11px;
  }
}

@media (min-width: 1200px) {
  .slider-container {
    height: 80vh;
  }
  .slider-nav.prev {
    padding-left: 25px;
  }
  .slider-nav.next {
    padding-right: 25px;
  }
  .slider-nav::after {
    width: 34px;
    height: 34px;
    border-left-width: 4px;
    border-bottom-width: 4px;
  }
  .overlay {
    padding: 50px 40px;
  }
  .game-name2 {
    padding-bottom: 22px;
  }
  .game-name2 span {
    font-size: 52px;
    letter-spacing: 3px;
  }
  .game-name2 img {
    width: 300px;
  }
  .rating-row {
    gap: 20px;
  }
  .rating-score {
    font-size: 24px;
  }
  .genre-pills {
    gap: 12px;
  }
  .pill {
    font-size: 18px;
    padding: 3.5px 16px;
    border-radius: 18px;
  }
  .meta-container {
    gap: 20px;
  }
  .tags {
    gap: 16px;
  }
  .tag {
    font-size: 1rem;
    padding: 5px 14px;
    letter-spacing: 1.8px;
  }
  .progress-bar {
    height: 6px;
    bottom: 18px;
  }
  .indicator-dot {
    height: 15px;
    border-width: 2px;
  }

  .navbar {
    padding: 12px 30px 8px 30px;
  }
  .nav-links {
    gap: 12px;
  }
  .nav-links li {
    width: 130px;
    height: 78px;
  }
  .nav-text {
    font-size: 18px;
    bottom: -22px;
    line-height: 26px;
    padding-bottom: 16px;
  }

  .Movie_content {
    gap: 5px 10px;
    padding: 22px 0;
  }
  .Movie_card {
    width: 15.6vw;
    border-radius: 16px;
  }
  .Movie_card::after {
    width: 70px;
    height: 70px;
  }
  .Movie_name_wrapper {
    bottom: 12px;
  }
  .Movie_name {
    font-size: 18px;
    letter-spacing: 0.1vw;
  }
  .Movie_info {
    bottom: 38px;
    left: 8px;
    gap: 6px;
  }
  .Genre {
    bottom: 40px;
    left: 0;
    font-size: 16px;
    width: 95%;
  }
  .duration-year {
    font-size: 16px;
    padding: 4px 6px;
    border-radius: 8px;
    gap: 8px;
  }
  .rating-lang {
    gap: 16px;
  }
  .feather {
    font-size: 18px;
    padding: 4px 6px;
  }
  .Language {
    left: 0;
    font-size: 16px;
    padding: 2px 6px;
    border-radius: 6px;
  }
  .download-icon {
    font-size: 34px;
    bottom: 4px;
    right: 16px;
    width: 58px;
    height: 58px;
    border-radius: 14px;
  }
  .favorite-btn {
    font-size: 34px;
    left: 10px;
  }

  .pagination {
    margin: 1.2vw 0;
    top: -18px;
  }
  #next_page,
  #prev_page {
    font-size: 26px;
    padding: 10px 18px;
  }
  .pagination a {
    padding: 10px 18px;
    margin: 10px;
    font-size: 18px;
  }
  #pageCounter {
    font-size: 20px;
    padding: 16px 18px 8px;
  }
  #next_10,
  #prev_10 {
    width: 100px;
    font-size: 20px;
    padding: 6px 0 9px;
  }
  .page-input-box {
    font-size: 20px;
    padding: 5px 0;
  }
  #pageInput {
    width: 45px;
    padding-left: 18px;
  }
  #totalPages {
    padding-right: 18px;
  }
  .prev-icon55,
  .next-icon55 {
    width: 34px;
    top: 12px;
  }
}

@media (min-width: 1400px) {
  .slider-container {
    height: 75vh;
  }
  .slider-nav.prev {
    padding-left: 40px;
  }
  .slider-nav.next {
    padding-right: 40px;
  }
  .slider-nav::after {
    width: 30px;
    height: 30px;
    border-left-width: 4px;
    border-bottom-width: 4px;
  }
  .overlay {
    padding: 45px 35px;
  }
  .game-name2 {
    padding-bottom: 26px;
  }
  .game-name2 span {
    font-size: 58px;
    letter-spacing: 3.5px;
  }
  .game-name2 img {
    width: 340px;
  }
  .rating-row {
    gap: 22px;
  }
  .rating-score {
    font-size: 26px;
  }
  .genre-pills {
    gap: 14px;
  }
  .pill {
    font-size: 19px;
    padding: 4px 18px;
    border-radius: 20px;
  }
  .meta-container {
    gap: 22px;
  }
  .tags {
    gap: 18px;
  }
  .tag {
    font-size: 1.05rem;
    padding: 6px 16px;
    letter-spacing: 2px;
  }
  .progress-bar {
    height: 7px;
    bottom: 20px;
  }
  .slider-indicators {
    bottom: 6px;
  }
  .indicator-dot {
    height: 16px;
    border-width: 2px;
  }

  .navbar {
    padding: 10px 20px 8px 20px;
  }
  .nav-links {
    gap: 10px;
  }
  .nav-links li {
    width: 140px;
    height: 88px;
  }
  .nav-text {
    font-size: 19px;
    bottom: -24px;
    line-height: 28px;
    padding-bottom: 18px;
  }

  .Movie_name_wrapper {
    bottom: 15px;
  }
  .Movie_name {
    font-size: 20px;
    letter-spacing: 0.1vw;
  }
  .Movie_info {
    bottom: 45px;
    left: 8px;
    gap: 6px;
  }
  .favorite-btn {
    top: 10px;
    left: 18px;
    font-size: 36px;
  }
  .pagination {
    margin: 1vw 0;
    top: -20px;
  }
  #next_page,
  #prev_page {
    font-size: 28px;
    padding: 12px 20px;
  }
  .pagination a {
    padding: 12px 20px;
    margin: 12px;
    font-size: 19px;
  }
  #pageCounter {
    font-size: 21px;
    padding: 18px 20px 10px;
  }
  #next_10,
  #prev_10 {
    width: 110px;
    font-size: 25px;
    padding: 0px 0 10px;
  }
  #next_10 img,
  #prev_10 img {
    width: 35px;
  }
  .page-input-box {
    font-size: 21px;
    padding: 8px 0;
  }
  #pageInput {
    width: 48px;
    padding-left: 20px;
  }
  #totalPages {
    padding-right: 20px;
  }
  .prev-icon55,
  .next-icon55 {
    width: 36px;
    top: 13px;
  }
}



@media (min-width: 1900px) {
  .slider-container {
    height: 80vh;
  }
  .slider-nav::after {
    width: 40px;
    height: 40px;
    border-left-width: 5px;
    border-bottom-width: 5px;
  }
  .overlay {
    padding: 70px 60px;
  }
  .game-name2 {
    width: 80%;
    padding-bottom: 35px;
  }
  .game-name2 span {
    font-size: 72px;
    letter-spacing: 4.5px;
  }
  .game-name2 img {
    width: 420px;
  }
  .rating-row {
    gap: 26px;
  }
  .rating-score {
    font-size: 30px;
  }
  .genre-pills {
    gap: 18px;
  }
  .pill {
    font-size: 21px;
    padding: 5px 22px;
    border-radius: 24px;
  }
  .meta-container {
    gap: 26px;
  }
  .tags {
    gap: 22px;
  }
  .tag {
    font-size: 1.15rem;
    padding: 7px 20px;
    letter-spacing: 2.5px;
  }
  .progress-bar {
    height: 8px;
    bottom: 24px;
  }
  .slider-indicators {
    bottom: 8px;
  }
  .indicator-dot {
    height: 18px;
    border-width: 2.5px;
  }

  .nav-links {
    gap: 15px;
  }

  .Movie_content {
    gap: 1px 15px;
    padding: 35px 0;
  }
  .Movie_card {
    width: 13.3vw;
    border-radius: 10px;
  }
  .Movie_card::after {
    width: 85px;
    height: 85px;
  }
  .Movie_name_wrapper {
    bottom: 20px;
    left: 10px;
  }
  .Movie_name {
    font-size: 22px;
    letter-spacing: 0.08vw;
  }
  .Movie_info {
    bottom: 55px;
    left: 10px;
    gap: 6px;
  }
  .Genre {
    bottom: 48px;
    left: 0;
    font-size: 22px;
  }
  .duration-year {
    font-size: 19px;
    padding: 6px 10px;
    border-radius: 10px;
    gap: 11px;
  }
  .rating-lang {
    gap: 22px;
  }
  .feather {
    font-size: 19px;
    padding: 8px 10px;
  }
  .Language {
    left: 0;
    font-size: 18px;
    padding: 6px 10px;
    border-radius: 10px;
  }
  .download-icon {
    font-size: 40px;
    bottom: 7px;
    right: 22px;
    width: 70px;
    height: 70px;
    border-radius: 17px;
  }
  .favorite-btn {
    top: 20px;
    left: 18px;
    font-size: 40px;
  }

  .pagination {
    margin: 0vw 0;
    top: 0px;
  }
  #next_page,
  #prev_page {
    font-size: 32px;
    padding: 16px 24px;
  }

  .pagination a {
    padding: 12px 20px;
    margin: 16px;
    font-size: 28px;
  }

  #pageCounter {
    font-size: 23px;
    padding: 22px 24px 14px;
  }

  #next_10,
  #prev_10 {
    width: 130px;
    font-size: 28px;
    padding: 0px 0 5px;
  }

  #next_10 img,
  #prev_10 img {
    width: 40px;
  }

  .page-input-box {
    font-size: 23px;
    padding: 5px 0;
  }

  #pageInput {
    width: 55px;
    padding-left: 20px;
  }

  #totalPages {
    padding-right: 20px;
  }

  .prev-icon55,
  .next-icon55 {
    width: 40px;
    top: 15px;
  }
}


@media (min-width: 2500px) {
  .slider-container {
    height: 86vh;
  }
  .slider-nav.prev {
    padding-left: 40px;
  }
  .slider-nav.next {
    padding-right: 40px;
  }
  .slider-nav::after {
    width: 50px;
    height: 50px;
    border-left-width: 6px;
    border-bottom-width: 6px;
  }
  .overlay {
    padding: 60px 60px;
  }
  .game-name2 {
    width: 80%;
    padding-bottom: 35px;
  }
  .game-name2 span {
    font-size: 88px;
    letter-spacing: 5px;
  }
  .game-name2 img {
    width: 500px;
  }
  .rating-row {
    gap: 30px;
  }
  .rating-score {
    font-size: 36px;
  }
  .genre-pills {
    gap: 22px;
  }
  .pill {
    font-size: 28px;
    padding: 6px 26px;
    border-radius: 28px;
  }
  .meta-container {
    gap: 30px;
  }
  .tags {
    gap: 26px;
  }
  .tag {
    font-size: 25px;
    padding: 8px 24px;
    letter-spacing: 3px;
  }
  .progress-bar {
    height: 10px;
    bottom: 28px;
  }
  .slider-indicators {
    bottom: 10px;
  }
  .indicator-dot {
    height: 20px;
    border-width: 3px;
  }

  .navbar {
    padding: 15px 30px 13px 30px;
  }
  .nav-links {
    gap: 22px;
  }
  .nav-links li {
  width: 200px;
  height: 128px;
  }
  .nav-text {
    font-size: 26px;
    bottom: -32px;
    line-height: 33px;
    padding-bottom: 26px;
  }


  .Movie_card {
    width: 13.5vw;
  }
  .Movie_card::after {
    width: 100px;
    height: 100px;
  }
  .Movie_name_wrapper {
    bottom: 28px;
    left: 18px;
  }
  .Movie_name {
    font-size: 32px;
    letter-spacing: 0.06vw;
  }
  .Movie_info {
    bottom: 75px;
    left: 10px;
    gap: 10px;
  }
  .Genre {
    bottom: 58px;
    left: 0;
    font-size: 25px;
  }
  .duration-year {
    font-size: 25px;
    padding: 6px 12px;
    border-radius: 17px;
    gap: 6px;
  }
  .rating-lang {
    gap: 26px;
  }
  .feather {
    font-size: 25px;
    padding: 10px 12px;
  }
  .Language {
    left: 0;
    font-size: 23px;
    padding: 6px 12px;
    border-radius: 8px;
  }
  .download-icon {
    font-size: 46px;
    bottom: 9px;
    right: 26px;
    width: 80px;
    height: 80px;
    border-radius: 20px;
  }
  .favorite-btn {
    top: 10px;
    left: 20px;
    font-size: 50px;
  }

  .pagination {
    margin: 0.5vw 0;
    top: -28px;
  }
  #next_page,
  #prev_page {
    font-size: 36px;
    padding: 20px 28px;
  }
  .pagination a {
    padding: 20px 28px;
    margin: 20px;
    font-size: 24px;
  }
  #pageCounter {
    font-size: 26px;
    padding: 26px 28px 16px;
  }
  #next_10,
  #prev_10 {
    width: 150px;
    font-size: 45px;
    padding: 11px 0 14px;
  }

  #next_10 img,
  #prev_10 img{
    width: 58px;
  }
  .page-input-box {
    font-size: 26px;
    padding: 20px 0;
  }
  #pageInput {
    width: 62px;
    padding-left: 28px;
  }
  #totalPages {
    padding-right: 28px;
  }
  .prev-icon55,
  .next-icon55 {
    width: 44px;
    top: 17px;
  }
}

@media (min-width: 3800px) {
  .slider-container {
    height: 90vh;
  }
  .slider-nav.prev {
    padding-left: 60px;
  }
  .slider-nav.next {
    padding-right: 60px;
  }
  .slider-nav::after {
    width: 72px;
    height: 72px;
    border-left-width: 7px;
    border-bottom-width: 7px;
  }
  .overlay {
    padding: 100px 80px;
  }
  .game-name2 {
    padding-bottom: 55px;
  }
  .game-name2 span {
    font-size: 120px;
    letter-spacing: 6px;
  }
  .game-name2 img {
    width: 750px;
  }
  .rating-row {
    gap: 38px;
  }
  .rating-score {
    font-size: 50px;
  }
  .genre-pills {
    gap: 28px;
  }
  .pill {
    font-size: 38px;
    padding: 8px 34px;
    border-radius: 36px;
  }
  .meta-container {
    gap: 38px;
  }
  .tags {
    gap: 32px;
  }
  .tag {
    font-size: 40px;
    padding: 10px 30px;
    letter-spacing: 3.5px;
  }
  .progress-bar {
    height: 12px;
    bottom: 36px;
  }
  .slider-indicators {
    bottom: 12px;
  }
  .indicator-dot {
    height: 24px;
    border-width: 3.5px;
  }
  
  .navbar {
    padding: 18px 50px 15px 50px;
  }
  .nav-links {
    gap: 25px;
  }
  .nav-links li {
    width: 230px;
    height: 148px;
  }
  .nav-text {
    font-size: 31.5px;
    bottom: -40px;
    line-height: 48px;
    padding-bottom: 32px;
  }

  .Movie_content {
    padding: 60px 0;
  }
  .Movie_card {
    width: 12vw;
    border-radius: 0px;
  }
  .Movie_card::after {
    width: 120px;
    height: 120px;
  }
  .Movie_name_wrapper {
    bottom: 28px;
    left: 25px;
  }
  .Movie_name {
    font-size: 38px;
    letter-spacing: 0.05vw;
  }
  .Movie_info {
    bottom: 90px;
    left: 20px;
    gap: 10px;
  }
  .Genre {
    bottom: 70px;
    left: 0;
    font-size: 32px;
  }
  .duration-year {
    font-size: 32px;
    gap: 16px;
  }
  .rating-lang {
    gap: 32px;
  }
  .feather {
    font-size: 35px;
    padding: 22px 12px;
    border-radius: 12px;
  }
  .Language {
    left: 0;
    font-size: 32px;
  }
  .download-icon {
    font-size: 58px;
    bottom: 12px;
    right: 34px;
    width: 100px;
    height: 100px;
    border-radius: 26px;
  }
  .favorite-btn {
    top: 28px;
    left: 30px;
    font-size: 72px;
  }

  .pagination {
    margin: 0.4vw 0;
    top: -36px;
  }
  #next_page,
  #prev_page {
    font-size: 46px;
    padding: 26px 36px;
  }
  .pagination a {
    padding: 22px 36px;
    margin: 26px;
    font-size: 45px;
  }
  #pageCounter {
    font-size: 32px;
    padding: 34px 36px;
  }
  #next_10,
  #prev_10 {
    width: 190px;
    font-size: 40px;
    padding: 14px 0 18px;
  }
  .page-input-box {
    font-size: 32px;
    padding: 26px 0;
  }
  #pageInput {
    width: 78px;
    padding-left: 36px;
  }
  #totalPages {
    padding-right: 36px;
  }
  .prev-icon55,
  .next-icon55 {
    width: 60px !important;
    top: 21px;
  }
}



@media (min-width: 3300px) and (max-height: 2800px) {

}
@media (min-width: 2800px) and (max-height: 2500px) {

}
@media (min-width: 2300px) and (max-height: 2200px) {

}
@media (min-width: 3840px) and (max-height: 2180px) {

}
@media (min-width: 2000px) and (max-height: 1800px) {

}
@media (min-width: 2800px) and (max-height: 1800px) {

}
@media (min-width: 1500px) and (max-height: 1450px) {

}
@media (min-width: 2560px) and (max-height: 1450px) {

}
@media (min-width: 3440px) and (max-height: 1450px) {

}
@media (min-width: 1900px) and (max-height: 1200px) {

}
@media (min-width: 1024px) and (max-height: 1100px) {
    /* .tool_nav {
    --start-scroll: 3vw;
    --end-scroll: 42vw;
    --max-translate: 45vw;
  } */
}
@media (min-width: 1600px) and (max-height: 1100px) {

}
@media (min-width: 2560px) and (max-height: 1100px) {

}
@media (min-width: 1024px) and (max-height: 910px)  {

}
@media (min-width: 1400px) and (max-height: 910px)  {

}
@media (min-width: 1366px) and (max-height: 770px)  {

}
@media (min-width: 1024px) and (max-height: 700px)  {

}
@media (min-width: 600px)  and (max-height: 500px)  {

} 

/* 

@media (min-width: 5100px) {
  .slider-container {
    height: 1700px;
  }
  .slider-nav {
    width: 500px;
  }
  .slider-nav.prev {
    padding-left: 160px;
  }
  .slider-nav.next {
    padding-right: 160px;
  }
  .slider-nav::after {
    width: 96px;
    height: 96px;
    border-left-width: 9px;
    border-bottom-width: 9px;
  }
  .overlay {
    padding: 220px 220px;
  }
  .game-name2 {
    width: 30%;
    padding-bottom: 75px;
  }
  .game-name2 span {
    font-size: 160px;
    letter-spacing: 8px;
  }
  .game-name2 img {
    width: 900px;
  }
  .rating-row {
    gap: 50px;
  }
  .rating-score {
    font-size: 54px;
  }
  .genre-pills {
    gap: 36px;
  }
  .pill {
    font-size: 36px;
    padding: 10px 44px;
    border-radius: 46px;
  }
  .meta-container {
    gap: 50px;
  }
  .tags {
    gap: 42px;
  }
  .tag {
    font-size: 2rem;
    padding: 12px 38px;
    letter-spacing: 4.5px;
  }
  .progress-bar {
    height: 16px;
    bottom: 48px;
  }
  .slider-indicators {
    bottom: 16px;
  }
  .indicator-dot {
    height: 32px;
    border-width: 4.5px;
  }

  .navbar {
    padding: 38px 140px 30px 140px;
  }
  .nav-links {
    gap: 38px;
  }
  .nav-links li {
    width: 380px;
    height: 248px;
    padding: 22px 16px;
  }
  .nav-text {
    font-size: 40px;
    bottom: -54px;
    line-height: 64px;
    padding-bottom: 42px;
  }

  .Movie_content {
    gap: 80px;
    padding: 80px 0;
  }
  .Movie_card {
    width: 9vw;
    border-radius: 46px;
  }
  .Movie_card::after {
    width: 160px;
    height: 160px;
  }
  .Movie_name_wrapper {
    bottom: 32px;
    left: 50px;
    width: calc(100% - 100px);
  }
  .Movie_name {
    font-size: 42px;
    letter-spacing: 0.04vw;
  }
  .Movie_info {
    bottom: 130px;
    left: 50px;
    gap: 36px;
  }
  .Genre {
    bottom: 127px;
    left: 0;
    font-size: 42px;
  }
  .duration-year {
    font-size: 34px;
    padding: 14px 36px;
    border-radius: 28px;
    gap: 20px;
  }
  .rating-lang {
    gap: 42px;
  }
  .feather {
    font-size: 34px;
    padding: 14px 36px;
    line-height: 50px;
  }
  .Language {
    bottom: 32px;
    left: 0;
    font-size: 32px;
    padding: 12px 24px;
    border-radius: 26px;
  }
  .download-icon {
    font-size: 76px;
    bottom: 16px;
    right: 44px;
    width: 130px;
    height: 130px;
    border-radius: 34px;
  }
  .favorite-btn {
    top: 50px;
    left: 50px;
    font-size: 76px;
  }

  .pagination {
    margin: 0.3vw 0;
    top: -48px;
  }
  #next_page,
  #prev_page {
    font-size: 60px;
    padding: 34px 48px;
  }
  .pagination a {
    padding: 34px 48px;
    margin: 34px;
    font-size: 40px;
  }
  #pageCounter {
    font-size: 42px;
    padding: 44px 48px 28px;
  }
  #next_10,
  #prev_10 {
    width: 250px;
    font-size: 42px;
    padding: 18px 0 24px;
  }
  .page-input-box {
    font-size: 42px;
    padding: 34px 0;
  }
  #pageInput {
    width: 100px;
    padding-left: 48px;
  }
  #totalPages {
    padding-right: 48px;
  }
  .prev-icon55,
  .next-icon55 {
    width: 70px;
    top: 28px;
  }
} */