/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #fff;
   background-color: #2c2c2c;
  overflow-x: hidden;
}

/* Navbar */
/* --- NAVBAR Styling --- */
.navbar {
  width: 100%;
  background-color: #000;
  color: white;
  padding: 10px 1%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 1000;
}

/* Left: Logo + Nav Menu */
.nav-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.etv-logo {
  height: 30px;
}

.nav-menu {
  display: flex;
  gap: 25px;
}

.nav-menu a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 14px;
  position: relative;
  text-transform: uppercase;
}

.nav-menu a.active {
  color: red;
  font-weight: bold;
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: red;
}

/* Right: Search + Login + Subscribe */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-icon {
  font-size: 18px;
  cursor: pointer;
}

.login {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.subscribe-btn {
  background: #b71c1c;
  padding: 6px 16px;
  border-radius: 20px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: background 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.subscribe-btn:hover {
  background: #d32f2f;
  transform: scale(1.05);
}


/* Responsive */
@media (max-width: 768px) {
  .navbar {
    /* flex-direction: column; */
    align-items: flex-start;
    padding: 10px;
  }

  .nav-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .nav-menu {
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav-right {
    margin-top: 10px;
    gap: 10px;
  }

  .originals-track {
    width: 200%;
}

.kids-track {
    width: 200%;
}

}




.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100vh;
  background: #121212;
  z-index: 2000;
  transition: left 0.3s ease;
  padding: 20px;
  overflow-y: auto;
}

.mobile-drawer.open {
  left: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-close {
  font-size: 24px;
  color: white;
  cursor: pointer;
}

.drawer-buttons {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer-login,
.drawer-subscribe {
  padding: 10px;
  text-align: center;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}

.drawer-login {
  border: 1px solid white;
  color: white;
}

.drawer-subscribe {
  background: linear-gradient(to right, #c62828, #d32f2f);
  color: white;
}

.drawer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.drawer-menu a {
  text-decoration: none;
  padding: 10px;
  background: #1e1e1e;
  border-radius: 6px;
  color: white;
  font-weight: 500;
  text-transform: uppercase;
}

.drawer-menu a.active {
  background: linear-gradient(to right, #b71c1c, #d32f2f);
}

.drawer-footer {
  margin-top: 40px;
  color: gray;
  font-size: 14px;
}

.store-icons i {
  font-size: 20px;
  margin-right: 10px;
}

/* Show hamburger only on mobile */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-left .nav-menu {
    display: none;
  }

  .nav-right {
    display: none;
  }
}



@media (max-width: 395px) {
  .hero-buttons button {
    margin: 6px;
  }
}









/* Hero Section */


/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #111;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Push content to bottom */
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  padding-left: 4rem;
}

.hero-content {
  max-width: 40%;
}

.hero-title {
  font-size: 3rem;
  margin: 0;
}

.hero-genres {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: #f44;
}

.hero-description {
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  color: #ccc;
}

.hero-buttons button {
  margin-right: 10px;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  background: linear-gradient(to right, #d80000, #a80000);
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.hero-buttons button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(216, 0, 0, 0.4);
  background: linear-gradient(to right, #a80000, #d80000);
}


.watch-btn {
  background-color: red;
  color: white;
}

.list-btn {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.thumbnail-slider {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 12px;
  padding: 10px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  border-radius: 12px;
}

.slider-container {
  overflow: hidden;
  width: 600px;
}

.slider-track {
  display: flex;
  transition: transform 0.3s ease;
}

.slider-track img {
  width: 110px;
  height: 70px;
  margin-right: 10px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slider-track img:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  z-index: 1;
}


.slider-track img.active {
  border-color: red;
}

.nav-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  padding: 10px;
}

.nav-btn:hover {
  color: red;
}


@media (max-width: 768px) {
  .thumbnail-slider {
    position: relative;
    width: 100%;
    bottom: 10px;
    left: 0;
    transform: none;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    border-radius: 0;
  }

  .slider-container {
    width: 80%;
    overflow-x: hidden;
  }

  .slider-track {
    display: flex;
    gap: 10px;
    transition: transform 0.3s ease;
  }

  .slider-track img {
    width: 25vw;
    max-width: 90px;
    height: auto;
    border-radius: 6px;
    flex-shrink: 0;
  }

  .nav-btn {
    display: block;
    font-size: 1.5rem;
    padding: 8px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    z-index: 3;
  }

  .nav-btn.left {
    margin-right: 5px;
  }

  .nav-btn.right {
    margin-left: 5px;
  }
}



@media (max-width: 768px) {
  .hero-content {
    max-width: 80%;
  }

  .slider-container {
    width: 90%;
  }
}
/* ========================
   BEFORE TV SECTION STYLES
   ======================== */
.before-tv {
  /* background-color: #1e1e1e; */
  padding: 25px;
  color: #fff;
  margin-top: 40px;
  overflow: hidden;
}

.before-tv-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.before-tv-header h2 {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

.more-link {
  color: #ff3333;
  font-weight: 600;
  text-decoration: none;
}

.slider-wrapper {
  position: relative;
}

.before-tv-slider {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.before-tv-slider::-webkit-scrollbar {
  display: none;
}

.tv-card {
  flex: 0 0 auto;
  width: 260px;
  background-color: #2b2b2b;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}


.card-thumb {
  position: relative;
}

.card-thumb {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

.card-thumb img {
  width: 100%;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-thumb:hover img {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  z-index: 1;
}


.lock {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.6);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
}

.play-btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: #e50914;
  color: white;
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 28px;
  border-radius: 50%;
  font-size: 14px;
}

.card-meta {
  font-size: 14px;
  padding: 8px 10px;
  color: #ccc;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #00000088;
  color: white;
  border: none;
  width: 40px;
  height: 60px;
  cursor: pointer;
  font-size: 24px;
  z-index: 1;
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.slider-wrapper:hover .slider-arrow {
  opacity: 1;
  visibility: visible;
}

.slider-arrow.left {
  left: 0;
}

.slider-arrow.right {
  right: 0;
}


.section-wrapper {
  /* margin: 2rem 0; */
  color: white;
  /* padding: 15px; */
  /* margin-top: 10px; */
}

.section-header h2 {
  font-size: 1.5rem;
  /* margin-bottom: 1rem; */
}

.slider {
  display: flex;
  gap: 1rem;
  overflow: hidden;
}

.card {
  width: 160px;
  flex-shrink: 0;
  background-color: #2b2b2b;
  border-radius: 8px;
  overflow: hidden;
}

.thumbnail {
  position: relative;
}

.thumbnail img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.lock-icon {
  position: absolute;
  top: 6px;
  left: 6px;
  background: rgba(0, 0, 0, 0.6);
  padding: 4px;
  border-radius: 4px;
  font-size: 12px;
}

.play-icon {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(255, 0, 0, 0.8);
  padding: 6px 8px;
  border-radius: 50%;
  font-size: 14px;
  display: none;
}

.card:hover .play-icon {
  display: block;
}

.info {
  padding: 0.5rem;
  font-size: 14px;
}


/* new */
.section-wrapper {
  width: 100%;
  /* padding: 2rem; */
  box-sizing: border-box;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* margin-bottom: 1rem; */
}

.section-header h2 {
  font-size: 1.5rem;
}

.more-link {
  color: white;
  font-size: 1rem;
  text-decoration: none;
}

.slider-container-1 {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
}

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

.card {
  width: 160px;
  flex-shrink: 0;
  background-color: #2b2b2b;
  border-radius: 8px;
  overflow: hidden;
}

.thumbnail {
  position: relative;
}

.thumbnail img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.lock-icon {
  position: absolute;
  top: 6px;
  left: 6px;
  background: rgba(0, 0, 0, 0.6);
  padding: 4px;
  border-radius: 4px;
  font-size: 12px;
}

.play-icon {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(255, 0, 0, 0.8);
  padding: 6px 8px;
  border-radius: 50%;
  font-size: 14px;
  display: none;
}

.card:hover .play-icon {
  display: block;
}

.info {
  padding: 0.5rem;
  font-size: 14px;
}

.nav-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 1.5rem;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
  display: none;
}

.slider-container-1:hover .nav-arrow {
  display: block;
}

.left-arrow {
  left: 0;
}

.right-arrow {
  right: 0;
}

/* 
new */
.slider-container-trending {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-container-trending:hover .nav-arrow {
  display: block;
}

.slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
}

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

.card {
  width: 160px;
  flex-shrink: 0;
  background-color: #2b2b2b;
  border-radius: 8px;
  overflow: hidden;
  color: white;
}

.thumbnail {
  position: relative;
}

.thumbnail img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.lock-icon {
  position: absolute;
  top: 6px;
  left: 6px;
  background: rgba(0, 0, 0, 0.6);
  padding: 4px;
  border-radius: 4px;
  font-size: 12px;
}

.play-icon {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(255, 0, 0, 0.8);
  padding: 6px 8px;
  border-radius: 50%;
  font-size: 14px;
  display: none;
}

.card:hover .play-icon {
  display: block;
}

.info {
  padding: 0.5rem;
  font-size: 13px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.nav-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 1.5rem;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
  display: none;
}

.left-arrow {
  left: 0;
}

.right-arrow {
  right: 0;
}



/* 
new */
.slider-container-2 {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-container-2:hover .nav-arrow {
  display: block;
}

.card {
  width: 160px;
  flex-shrink: 0;
  background-color: #2b2b2b;
  border-radius: 8px;
  overflow: hidden;
  color: white;
}

.thumbnail {
  position: relative;
}

.thumbnail img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.lock-icon {
  position: absolute;
  top: 6px;
  left: 6px;
  background: rgba(0, 0, 0, 0.6);
  padding: 4px;
  border-radius: 4px;
  font-size: 12px;
}

.play-icon {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(255, 0, 0, 0.8);
  padding: 6px 8px;
  border-radius: 50%;
  font-size: 14px;
  display: none;
}

.card:hover .play-icon {
  display: block;
}

.info {
  padding: 0.5rem;
  font-size: 13px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}



/* new */
.section-wrapper {
  /* margin-bottom: 2rem; */
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  padding: 0 2rem;
  /* margin-bottom: 1rem; */
}
.more-link {
  color: white;
  font-weight: bold;
  text-decoration: none;
}

.slider-container-raining {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-container-raining:hover .nav-arrow {
  display: block;
}

.slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 2rem;
}

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

.card {
  width: 160px;
  flex-shrink: 0;
  background-color: #2b2b2b;
  border-radius: 8px;
  overflow: hidden;
  color: white;
}

.thumbnail {
  position: relative;
}

.thumbnail img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.lock-icon {
  position: absolute;
  top: 6px;
  left: 6px;
  background: rgba(0, 0, 0, 0.6);
  padding: 4px;
  border-radius: 4px;
  font-size: 12px;
}

.play-icon {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(255, 0, 0, 0.8);
  padding: 6px 8px;
  border-radius: 50%;
  font-size: 14px;
  display: none;
}

.card:hover .play-icon {
  display: block;
}

.info {
  padding: 0.5rem;
  font-size: 13px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.nav-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 1.5rem;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
  display: none;
}

.left-arrow {
  left: 0;
}

.right-arrow {
  right: 0;
}


/* new */
.originals-section {
  width: 100%;
  padding: 1rem 2rem;
}

.originals-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.originals-header h2 {
  color: white;
  font-size: 1.5rem;
}

.originals-more {
  color: white;
  font-size: 1rem;
  text-decoration: none;
}

.originals-more-icon {
  color: red;
  margin-left: 4px;
}

.originals-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.originals-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1rem;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}

.originals-track::-webkit-scrollbar {
  display: none;
}

.originals-card {
  flex: 0 0 50%; /* TWO cards per row */
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}


.originals-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.originals-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 1.5rem;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
  display: none;
}

.originals-slider:hover .originals-arrow {
  display: block;
}

.originals-prev {
  left: 0;
}

.originals-next {
  right: 0;
}




/* 
new */
.slider-container-cult {
  position: relative;
  overflow: hidden;
  /* padding: 1rem 0; */
}

#cult-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1rem;
  padding: 1rem 2rem;
}

.card {
  width: 160px;
  flex-shrink: 0;
  background-color: #2b2b2b;
  border-radius: 12px;
  overflow: hidden;
  color: white;
  position: relative;
}

.card .thumbnail {
  position: relative;
}

.card .thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.card .lock-icon {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 1.25rem;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 4px;
  border-radius: 4px;
}

.card .info {
  padding: 0.5rem;
  font-size: 14px;
  font-weight: 500;
}

.slider-container-cult .nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 2;
  display: none;
}

.slider-container-cult:hover .nav-arrow {
  display: block;
}

.slider-container-cult .left-arrow {
  left: 0;
}

.slider-container-cult .right-arrow {
  right: 0;
}

/* 
new */
.slider-container-hits {
  position: relative;
  overflow: hidden;
  /* padding: 1rem 0; */
}

#hits-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1rem;
  /* margin-left: 1rem; */
  /* padding: 0 2rem; */
}

.card {
  width: 160px;
  flex-shrink: 0;
  background-color: #2b2b2b;
  border-radius: 12px;
  overflow: hidden;
  color: white;
  position: relative;
}

.card .thumbnail {
  position: relative;
}

.card .thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.thumbnail {
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
}

.thumbnail:hover {
  transform: scale(1.1);
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}


.card .lock-icon {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 1.25rem;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 4px;
  border-radius: 4px;
}

.card .info {
  padding: 0.5rem;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.slider-container-hits .nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 2;
  display: none;
}

.slider-container-hits:hover .nav-arrow {
  display: block;
}

.slider-container-hits .left-arrow {
  left: 0;
}

.slider-container-hits .right-arrow {
  right: 0;
}


/* new */
.award-slider-container {
  position: relative;
  overflow: hidden;
  /* padding: 1rem 0; */
  width: 100%;
}

#award-slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  /* padding: 0 1rem; */
}

.card {
  position: relative;
  flex: 0 0 auto;
  width: 140px;
  border-radius: 10px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover img {
  transform: scale(1.1);
  z-index: 1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.lock-icon {
  position: absolute;
  top: 6px;
  left: 6px;
  font-size: 1.1rem;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2px 5px;
  border-radius: 3px;
  color: white;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 10;
  display: none;
}

.award-slider-container:hover .nav-arrow {
  display: block;
}

.left-arrow {
  left: 0;
}

.right-arrow {
  right: 0;
}


/* new */
.kids-section {
  width: 100%;
  padding: 1rem 2rem;
  /* background-color: #2d2d2d; */
}

.kids-header h2 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.kids-slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.kids-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1rem;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}

.kids-track::-webkit-scrollbar {
  display: none;
}

.kids-card {
  flex: 0 0 50%;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.kids-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.kids-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 1.5rem;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
  display: none;
}

.kids-slider-wrapper:hover .kids-arrow {
  display: block;
}

.kids-left {
  left: 0;
}

.kids-right {
  right: 0;
}


/* new */
.tvshows-section {
  width: 100%;
  padding: 1rem 2rem;
  /* background-color: #2e2e2e; */
  box-sizing: border-box;
}

.tvshows-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.tvshows-header h2 {
  color: white;
  font-size: 1.5rem;
}

.tvshows-more {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  font-size: 1rem;
}

.tvshows-slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.tvshows-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  gap: 1rem;
}

.tvshows-track::-webkit-scrollbar {
  display: none;
}

.tvshows-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.tvshows-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.tvshows-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 2;
  display: none;
  border-radius: 50%;
}

.tvshows-slider-wrapper:hover .tvshows-arrow {
  display: block;
}

.tvshows-left {
  left: 0.5rem;
}

.tvshows-right {
  right: 0.5rem;
}



/* new */
.latest-news-wrapper {
  padding: 1rem 2rem;
}

.latest-news-slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  /* padding-bottom: 1rem; */
}

.latest-news-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1rem;
  scroll-snap-type: x mandatory;
  padding: 1rem 0;
}

.latest-news-slider::-webkit-scrollbar {
  display: none;
}

.news-card {
  flex: 0 0 150px;
  scroll-snap-align: start;
  background-color: #2b2b2b;
  border-radius: 12px;
  overflow: hidden;
  color: white;
  font-size: 0.9rem;
}

.news-thumbnail {
  position: relative;
}

.news-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.news-play-icon {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 4px 6px;
  border-radius: 50%;
  font-size: 0.8rem;
}

.news-info {
  padding: 4px 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.latest-news-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 6px 12px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  display: none;
}

.latest-news-slider-container:hover .latest-news-arrow {
  display: block;
}

.latest-news-arrow:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.latest-news-left {
  left: 10px;
}

.latest-news-right {
  right: 10px;
}


/* new */
.live-tv-wrapper {
  padding: 1rem 2rem;
}

.live-tv-header h2 {
  color: #3bd1c1;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.live-tv-slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 1rem;
}

.live-tv-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1rem;
  scroll-snap-type: x mandatory;
  padding: 1rem 0;
}

