/* font import */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Space+Grotesk:wght@300..700&display=swap");

/* font-family: "Manrope", sans-serif; */

/*-------------home page styles---------------*/
/* content styles */
.container {
  width: 100%;
  margin: auto;
}
body {
  background-color: #141414;
}

/* header styles */
header {
  height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 162px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  max-width: inherit;
  width: inherit;
}

.nav_div {
  background-color: #0f0f0f;
  border-radius: 12px;
  border: #1f1f1f 4px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 35px;
}

/* navigation styles */
.header_nav_ul {
  display: flex;
  column-gap: 30px;
}
.header_nav_a {
  color: var(--Grey-75, #bfbfbf);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.header_nav_a.active {
  padding: 14px 24px;
  border-radius: 8px;
  border: 1px solid var(--Black-10, #1a1a1a);
  background: var(--Black-10, #1a1a1a);
  color: #ffffff;
}

.zari_div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.burger_button {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  border: #262626 3px solid;
  background-color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  border: none;
  display: none;
}

.burger,
.x_mark {
  display: none !important;
}

.mobile_nav {
  display: none !important;
}

.menu_overlay {
  display: none !important;
}

/* Mobile navigation - hidden by default */
.mobile_nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #0f0f0f;
  transition: all 0.3s ease-in-out;
  z-index: 1001;
  padding: 100px 30px 30px;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  display: none;
}

.menu_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 20000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: none;
}

/* 1 სექციის სტილები */
.main_sec {
  margin-top: -20px;
  min-height: 1092px;
  background-image: url("../images/sec1_cov.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
}

@keyframes rotate-image {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(720deg);
  }
}

.main_sec img {
  animation: rotate-image 1.5s linear 1;
}

.main_sec_div1 {
  position: relative;
  z-index: 1;
  min-height: 581px;
  width: inherit;
  background: linear-gradient(180deg, #141414 0%, rgba(20, 20, 20, 0) 100%);
}

.main_sec_div2 {
  position: relative;
  z-index: 1;
  min-height: 581px;
  width: inherit;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0) 0%, #141414 100%);
}

.main_sec img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  height: auto;
}

.text_div {
  width: 100%;
  height: 296px;
  position: absolute;
  z-index: 5;
  /* background-color: aliceblue; */
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 50px;
  justify-content: center;
  top: 99%;
}

