* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Outfit', sans-serif;
        }

        body {
            background-color: #161616;
            color: white;
        }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background-color: #161616;
            position: relative;
        }

        .logo {
            font-size: 45px;
            font-weight: bold;
            color: #ff4c29;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            text-decoration: none;
        }

        .logo a {
            text-decoration:none;
        }

        .menu-icon {
            font-size: 30px;
            cursor: pointer;
            display: block;
            color: white;
            z-index: 1001;
        }

        nav {
            display: none;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 70%;
            height: 100%;
            background-color: #222;
            padding: 20px;
            transition: left 0.3s ease;
            z-index: 1000;
        }

        .mobile-menu ul {
            list-style: none;
            margin-top: 50px;
        }

        .mobile-menu ul li {
            margin-bottom: 20px;
            font-size: 1.2rem;
            color: white;
            cursor: pointer;
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu.active a {
            color: white;
            text-decoration: none;
          }

        @media (min-width: 768px) {
            .menu-icon {
                display: none;
            }

            nav {
                display: block;
            }

            nav ul {
                display: flex;
                list-style: none;
                gap: 20px;
            }

            nav ul li {
                color: white;
                cursor: pointer;
            }

                nav ul li a {
                    color: white;
                    text-decoration: none;
                   }

            .mobile-menu {
                display: none;
            }

        }

        #results {
            max-width: 500px;
            margin: 10px auto 20px;
            padding: 10px;
            background-color: #222;
            border-radius: 10px;
            font-size: 1rem;
            display: none;
        }

        .result-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            border-bottom: 1px solid #333;
            padding-bottom: 10px;
            cursor: pointer;
        }

        .result-item img {
            width: 50px;
            height: 75px;
            object-fit: cover;
            border-radius: 5px;
        }

        .result-item span {
            font-size: 1rem;
            color: white;
        }

        .swiper-slide img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }

        .swiper-slide {
            max-width: none;
    flex: none;
            display: flex;
            flex-direction: column;
            align-items: center;

        }

        .index-list-bg {
    max-width: 1100px;
    margin: 0 auto;
}

        .swiper-free-mode>.swiper-wrapper {
    transition-timing-function: ease-out;
    padding: 0 20px;
     }

        .swiper-slide p {
            margin-top: 8px;
            text-align: center;
            width: 100%;
        }

                .swiper-slide a {
                  color: white;
                  text-decoration: none;
        }

.search-input-container {
    position: relative;
}

.search-input-container i.fa-magnifying-glass {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #F04D25;
    font-size: 18px;
    pointer-events: none;
}

@media (min-width: 1024px) {
    .search-input-container {
        width: 50%;
        margin: 0 auto;
    }

}

@media (min-width: 768px) {

    .swiper-slide {
        max-width: 140px;
        flex: 0 0 140px;
    }

    .index-list-bg {
        max-width: 1000px;
        margin: 0 auto;
    }

    .index-list-bg .swiper {
        width: 100%;
        margin: 0 auto;
    }

        .faq-item {
            background: #1c1c1c;
    padding: 15px;
    width: 60%;
    margin: 0 auto;
    margin-bottom: 10px;
    }

}
        }

@media (min-width: 1024px) {

        .search-input-container {
  position: relative;
  width: 50%;
  margin: 0 auto;
}

}