.live-tv-slider::-webkit-scrollbar {
  display: none;
}

.live-tv-card {
  flex: 0 0 100px;
  scroll-snap-align: start;
  background-color: #fafafa;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.live-tv-thumbnail {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.live-tv-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.live-tv-thumbnail:hover img {
  transform: scale(1.1);
  z-index: 1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}


.live-tv-lock {
  position: absolute;
  top: 6px;
  left: 6px;
  background: #000;
  color: #fff;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 4px;
  z-index: 1;
}

.live-tv-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: red;
  color: #fff;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 6px;
  z-index: 1;
}

.live-tv-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 6px 12px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  display: none;
}

.live-tv-slider-container:hover .live-tv-arrow {
  display: block;
}

.live-tv-arrow:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.live-tv-left {
  left: 10px;
}

.live-tv-right {
  right: 10px;
}

/* 
new */
.reco-section {
  padding: 1rem 2rem;
  /* background-color: #1e1e1e; */
  color: #fff;
}

.reco-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.reco-header h2 {
  font-size: 1.5rem;
  color: #ffffff;
}

.reco-more {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.reco-more span {
  color: red;
}

.reco-slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.reco-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1rem;
  padding: 0.5rem 0;
}

.reco-slider::-webkit-scrollbar {
  display: none;
}