.text_div_child {
  max-width: 1096px;
}
.text_div_child h1 {
  font-family: "Manrope", sans-serif;
  color: var(--Absolute-White, #fff);
  text-align: center;
  font-size: 58px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 14px;
}
.text_div_child p {
  font-family: "Manrope", sans-serif;
  color: var(--Grey-60, #999);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.text_div button {
  display: flex;
  padding: 18px 24px;
  align-items: center;
  gap: 4px;
  border-radius: 8px;
  background: var(--Red-45, #e50000);
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  cursor: pointer;
  border: none;
}

/* 2 სექციის სტილები */
.sec2 {
  width: min(100%, 1597px);
  margin: 432px auto 150px;
}

.sec2_headers {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 14px;
  margin-bottom: 80px;
  padding-right: 300px;
}
.sec2_headers h2 {
  font-family: "Manrope", sans-serif;
  color: var(--Absolute-White, #fff);
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 57px */
}

.sec2_headers p {
  font-family: "Manrope", sans-serif;
  color: var(--Grey-60, #999);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
}

.sec2_cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card {
  width: 31.9%;
  height: auto;
  display: flex;
  padding: 50px;
  flex-direction: column;
  gap: 30px;
  flex-shrink: 1;
  border-radius: 12px;
  border: 1px solid var(--Black-15, #262626);
  background: linear-gradient(
      222deg,
      rgba(229, 0, 0, 0.5) -208.03%,
      rgba(229, 0, 0, 0) 41.32%
    ),
    #0f0f0f;
}

.card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(229, 0, 0, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.sec2_card_cont {
  display: flex;
  align-items: center;
  gap: 16px;
  align-self: stretch;
}
.sec2_card_sq {
  display: flex;
  padding: 16px;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid var(--Black-12, #1f1f1f);
  background: var(--Black-08, #141414);
}

.sec2_card_cont h3 {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 36px */
}

.card p {
  color: var(--Grey-60, #999);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
}

/* 3სექციის სტილები */
.sec3 {
  width: min(100%, 1597px);
  height: auto;
  margin: 0 auto;
}
.sec3_headers_button {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 100px;

  margin-bottom: 80px;
}
.sec3_headers {
  display: flex;
  flex-direction: column;
  row-gap: 14px;
}

.sec3_headers h2 {
  font-family: "Manrope", sans-serif;
  color: var(--Absolute-White, #fff);
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.sec3_headers p {
  font-family: "Manrope", sans-serif;
  color: var(--Grey-60, #999);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.sec3_headers_button button {
  display: flex;
  padding: 18px 24px;
  align-items: center;
  gap: 4px;
  border-radius: 8px;
  background: var(--Red-45, #e50000);
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  cursor: pointer;
  border: none;
}

.faq-wrapper {
  width: 100%;
  display: flex;
}

.faq-container {
  width: min(100%, 1597px);
  margin: 0 auto;
  display: flex;
  gap: 80px;
}

.faq-column {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.faq-item {
  background: #141414;
  padding: 34px;
  cursor: pointer;
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--Absolute-White, #fff);
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.faq-header span {
  background: #1f1f1f;
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 10px;
  border: 1px solid var(--Black-15, #262626);
  background: var(--Black-12, #1f1f1f);
}

.toggle-btn {
  font-size: 30px;
}

.faq-content {
  display: none;
  margin-top: 20px;
  color: var(--Grey-60, #999);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  text-align: center;
}

.for_gradient {
  margin-top: 10px;
  max-width: 758px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(229, 0, 0, 0) 0%,
    #e50000 16.67%,
    rgba(229, 0, 0, 0) 100%
  );
}

.faq-item.active .faq-content {
  display: block;
}

.faq-item.active .toggle-btn {
  content: "-";
}

/* სექცია 4 სტილები */

.sec4 {
  width: min(100%, 1597px);
  min-height: 313px;
  margin: 150px auto;
  background-image: url("../images/sec4_bac.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
  border-radius: 12px;
}

.sec4_div {
  position: absolute;
  z-index: 1;
  min-height: 313px;
  width: inherit;
  background: linear-gradient(
    90deg,
    #0f0f0f 2.42%,
    rgba(20, 15, 15, 0.97) 25.46%,
    rgba(34, 14, 14, 0.91) 46.72%,
    rgba(229, 0, 0, 0) 168.98%
  );
  display: flex;
  justify-content: center;
  padding-inline: 80px;
  align-items: center;
  border-radius: 12px;
}

.sec4_headers_button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.sec4_header h2 {
  font-family: "Manrope", sans-serif;
  color: var(--Absolute-White, #fff);
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 57px */
  margin-bottom: 14px;
}

.sec4_header p {
  font-family: "Manrope", sans-serif;
  color: var(--Grey-60, #999);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
}

.sec4_headers_button button {
  display: flex;
  padding: 18px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: var(--Red-45, #e50000);
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  cursor: pointer;
  border: none;
}

/* სექცია 5 footeer სტილები */

footer {
  width: 100%;
  min-height: 505px;
  margin: 0 auto;
  background-color: #0f0f0f;
  padding: 100px 0 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 100px;
}

.footer_navs {
  width: min(100%, 1597px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.footer_div {
  flex: 1 1 150px;
  max-width: 241px;
  min-width: 0;
}

.footer_div h4 {
  color: var(--Absolute-White, #fff);
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 24px;
}

.footer_nav_ul {
  display: flex;
  flex-direction: column;
  row-gap: 14px;
}

.footer_nav_a {
  color: var(--Grey-60, #999);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.for_social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.social_frame {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  border: 1px solid var(--Black-15, #262626);
  background: var(--Black-10, #1a1a1a);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.footer_nav_a:hover {
  color: #fff;
}

.social_frame:hover {
  box-shadow: 0 0 12px 2px red;
  transform: translateY(-3px);
}

.policy_div {
  width: min(100%, 1597px);
  border-top: 1px solid #262626;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
}

.policy_div h5 {
  color: var(--Grey-60, #999);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.footer-links {
  display: flex;
  gap: 40px;
}

.footer-links a {
  color: var(--Grey-60, #999);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.footer-links a:hover {
  color: #fff;
}

.divider {
  width: 1px;
  height: 27px;
  background-color: #262626;
}

/* ქუქუი ფოფაფის სტილები */

#cookie-popup {
  position: fixed;
  bottom: 30px;
  left: 30px;
  transform: none;
  background-color: #1a1a1a;
  border: 1px solid #262626;
  padding: 20px 25px;
  border-radius: 12px;
  z-index: 1000;
  display: none;
}

/* Content inside popup */
.popup-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.popup-text {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  color: var(--Grey-60, #999);
  margin-bottom: 10px;
  text-align: center;
  font-weight: 400;
  line-height: 150%;
}

.popup-buttons {
  display: flex;
  gap: 14px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
  cursor: pointer;
  border: none;
  transition: background 0.3s, color 0.3s;
}

.btn.accept {
  background: var(--Red-45, #e50000);
  color: #fff;
}

.btn.accept:hover {
  background: #cc0000;
}

.btn.decline {
  background: var(--Black-10, #1a1a1a);
  color: var(--Grey-60, #999);
  border: 1px solid var(--Black-15, #262626);
}

.btn.decline:hover {
  background: #262626;
  color: #fff;
}

/* Scroll to Top Button სტილი  */
#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  background: var(--Black-10, #1a1a1a);
  color: #fff;
  border: 2px solid var(--Red-45, #e50000);
  padding: 18px 24px;
  font-size: 22px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0px 4px 18px rgba(229, 0, 0, 0.18);
  z-index: 1000;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s, border-color 0.3s,
    transform 0.2s;
}

#scrollToTopBtn:hover {
  background: var(--Red-45, #e50000);
  color: #fff;
  border-color: #fff;
  box-shadow: 0 0 18px 4px #e50000;
  transform: translateY(-4px) scale(1.07);
}

/* ტელეფონის რეზოლუხიაზე იჭედებოდა ჰოვერი გადაჭრის გზა */
#scrollToTopBtn:focus,
#scrollToTopBtn:active {
  background: var(--Black-10, #1a1a1a);
  border-color: var(--Red-45, #e50000);
  transform: none;
  box-shadow: 0px 4px 18px rgba(229, 0, 0, 0.18);
}

/* Movies & Shows სტილები */

.slider {
  width: min(100%, 1597px);
  min-height: 835px;
  margin: 170px auto 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #262626;
}

.overlay-gradient {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to bottom, transparent, black);
}

.slide-content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 120px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}

.slide-content {
  text-align: center;
  opacity: 1;
  transition: opacity 0.7s ease-in-out;
}

.slide-content h2 {
  color: var(--Absolute-White, #fff);
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}

.slide-content p {
  color: var(--Grey-60, #999);
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.play_media {
  display: flex;
  padding: 14px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--Black-15, #262626);
  background: var(--Black-06, #0f0f0f);
  gap: 10px;
  cursor: pointer;
}

.play {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 24px;
  gap: 4px;
  border: none;
  border-radius: 8px;
  background: var(--Red-45, #e50000);
  color: var(--Absolute-White, #fff);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 153%;
  cursor: pointer;
}
.slide-content.fade-out {
  opacity: 0;
}

.bottom-controls {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  z-index: 2;
}

.arrow {
  width: 56px;
  height: 56px;
  display: flex;
  padding: 14px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--Black-12, #1f1f1f);
  background: var(--Black-06, #0f0f0f);
  gap: 10px;
  cursor: pointer;
}

.progress-bar {
  display: flex;
  gap: 6px;
}
.dot {
  height: 6px;
  width: 10px;
  background: var(--Black-12, #1f1f1f);
  border-radius: 4px;
  transition: all 0.7s ease;
}
.dot.active {
  background: red;
  width: 20px;
}

/* სექცია 2 სტილები */

.sec22 {
  position: relative;
  width: min(100%, 1597px);
  height: auto;
  margin: 0 auto;
  display: flex;
  padding: 50px;
  flex-direction: column;
  align-items: flex-start;
  gap: 100px;
  border-radius: 12px;
  border: 1px solid var(--Black-15, #262626);
}

.section-label {
  position: absolute;
  top: -25px;
  left: 20px;
  display: flex;
  padding: 10px 24px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--Red-45, #e50000);
  color: var(--Absolute-White, #fff);
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 30px */
}
.genre-slider-section {
  width: min(100%, 1498px);
  height: auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: relative;
}

/* მარცხენა მხარის blur ეფექტი */
.genre-slider-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(20, 20, 20, 1),
    rgba(20, 20, 20, 0)
  );
  z-index: 10;
  pointer-events: none;
}

/* მარჯვენა მხარის blur ეფექტი */
.genre-slider-container::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(
    to left,
    rgba(20, 20, 20, 1),
    rgba(20, 20, 20, 0)
  );
  z-index: 10;
  pointer-events: none;
}
.genre-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.genre-slider-header h2 {
  font-family: "Manrope", sans-serif;
  color: var(--Absolute-White, #fff);
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}

.genre-slider-nav-box {
  display: flex;
  padding: 16px;
  align-items: center;
  gap: 16px;
  border-radius: 12px;
  border: 1px solid var(--Black-12, #1f1f1f);
  background-color: var(--Black-06, #0f0f0f);
}
.genre-slider-arrow-btn {
  display: flex;
  padding: 14px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--Black-12, #1f1f1f);
  background: var(--Black-10, #1a1a1a);
  cursor: pointer;
}
.genre-slider-container {
  display: flex;
  overflow: hidden;
  position: relative;
}

.genre-slider-track {
  display: flex;
  gap: 30px;
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.genre-slider-card {
  width: 275.6px;
  height: 342px;
  display: flex;
  padding: 30px;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 0 0;
  border-radius: 12px;
  border: 1px solid var(--Black-15, #262626);
  background: var(--Black-10, #1a1a1a);
}

.genre-slider-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
}

.genre-slider-card img:hover {
  transform: scale(1.01);
  box-shadow: 0 8px 32px rgba(229, 0, 0, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.genre-slider-title {
  color: var(--Absolute-White, #fff);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

.genre-slider-dots {
  display: flex;
  align-items: center;
  gap: 3px;
  justify-content: center;
}

.genre-slider-dot {
  width: 15px;
  height: 4px;
  background: #555;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.genre-slider-dot.active {
  background: red;
  width: 23px;
}

/* <!-- New_Releases სექცია სტილები--> */

.new-release-card {
  display: flex;
  height: 377px;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  
}

.new-release-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 51px;
  border: 1px solid var(--Black-15, #262626);
  background: var(--Black-08, #141414);
  color: var(--Grey-60, #999);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

/* <!-- Most watched სექცია --> */
.slider-track1 {
  display: flex;
  gap: 20px;
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  /* Prevent unwanted vertical scrollbars */
  scrollbar-width: thin;
  scrollbar-color: #e50000 #1a1a1a;
}

.slider-track1::-webkit-scrollbar {
  height: 8px;
  background: #1a1a1a;
  border-radius: 4px;
}
.slider-track1::-webkit-scrollbar-thumb {
  background: #e50000;
  border-radius: 4px;
}

.slider-card_must {
  width: 359.5px;
  height: 520px;
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border-radius: 12px;
  border: 1px solid var(--Black-15, #262626);
  background: var(--Black-10, #1a1a1a);
  flex: 0 0 auto;
}

.must_card_img {
  width: 100%;
  height: 404px;
  object-fit: cover;
  border-radius: 8px;
}

.must_card_img:hover {
  transform: scale(1.01);
  box-shadow: 0 8px 32px rgba(229, 0, 0, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.must_watch_div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.movie-length {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 6px 10px 6px 6px;
  border-radius: 51px;
  border: 1px solid var(--Black-15, #262626);
  background: var(--Black-08, #141414);
  color: var(--Grey-60, #999);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.movie-length img {
  width: 24px;
  height: 24px;
}

.movie-rate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 6px 10px 6px 6px;
  border-radius: 51px;
  border: 1px solid var(--Black-15, #262626);
  background: var(--Black-08, #141414);
  color: var(--Grey-60, #999);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

/* support page სტილები */
/* support page 1 სექციის სტილები */
.support_sec1 {
  width: min(100%, 1597px);
  min-height: 739px;
  margin: 235px auto 150px;
  display: flex;
  gap: 80px;
}

.support_sec1_left {
  display: flex;
  max-width: 533px;
  width: 100%;
  min-height: 739px;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
}
.support_sec1_headers {
  display: flex;
  flex-direction: column;
  row-gap: 14px;
}
.support_sec1_headers h1 {
  font-family: "Manrope", sans-serif;
  color: var(--Absolute-White, #fff);
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}

.support_sec1_headers h3 {
  color: var(--Grey-60, #999);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.support_sec1_headers_pic {
  width: 100%;
  min-height: 477px;
  background-image: url("../images/support_sec1_headers_pics.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 6px;
  border: 6px solid var(--Black-15, #262626);
}

/* form styles */

.form-wrapper {
  max-width: 976px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
  display: flex;
  padding: 50px;
  border-radius: 12px;
  border: 1px solid var(--Black-15, #262626);
  background: var(--Black-06, #0f0f0f);
}
.row {
  display: flex;
  gap: 50px;
}
.input-group {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.input-group label {
  color: var(--Absolute-White, #fff);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 16px;
}
.input-group input,
.input-group textarea {
  width: 100%;
  display: flex;
  padding: 20px;
  align-items: center;
  gap: 77px;
  border-radius: 8px;
  border: 1px solid var(--Black-15, #262626);
  background: var(--Black-08, #141414);
  color: var(--Grey-60, #999);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.show-password {
  color: var(--Grey-60, #999);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  cursor: pointer;
  margin-top: 15px;
}
.actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.actions .terms {
  color: var(--Grey-60, #999);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.terms {
  display: flex;
  align-items: center;
  gap: 10px;
}
input[type="checkbox"] {
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  border: 1px solid var(--Black-15, #262626);
  background-color: var(--Black-06, #0f0f0f);
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.terms input[type="checkbox"]:checked {
  background-color: #a6a6a6;
}

/*  მონიშნულზე */
.terms input[type="checkbox"]:checked::after {
  content: "✓";
  font-size: 20px;
  position: absolute;
}

.send-button {
  display: flex;
  padding: 18px 24px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--Red-45, #e50000);
  cursor: pointer;
  border: none;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

.actions .send-button:hover {
  background-color: #cc0000;
}
.error {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  color: #ff5555;
}