@media (max-width: 600px) {

    .intro-text {
        text-align: left;
        font-weight: 600;
        font-size: 30px;
        padding: 20px;
        max-width: 100%;
    }

    .search-input-container {
        position: relative;
        width: 100%;
    }

    .search-input-container i.fa-magnifying-glass {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: #F04D25;
        font-size: 18px;
        pointer-events: none;
    }

}

        h2.section-title {
            margin: 20px;
            font-weight: lighter;
            font-size: 20px;
            margin-left: 0px;
            bottom: -15px;
            position: relative;
        }

        .view-all {
            font-size: 0.9rem;
            color: #f97316;
            margin-left: auto;
            cursor: pointer;
            position: relative;
            bottom: -15px;
            text-decoration: none;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 0 20px;
        }

        .search-box {
            display: flex;
            justify-content: center;
            padding: 20px;
        }

        .intro-text {
            text-align: center;
            font-weight: 600;
            font-size: 30px;
            padding: 20px;
            max-width: 100%;
            margin: 0 auto;
        }

        .search-input-container input {
            width: 100%;
            padding: 12px 15px 12px 40px;
            border-radius: 10px;
            border: none;
            background-color: #4a494a;
            font-size: 1rem;
            color: white;
        }

        .search-input-container input::placeholder {
            color: #ccc;
        }

.section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

.section h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.how-to-section h2 {
    color: #ff4c29;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card {
    background: #2f2d2d;
    border-radius: 12px;
    padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card p {
  font-size: 20px;
}

.card-icon {
  width: 50%;
  height: auto;
  margin-bottom: 10px;
}

.highlight {
    color: #ff4c29;
}

.how-to-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.how-to-step {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-bottom: 20px;
  width: 100%;
  justify-content: center;
}

.how-to-step p {
  font-size: 20px;
}

.how-to-step .icon {
  width: 30%;
  height: auto;
  flex-shrink: 0;
}

.how-to-step:nth-child(odd) {
  flex-direction: row;
}

.how-to-step:nth-child(even) {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .how-to-step {
    flex-direction: column !important;
    text-align: center;
  }

  .how-to-step .icon {
    margin-bottom: 10px;
  }
}

.faq-item {
    background: #1c1c1c;
    padding: 15px;
    margin-bottom: 10px;
}

.blog-section {
  max-width: 960px;
  margin: 40px auto;
  padding: 0 15px;
  color: white;
  font-family: Arial, sans-serif;
}

.blog-section h2 {
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 1.8rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-entry {
  background: #121212;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 10px rgba(255,255,255,0.05);
}

.blog-img-placeholder {
  background: #445566;
  height: 150px;
  border-radius: 8px;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ccc;
  font-size: 1rem;
  font-weight: 600;
  user-select: none;
}

.blog-entry h3 {
  font-size: 1.1rem;
  margin: 0 0 10px 0;
  font-weight: 600;
  line-height: 1.3;
}

.blog-entry time {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 15px;
}

.read-more {
  color: #d18ab1;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #ff4c29;
}

.btn-blog {
  display: inline-block;
  padding: 12px 25px;
  background: #7e57f4;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 10px;
  border: 3px solid #bca9ff;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin: 0 auto;
}

.btn-blog:hover {
  background: #653ecf;
}

.blog-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 767px) {

    .swiper-slide {
        width: 120px !important;
        max-width: 120px !important;
        flex: 0 0 120px !important;
    }

    .swiper-slide img {
        width: 120px;
        height: 180px;
        object-fit: cover;
    }

}

.footer {
  background-color: #1f1f1f;
  color: white;
  padding: 40px 20px 20px;
  margin-top: 50px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h3,
.footer-column h4 {
  margin-bottom: 15px;
  color: #ff4c29;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #fff;
}

.social-icons a {
  color: #ccc;
  margin-right: 10px;
  font-size: 18px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #aaa;
}

/* "View all" list pages: Now Playing, Recently Added, Popular */
.list-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px 50px;
}

.list-container h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.movies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
}

@media (min-width: 768px) {
  .movies-grid {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 25px;
  }
}

.movie-card {
  background: #1c1c1c;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.movie-card:hover {
  transform: translateY(-4px);
}

.movie-card a {
  display: block;
  color: white;
  text-decoration: none;
}

.movie-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
}

.movie-card h2 {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  padding: 10px 12px 4px;
}

.movie-card .visits-count {
  font-size: 0.8rem;
  color: #999;
  padding: 0 12px 12px;
}