.reco-card {
  flex: 0 0 180px;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  background-color: #2a2a2a;
}

.reco-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.reco-img-wrap {
  overflow: visible;
  position: relative;
}

.reco-img-wrap img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
}

.reco-img-wrap:hover img {
  transform: scale(1.1);
  z-index: 1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}


.reco-play {
  position: absolute;
  right: 8px;
  bottom: 8px;
  font-size: 1.5rem;
  color: red;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 4px 8px;
  border-radius: 50%;
}

.reco-meta {
  font-size: 0.9rem;
  color: #ccc;
  padding: 0.4rem 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.reco-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 6px 10px;
  cursor: pointer;
  z-index: 5;
  border-radius: 50%;
  display: none;
}

.reco-slider-container:hover .reco-arrow {
  display: block;
}

.reco-left {
  left: 10px;
}

.reco-right {
  right: 10px;
}


/* comedy */
.comedy-section {
  /* background: #1e1e1e; */
  padding: 1rem 2rem;
  color: #fff;
}

.comedy-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  /* padding: 0 1rem; */
}

.comedy-title {
  font-size: 1.4rem;
  margin: 0;
}

.comedy-more-link {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}

.comedy-carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  /* padding: 0.5rem 1rem; */
}

.comedy-carousel-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  padding: 0.5rem 0;
}

.comedy-carousel-track::-webkit-scrollbar {
  display: none;
}

.comedy-slide {
  flex: 0 0 160px;
  scroll-snap-align: start;
  background: #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
}

.comedy-image-container {
  height: 220px;
  width: 100%;
}

.comedy-image-container {
  overflow: hidden;
  position: relative;
}

.comedy-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px; /* optional: for rounded corners */
}

.comedy-image-container:hover img {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  z-index: 1;
}


.comedy-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  padding: 6px 12px;
  cursor: pointer;
  z-index: 10;
  display: none;
}

.comedy-carousel-wrapper:hover .comedy-arrow {
  display: block;
}

.comedy-left {
  left: 10px;
}

.comedy-right {
  right: 10px;
}


/* romance sec */
.romance-section {
  /* background: #1e1e1e; */
  padding: 1rem 2rem;
  color: #fff;
}

.romance-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 0 1rem; */
}

.romance-title {
  font-size: 1.4rem;
  margin: 0;
}

.romance-more-link {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}

.romance-carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  /* padding: 0.5rem 1rem; */
}

.romance-carousel-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  padding: 0.5rem 0;
}

.romance-carousel-track::-webkit-scrollbar {
  display: none;
}

.romance-slide {
  flex: 0 0 140px;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  background: #2a2a2a;
}

.romance-slide {
  overflow: hidden;
  position: relative;
  border-radius: 8px; /* Optional: for rounded corners */
}

.romance-slide img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.romance-slide:hover img {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  z-index: 1;
}


.romance-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  padding: 6px 12px;
  cursor: pointer;
  z-index: 10;
  display: none;
}

.romance-carousel-wrapper:hover .romance-arrow {
  display: block;
}

.romance-left {
  left: 10px;
}

.romance-right {
  right: 10px;
}


/* classic sec */
.classics-slider-section {
  /* background-color: #2c2c2c; */
  padding: 1rem 2rem;
  color: white;
}

.classics-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 0 1rem; */
}

.classics-slider-header h2 {
  font-size: 1.4rem;
  margin: 0;
}

.classics-slider-more {
  color: white;
  text-decoration: none;
  font-size: 1rem;
}

.classics-slider-container {
  position: relative;
  /* padding: 0.5rem 1rem; */
  overflow: hidden;
}

.classics-slider-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0;
}

.classics-slider-track::-webkit-scrollbar {
  display: none;
}

.classics-card {
  flex: 0 0 140px;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  background: #444;
}

.classics-card {
  overflow: hidden;
  border-radius: 8px; /* Optional: for rounded corners */
  position: relative;
}

.classics-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.classics-card:hover img {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  z-index: 1;
}


.classics-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  padding: 6px 12px;
  cursor: pointer;
  z-index: 10;
  display: none;
}

.classics-slider-container:hover .classics-slider-arrow {
  display: block;
}

.classics-arrow-left {
  left: 10px;
}

.classics-arrow-right {
  right: 10px;
}


/* folklore sec */
.folklore-slider-section {
  /* background-color: #2c2c2c; */
  padding: 1rem 2rem;
  color: white;
}

.folklore-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 0 1rem; */
}

.folklore-slider-header h2 {
  font-size: 1.4rem;
  margin: 0;
}

.folklore-slider-more {
  color: white;
  text-decoration: none;
  font-size: 1rem;
}

.folklore-slider-container {
  position: relative;
  /* padding: 0.5rem 1rem; */
  overflow: hidden;
}

.folklore-slider-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0;
}

.folklore-slider-track::-webkit-scrollbar {
  display: none;
}

.folklore-card {
  flex: 0 0 140px;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  background: #444;
}

.folklore-card {
  overflow: hidden;
  border-radius: 8px; /* Optional: adds rounded corners */
  position: relative;
}

.folklore-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.folklore-card:hover img {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  z-index: 1;
}


.folklore-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  padding: 6px 12px;
  cursor: pointer;
  z-index: 10;
  display: none;
}

.folklore-slider-container:hover .folklore-slider-arrow {
  display: block;
}

.folklore-arrow-left {
  left: 10px;
}

.folklore-arrow-right {
  right: 10px;
}


/* family sec */
.family-slider-section {
  /* background-color: #2c2c2c; */
  padding: 1rem 2rem;
  color: white;
}

.family-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 0 1rem; */
}

.family-slider-header h2 {
  font-size: 1.4rem;
  margin: 0;
}

.family-slider-more {
  color: white;
  text-decoration: none;
  font-size: 1rem;
}

.family-slider-container {
  position: relative;
  /* padding: 0.5rem 1rem; */
  overflow: hidden;
}

.family-slider-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0;
}

.family-slider-track::-webkit-scrollbar {
  display: none;
}

.family-card {
  flex: 0 0 140px;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  background: #444;
}

.family-card {
  overflow: hidden;
  border-radius: 8px; /* Optional: for rounded edges */
  position: relative;
}

.family-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.family-card:hover img {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  z-index: 1;
}


.family-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  padding: 6px 12px;
  cursor: pointer;
  z-index: 10;
  display: none;
}

.family-slider-container:hover .family-slider-arrow {
  display: block;
}

.family-arrow-left {
  left: 10px;
}

.family-arrow-right {
  right: 10px;
}


/* action sec */

.thriller-slider-section {
  /* background-color: #2c2c2c; */
  padding: 1rem 2rem;
  color: white;
}

.thriller-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 0 1rem; */
}

.thriller-slider-header h2 {
  font-size: 1.4rem;
  margin: 0;
}

.thriller-slider-more {
  color: white;
  text-decoration: none;
  font-size: 1rem;
}

.thriller-slider-container {
  position: relative;
  /* padding: 0.5rem 1rem; */
  overflow: hidden;
}

.thriller-slider-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0;
}

.thriller-slider-track::-webkit-scrollbar {
  display: none;
}

.thriller-card {
  flex: 0 0 140px;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  background: #444;
}

.thriller-card {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.thriller-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
}

.thriller-card:hover img {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  z-index: 1;
}


.thriller-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  padding: 6px 12px;
  cursor: pointer;
  z-index: 10;
  display: none;
}

.thriller-slider-container:hover .thriller-slider-arrow {
  display: block;
}

.thriller-arrow-left {
  left: 10px;
}

.thriller-arrow-right {
  right: 10px;
}


/* Ugadi Utsavam */
.ugadi-slider-section {
  /* background-color: #2c2c2c; */
  color: white;
  padding: 1rem 2rem;
}

.ugadi-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 0 1rem; */
}

.ugadi-slider-header h2 {
  font-size: 1.4rem;
  margin: 0;
}

.ugadi-slider-more {
  color: white;
  text-decoration: none;
  font-size: 1rem;
}

.ugadi-slider-container {
  position: relative;
  /* padding: 0.5rem 1rem; */
  overflow: hidden;
}

.ugadi-slider-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0;
}

.ugadi-slider-track::-webkit-scrollbar {
  display: none;
}

.ugadi-card {
  flex: 0 0 140px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: start;
}

.ugadi-card {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.ugadi-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ugadi-card:hover img {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  z-index: 1;
}


.ugadi-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4px 6px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  font-size: 0.75rem;
}

.ugadi-play-icon {
  font-size: 1.2rem;
  color: red;
  display: inline-block;
  margin-right: 4px;
  vertical-align: middle;
}

.ugadi-episode-title {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ugadi-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  padding: 6px 12px;
  cursor: pointer;
  z-index: 10;
  display: none;
}

.ugadi-slider-container:hover .ugadi-slider-arrow {
  display: block;
}

.ugadi-arrow-left {
  left: 10px;
}

.ugadi-arrow-right {
  right: 10px;
}


/* All Time Classics */

.slider-classics {
  /* background-color: #1f1f1f; */
  padding: 1rem 2rem;
  color: #fff;
}

.slider-classics-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 0 1rem; */
}

.slider-classics-header h2 {
  font-size: 1.4rem;
  margin: 0;
}

.slider-classics-more {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
}

.slider-classics-wrapper {
  position: relative;
  overflow: hidden;
  /* padding: 0.5rem 1rem; */
}

.slider-classics-track {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0;
}

.slider-classics-track::-webkit-scrollbar {
  display: none;
}

.slider-classics-item {
  flex: 0 0 auto;
  width: 140px;
  scroll-snap-align: start;
  border-radius: 10px;
  overflow: hidden;
}

.slider-classics-item {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.slider-classics-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slider-classics-item:hover img {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  z-index: 1;
}


.slider-classics-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 1.8rem;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
  z-index: 10;
  display: none;
  border-radius: 50%;
}

.slider-classics-wrapper:hover .slider-classics-arrow {
  display: block;
}

.slider-classics-arrow.left {
  left: 0.2rem;
}

.slider-classics-arrow.right {
  right: 0.2rem;
}


/* footer sec */
.site-footer {
  /* background-color: #2d2e31; */
  color: #fff;
  font-family: sans-serif;
  padding-top: 1rem;
}

.footer-top {
  background-color: #1c1c1c;
  padding: 0.5rem 1rem;
  text-align: center;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #ccc;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
  padding: 1.5rem 1rem;
  background-color: transparent;
}

.footer-logo img {
  height: 36px;
  margin-bottom: 0.5rem;
}

.footer-logo p {
  font-size: 0.9rem;
  color: #bbb;
}

.footer-social,
.footer-apps,
.footer-availability {
  text-align: center;
}

.footer-social h4,
.footer-apps h4,
.footer-availability h4 {
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.social-icons a {
  display: inline-block;
  background: #555;
  color: #fff;
  width: 36px;
  height: 36px;
  line-height: 36px;
  margin: 0 5px;
  border-radius: 50%;
  font-size: 1rem;
  text-align: center;
  transition: background 0.3s ease;
}

.social-icons a:hover {
  background: #777;
}

.app-buttons img {
  height: 40px;
  margin: 0 5px;
}

.platform-logos img {
  width: 60%;
  margin: 0 4px;
  vertical-align: middle;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-nav {
    gap: 0.8rem;
    font-size: 0.9rem;
  }
}

/* 
new */

/* login popup base */
.modern-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
}

.login-card {
  position: relative;
  width: 90%;
  max-width: 400px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  color: white;
  text-align: center;
  box-shadow: 0 0 30px rgba(0,0,0,0.3);
  backdrop-filter: blur(20px);
  animation: slideUp 0.3s ease-out;
}

/* Animation */
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.close-btn {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: #ccc;
  cursor: pointer;
}

.input-group {
  margin: 1rem 0;
}

.login-card input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
}

.login-card input::placeholder {
  color: #bbb;
}

.login-action {
  margin-top: 1rem;
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 10px;
  background: linear-gradient(to right, #ff2d55, #ff5e3a);
  color: white;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
}

.login-footer {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #bbb;
}

.login-footer a {
  color: #ff7675;
  text-decoration: none;
}






/* ===== Modal Wrapper hang===== */
.modern-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
}

/* ===== Login Card ===== */
.login-card {
  position: relative;
  width: 90%;
  max-width: 400px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  color: white;
  text-align: center;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  animation: slideUp 0.3s ease-out;
}

/* ===== Animation ===== */
@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===== Close Button ===== */
.close-btn {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: #ccc;
  cursor: pointer;
}

/* ===== Input Fields ===== */
.input-group {
  margin: 1rem 0;
}

.login-card input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
}

.login-card input::placeholder {
  color: #bbb;
}

/* ===== Login Button ===== */
.login-action {
  margin-top: 1rem;
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 10px;
  background: linear-gradient(to right, #ff2d55, #ff5e3a);
  color: white;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
}

/* ===== Footer Links ===== */
.login-footer {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #bbb;
}

.login-footer a {
  color: #ff7675;
  text-decoration: none;
}

/* ===== Responsive (Mobile & Tablet) ===== */
@media (max-width: 768px) {
  .login-card {
    width: 90%;
    padding: 1.5rem;
  }

  .login-action {
    font-size: 0.95rem;
  }

  .login-card input {
    font-size: 0.95rem;
  }
}




/* 
about us page */
.about-section {
  background-color: #1c1c1c;
  color: #ddd;
  padding: 80px 20px;
  line-height: 1.9; /* Increased from 1.6 to 1.9 */
}

.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #fff;
}

.about-section p {
  margin-bottom: 20px; /* Add space between paragraphs */
}

.about-section ul {
  margin-top: 20px;
  padding-left: 20px;
  
}

.about-section li {
  margin-bottom: 12px; /* Add space between list items */
}

@media (max-width: 768px) {
  .about-section h2 {
    font-size: 1.6rem;
  }

  .about-section p,
  .about-section li {
    font-size: 0.95rem;
  }

  .about-section {
    padding: 60px 15px;
  }
}


@media (max-width: 576px) {
  .about-section p,
  .about-section li {
    text-align: justify;
  }
}



/* contact page  */
.contact-wrapper {
  padding: 2rem;
  background: #1e1e1e;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.contact-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  margin-top: 50px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-left {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  text-align: center;
}

.contact-left img {
  width: 100%;
  max-width: 240px;
  margin-bottom: 1rem;
}

.contact-left p {
  margin: 0.4rem 0;
  font-size: 1rem;
  color: #ccc;
}

.contact-left a {
  color: #fff;
  text-decoration: underline;
}

.contact-form {
  flex: 1.2;
  min-width: 300px;
  max-width: 540px;
  background: #141414;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #900;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.1);
}

.contact-form label {
  display: block;
  margin-top: 1rem;
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0.5rem;
  background: #2a2f3a;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.contact-form small {
  font-size: 0.8rem;
  color: #aaa;
}

.recaptcha-box {
  margin: 1rem 0;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to right, #a50000, #ff0000);
  color: #fff;
  font-size: 1.1rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: linear-gradient(to right, #ff0000, #a50000);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-form,
  .contact-left {
    max-width: 100%;
    text-align: center;
  }
}


/* redeeem page */
.redeem-wrapper {
  background: transparent;
  padding: 6rem 1rem;
  display: flex;
  justify-content: center;
}

.redeem-box {
  background: linear-gradient(to bottom, #1c1d22, #12141b);
  border: 1px solid #900;
  border-radius: 0.75rem;
  padding: 3rem 2rem;
  width: 100%;
  max-width: 800px;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.1);
}

.stepper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 90px;
}

.step .circle {
  width: 40px;
  height: 40px;
  background: #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #000;
  font-size: 1rem;
}

.step.active .circle {
  border: 2px solid red;
  background: #fff;
  color: red;
}


.step span {
  font-size: 0.95rem;
  color: #fff;
  margin-top: 0.5rem;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}


.line {
  height: 2px;
  background: #999;
  flex: 1;
  margin: 0 10px;
}
.redeem-box {
  box-shadow: 0 0 12px 2px rgba(255, 0, 0, 0.5);
}


.redeem-box h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.redeem-btn {
  padding: 0.9rem 2rem;
  background: linear-gradient(to right, #a50000, #ff0000);
  border: none;
  border-radius: 2rem;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.redeem-btn:hover {
  background: linear-gradient(to right, #ff0000, #a50000);
}


/* Terms and Conditions */


.about-section h3 {
  font-size: 1.4rem;
  margin-top: 30px;
  color: #ffffff;
}

.about-section h4 {
  font-size: 1.2rem;
  margin: 25px 0 10px;
  color: white;
}


.about-section a {
  color: #1e90ff;
  text-decoration: underline;
}

.about-section a:hover {
  color: #63c3ff;
}

/* Compliance Table Styling */
.compliance-table {
  margin-top: 30px;
  overflow-x: auto;
}

.compliance-table table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
  background-color: #1a1a1a;
  color: #fff;
}

.compliance-table th,
.compliance-table td {
  padding: 12px 16px;
  border: 1px solid #444;
  text-align: left;
  font-size: 0.95rem;
}

.compliance-table th {
  background-color: #222;
  color: #ffda44;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-section {
    padding: 40px 15px;
  }

  .about-section h2 {
    font-size: 2rem;
  }

  .about-section h3 {
    font-size: 1.2rem;
  }

  .about-section p {
    font-size: 0.95rem;
  }

  .compliance-table th,
  .compliance-table td {
    font-size: 0.9rem;
    padding: 10px;
  }
}


/* Feedback */
.feedback-section {
  padding: 2rem;
  background: #1e1e1e;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.feedback-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  margin-top: 50px;
}

.feedback-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.feedback-info {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  text-align: center;
}

.feedback-img {
  width: 100%;
  max-width: 240px;
  margin-bottom: 1rem;
}

.info-title {
  font-size: 1.2rem;
  margin: 1rem 0 0.5rem;
}

.info-text {
  margin: 0.4rem 0;
  font-size: 1rem;
  color: #ccc;
}

.info-link {
  color: #fff;
  text-decoration: underline;
}

.feedback-form {
  flex: 1.2;
  min-width: 300px;
  max-width: 540px;
  background: #141414;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #900;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.1);
}

.feedback-form label {
  display: block;
  margin-top: 1rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0.5rem;
  background: #2a2f3a;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.feedback-form input::placeholder,
.feedback-form textarea::placeholder {
  color: #aaa;
}

.form-submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to right, #a50000, #ff0000);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.3s ease;
}

.form-submit-btn:hover {
  background: linear-gradient(to right, #ff0000, #a50000);
}

/* Responsive */
@media (max-width: 768px) {
  .feedback-content {
    flex-direction: column;
    align-items: stretch;
  }

  .feedback-form,
  .feedback-info {
    max-width: 100%;
    text-align: center;
  }
}
