:root {
    --color-main: rgb(112, 1, 1);
    --gap-05: 5px;
    --gap-1: 10px;
    --gap-2: 20px;
    --gap-3: 30px;
    --gap-4: 40px;
    --color-1: #060d17;
    --color-1-dark: #000811;
    --color-1-dark-transparent: #000811e3;
    --color-1-light: #001c3f;
    --color-2: #fbc500;
    --color-2-transparent-1: #fbc500c0;
    --color-3: #690202;
    --color-4: #ff204e;
    --color-2-gradient: linear-gradient(
        90deg,
        rgba(105, 2, 2, 1) 0%,
        rgba(105, 2, 2, 1) 15%,
        rgba(57, 59, 58, 0) 100%
    );
    --box-shadow: 4px 10px 28px -3px black;
    --box-shadow-color-2: 4px 10px 28px -10px var(--color-2);
    --box-shadow-left: -28px -6px 9px -24px rgba(0, 0, 0, 0.75);
}

/* Genel Ayarlar */
* {
    box-sizing: border-box;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* Section 1: Popular Movies */
.section-popular-movies {
    margin-bottom: 50px;
}

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

.movie-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.movie-item {
    text-align: center;
}

.movie-item img {
    width: 149.6px;
    height: 220px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.movie-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.movie-item p {
    font-size: 0.9rem;
    color: #aaa;
}

/* Section 2: Featured Movie */
.section-featured-movie {
    margin-bottom: 50px;
}

.featured-hero {
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero-description {
    max-width: 600px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-watch-now {
    background-color: #007bff;
    color: #fff;
}

.btn-playlist {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

/* Tabs and Movie List */
.movie-tabs {
    margin-top: 20px;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.tab {
    font-size: 1rem;
    color: #aaa;
    cursor: pointer;
}

.tab.active {
    color: #fff;
    font-weight: bold;
    border-bottom: 2px solid #007bff;
}

.movie-list {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* .movie img {
    width: 150px;
    height: 220px;
    border-radius: 10px;
} */

.section-tv-premieres {
    margin: 50px 0;
    color: #fff;
}

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

.premiere-title {
    font-size: 1.8rem;
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.nav-button {
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    cursor: pointer;
}

.premiere-grid {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.episode-item {
    text-align: center;
}

.episode-item img {
    border-radius: 5px;
}

.episode-title {
    font-weight: bold;
    margin-top: 10px;
}

.section-content {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.top-movies,
.newest-movies {
    flex: 1;
}

.top-movies h3,
.newest-movies h3 {
    margin-bottom: 20px;
}

.movies-tab {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.tab {
    cursor: pointer;
    color: #aaa;
}

.tab.active {
    color: #fff;
}

.movies-list {
    list-style: none;
    padding: 0;
}

.movies-list li {
    margin-bottom: 10px;
}

.rank {
    font-weight: bold;
}

.new-movie img {
    border-radius: 10px;
    margin-bottom: 10px;
    width: 100%;
}

.btn {
    padding: 5px 10px;
    margin-top: 10px;
    display: inline-block;
    border-radius: 5px;
}

.btn-watch-now {
    background-color: #007bff;
    color: #fff;
}

.btn-playlist {
    background-color: #fff;
    color: #000;
}

.more-movies {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.movie-item img {
    border-radius: 5px;
}

.movie-item p {
    margin-top: 5px;
    font-size: 0.9rem;
}

/* Genel Ayarlar */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #fff;
}

/* Header */
.site-header {
    padding: 15px 0;
}

.site-header .container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.navigation .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.navigation .nav-list li {
    margin: 0;
}

.navigation .nav-list li a {
    text-decoration: none;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navigation .nav-list li a:hover {
    color: #007bff;
}

.search-container {
    display: flex;
    gap: 10px;
}

.search-input {
    padding: 8px 12px;
    border-radius: 5px;
    border: 1px solid #555;
    background-color: #333;
    color: #fff;
    outline: none;
}

.search-input::placeholder {
    color: #aaa;
}

.search-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background-color: #0056b3;
}

a {
    text-decoration: none;
}

a:link,
a:visited {
    color: inherit;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: var(--color-1);
}

/* .loader-wrap{
  display: none;
  width: 100%;
  height: 100vh;
  background-color: var(--color-1-dark);
  z-index: 999;
}



body.fadeOut .loader-wrap{
  display: flex!important;
  align-items: center;
  justify-content: center
} */

#loader-gif {
    margin: auto;
    width: 100px;
}

.main-content {
    background-color: var(--color-1-dark);
    position: relative;
    box-shadow: -2px 10px 33px 15px rgba(0, 8, 17, 0.43);
    -webkit-box-shadow: -2px 10px 33px 15px rgb(0 8 17);
    -moz-box-shadow: -2px 10px 33px 15px rgba(0, 8, 17, 0.43);
}
.site-header {
    background-color: var(--color-1-dark);
}
.navigation .nav-list li a:hover {
    color: var(--color-2);
}

/*HOME _start*/

.movie-list-grid__content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    position: relative;
}

.movie-list-grid__title.hasBtn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.movie-list-grid__title .btn-small{
    display: none;
}

.movie-list-grid:hover .btn-small{
    display: inline-block;
}

/*HOME _end*/

/*Watch _start*/

.watch-top-section {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 20px;
    background-image: url(../../assets/dump-image/backdropdark.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 0;
    padding: var(--gap-1);
    border: 1px solid var(--color-2);
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    background-color: var(--color-1-dark);
    overflow: hidden;
}

.watch-top-section::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.808);
    z-index: -1;
    backdrop-filter: blur(2px);
}

.watch-poster {
    height: 100%;
    display: flex;
    align-items: center;
}

.watch-detail {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.watch-detail__title h1 {
    margin: unset;
    text-transform: capitalize;
}

.watch-detail__genres {
    margin-top: auto;
    margin-bottom: 10px;
}

.watch-top-section h1 {
    margin-top: 0px;
}

.watch-detail__genres-content {
    display: flex;
    column-gap: var(--gap-1);
    flex-wrap: wrap;
}

.watch-detail__genres-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    margin: 4px;
    display: inline-block;
}
.watch-detail__info {
    display: flex;
    column-gap: 20px;
}

.watch-detail__info__item {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    color: white;
    padding: 10px;
}

.watch-detail__info__item__text {
    font-weight: bold;
}

.watch-detail__info__item.imdb {
    background-color: #f5c518;
    color: black;
}

.watch-detail__info__item.duration {
    background-color: rgba(231, 95, 5, 0.322);
}

.watch-detail__info__item.release {
    background-color: var(--color-1);
}

.watch-poster img {
    width: 100%;
    border-radius: 20px;
}

div.watch-video-section {
    margin: var(--gap-4) 0;
}

.watch-video-section__sources-tabs {
    display: flex;
    column-gap: var(--gap-1);
    margin: var(--gap-2) 0px;
}

.watch-video-section__sources-tabs__item {
    padding: 10px;
    cursor: pointer;
}

.watch-video-section__sources-tabs__item.active {
    background-color: var(--color-main);
}

div.watch-video-section__iframe iframe {
    width: 100%;
    height: 500px;
    box-shadow: var(--box-shadow);
}

/*Watch _end*/

/*Series */
.series-content-section__inner {
    display: block;
}

.series-seasons-list {
    display: flex;
    column-gap: 10px;
    margin-bottom: 20px;
}

.series-seasons-list-item {
    text-align: center;
    padding: 6px 4px;
    border-radius: 10px;
    cursor: pointer;
    background: linear-gradient(to bottom right, #0f172a, #1e293b);
    min-width: 120px;
}

.series-seasons-list-item.active {
    border-bottom: 3px solid var(--color-2);
}

.series-seasons-poster img {
    width: 150px;
}

.series-episodes__episodes-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    display: none;
}
.series-episodes__episodes-list.active {
    display: grid;
}

.series-episodes__episodes-list-item {
    position: relative;
    height: 120px;
    background-size: cover;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
    box-shadow: var(--box-shadow);
    background-position: center;
    background-size: 110%;
    transition: all 0.2s ease-in;
}

.series-episodes__episodes-list-item.active {
    border-bottom: 1px solid var(--color-2);
}

.series-episodes__episodes-list-item:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.series-episodes__episodes-list-item:hover {
    background-size: 120%;
    box-shadow: var(--box-shadow-color-2);
}

.series-episodes__episodes-list-item:hover:before {
    background: rgba(0, 0, 0, 0.4);
}

/*Series end*/

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.9);
    border-radius: 10px;
    background-color: #cccccc00;
}

::-webkit-scrollbar {
    width: 6px;
    background-color: #f5f5f500;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #d62929;
    background-image: -webkit-linear-gradient(
        90deg,
        transparent,
        rgba(0, 0, 0, 0.4) 50%,
        transparent,
        transparent
    );
}

.btn-style1 {
    border-left: 2px solid var(--color-2);
    border-bottom-left-radius: 15px;
    transition: background-color 300ms linear;
}

.btn-style1.active {
    background: var(--color-2-gradient);
}

.btn-style1:hover {
    background-color: var(--color-2);
}

/*Series info _end*/

/*Genres   _start*/
.genre-list-alphabetical {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}
/*Genres   _end*/

.pagination {
    display: flex;
    justify-content: center;
    column-gap: 10px;
    margin: 20px 0;
}

.pagination a,
.pagination span {
    padding: 10px 20px;
    background-color: var(--color-1-dark);
}

.pagination .pagination__current {
    background-color: var(--color-2);
}

.watch-recommendations {
    position: relative;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.watch-recommendations .movie-list-grid__content {
    padding: 5px 50px;
}

.watch-recommendations__btn {
    position: absolute;
    height: 40px;
    width: 40px;
    top: calc(50% - 25px);
    left: 5px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    rotate: 180deg;
    border-radius: 10px;
    background-color: var(--color-1-dark);
    border: 1px solid var(--color-2);
}

.watch-recommendations__btn[dr="next"] {
    right: 5px;
    left: unset;
    rotate: unset;
}

.watch-recommendations__btn svg {
    width: 20px;
    height: 20px;
    fill: var(--color-2);
}

.watch-recommendations__btn[dr="next"] svg {
}

.watch-recommendations__btn:hover {
    transform: scale(1.3);
}

.watch-recommendations .movie-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.watch-recommendations .movie-item p {
    margin-top: 5px;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.watch-recommendations .movie-item img {
    box-shadow: var(--box-shadow);
}

.searchPopup__wrap {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.searchPopup__wrap.active {
    display: flex;
}

.searchPopup__inner {
    position: relative;
    width: 100%;
    padding: 30px;
    z-index: 0;
    opacity: 0;
    backdrop-filter: blur(2px);
    background-color: var(--color-1-dark-transparent);
}

.searchPopup__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-wrap: nowrap;
}

.searchPopup__results {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-wrap: nowrap;
}

.searchPopup__form {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.searchPopup__keywordInput {
    background-color: var(--color-1);
    border: none;
    color: white;
    padding: 20px 30px;
    min-width: 400px;
    font-size: 1rem;
}

.searchPopup__keywordInput:focus {
    outline: none;
}

.searchPopup__searchBtn {
    background-color: var(--color-2);
    border: none;
    color: white;
    padding: 20px 30px;
    cursor: pointer;
    font-size: 1rem;
}

.searchPopup__close {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

@keyframes searchPopup {
    to {
        opacity: 1;
    }
}

.searchPopup__wrap.active .searchPopup__inner {
    animation: searchPopup 500ms forwards;
}

@media only screen and (max-width: 768px) {
    .movie-list-grid__content {
        grid-template-columns: 1fr;
    }
    .movie-item img {
        width: 100%;
        height: auto;
    }
    .watch-top-section {
        grid-template-columns: 1fr;
    }

    .watch-detail__info {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .watch-detail__info__item {
        width: 100%;
    }
}

/*new design start*/

.movie-list-grid-two__content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    justify-items: center;
}

.movie-item-two {
    display: inline-block;
    width: 190px;
    background-color: var(--color-1-dark);
    border-radius: 20px;
    position: relative;
    transition: all 0.5s ease-in;
}

.movie-item-two__content {
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

.movie-item-two img {
    border-radius: 20px;
    aspect-ratio: 9 / 13.5;
    width: 100%;
}

.movie-item-two__title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: unset;
    padding: 10px 10px;
    text-align: center;
    text-transform: capitalize;
    background: rgb(0, 0, 0);
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 1) 7%,
        rgba(0, 0, 0, 0) 100%
    );
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.movie-item-two__rating {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--color-2-transparent-1);
    padding: 5px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    color: black;
}
.movie-item-two__genres {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    transition: opacity 0.5s ease-in;
    opacity: 0;
    height: 100%;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.movie-item-two__genres-item {
    white-space: nowrap;
    padding: 5px;
    background: rgb(105, 2, 2);
    background: linear-gradient(
        90deg,
        rgba(105, 2, 2, 1) 7%,
        rgba(0, 0, 0, 0) 100%
    );
    font-size: 0.8rem;
}

.movie-item-two:hover {
    transform: scale(1.05);
    box-shadow: 7px 6px 45px -17px var(--color-2);
}

.movie-item-two:hover .movie-item-two__genres {
    display: flex;
    opacity: 1;
}
.movie-item-two:hover .movie-item-two__content {
    background-color: rgba(0, 0, 0, 0.8);
}

body {
    opacity: 0;
    animation: fadeIn 500ms forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

body.fadeOut {
    opacity: 1;
    animation: fadeOut 500ms forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
    }
}

@keyframes scaleUp {
    to {
        transform: scale(1.4);
    }
}

.movie-item-two.scaleUp,
.watch-poster.scaleUp {
    opacity: 1;
    animation: scaleUp 500ms forwards;
}

@keyframes scaleDown {
    0% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1);
    }
}

.movie-item-two,
.watch-poster {
    opacity: 1;
    animation: scaleDown 500ms forwards;
}

.watch-top-section::after {
    backdrop-filter: blur(0px);
    animation: toBlur 2000ms forwards;
    animation-delay: 200ms;
}

@keyframes toBlur {
    to {
        backdrop-filter: blur(4px);
    }
}
/*new design end*/

.searchPopup__result-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    border: 1px solid var(--color-1);
    background-color: var(--color-1-dark-transparent);
    border: 1px solid var(--color-2);
    border-radius: 20px;
}

.searchPopup__result-item__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 0;
}

.searchPopup__result-item__title {
    margin: unset;
}

.searchPopup__result-item__poster {
    width: 100%;
    max-width: 100%;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.searchPopup__result-item__overview {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 70%;
    margin: unset;
}

.searchPopup__result-item__genres {
    display: flex;
    gap: 20px;
}
.searchPopup__result-item__genre-item {
    background: var(--color-2-gradient);
}

/*ekooSlider*/
.ekooSlider__container {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.ekooSlider__track {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
}

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

.ekooSlider__item {
    flex: 0 0 auto;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ekooSlider__nav-btn {
    position: absolute;
    top: 0;
    height: 100%;
    width: 40px;
    background: linear-gradient(
        90deg,
        rgba(0, 12, 27, 1) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    opacity: 0;
    transition: all 200ms ease-in;
    z-index: 9999;
}

.ekooSlider__nav-btn.active {
    opacity: 1;
}

.ekooSlider__nav-btn.prev {
    left: -10px;
}

.ekooSlider__nav-btn.next {
    right: -10px;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 12, 27, 1) 100%
    );
}

.ekooSlider__dots {
    text-align: center;
    padding-top: 10px;
}

.ekooSlider__dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #888;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.ekooSlider__dots .dot.active {
    background: #fff;
}
/*ekooSlider_end*/

.page-text-hero {
    height: 140px;
    overflow: hidden;
    position: relative;
    z-index: 0;
    background-position: center;
    background-size: cover;
    font-size: 15px;
    color: gray;
    padding: 30px;
    padding-bottom: 0;
    transition: height 0.5s ease;
}

.page-text-hero.open {
    height: 370px;
    overflow-y: hidden;
    color: rgba(255, 255, 255, 0.953);
}
.page-text-hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.308);
    z-index: -2;
    backdrop-filter: blur(1px);
    top: 0;
    left: 0;
}
.page-text-hero.open .page-text-hero::before {
    background-color: rgba(0, 0, 0, 0.708);
}
.page-text-hero::after {
    content: "\25be";
    position: absolute;
    width: 100%;
    height: 40px;
    z-index: 2;
    backdrop-filter: blur(0.5px);
    bottom: 0;
    left: 0;
    font-size: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-1);
    cursor: pointer;
}

.page-text-hero::after:hover .page-text-hero {
    height: 170px;
}
.page-text-hero.open::after {
    backdrop-filter: blur(5px); /* Eğer bulanıklaştırmak istiyorsanız */
    display: block; /* Eğer gizlemek istiyorsanız, display: none yerine hide etme yöntemi */
    opacity: 0; /* Veya görünürlüğü sıfırlamak için opacity kullanabilirsiniz */
}

.page-text-hero.open::before {
    height: 600px; /* Veya görünürlüğü sıfırlamak için opacity kullanabilirsiniz */
}

.page-text-hero__content {
    height: 100%;
    max-height: 100%;
    overflow: scroll;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: url("https://filmlerinefendisi.com/themes/std/src/img/text-hero-bg.jpg")
        center / cover no-repeat;
    transform: translate(-50%, -50%) scale(1);
    animation: zoomPan 4s ease-in-out infinite alternate;
}

@keyframes zoomPan {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    25% {
        transform: translate(calc(-50% + 10px), -50%) scale(1.02);
    }
    50% {
        transform: translate(calc(-50% + 20px), -50%) scale(1.05);
    }
    75% {
        transform: translate(calc(-50% + 30px), -50%) scale(1.07);
    }
    100% {
        transform: translate(calc(-50% + 40px), -50%) scale(1.1);
    }
}

.fe-filter-section {
    margin-bottom: 30px;
}
.fe-filter-section--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}
.fe-filter-title {
    font-weight: 600;
    margin-bottom: 10px;
}
.fe-scroll-wrapper {
    position: relative;
}
.fe-scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 10px 0;
    scroll-behavior: smooth;
}
.fe-scroll-container::-webkit-scrollbar {
    display: none;
}
.fe-filter-button {
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #555;
    background: #1f1f1f;
    color: white;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fe-filter-button.fe-active {
    border-color: #ffd700;
    color: #ffd700;
}
.fe-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(13, 17, 23, 0.8);
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 2;
    padding: 5px;
    opacity: 0;
    transition: opacity 0.3s;
}

.fe-scroll-left {
    left: 0;
}
.fe-scroll-right {
    right: 0;
}
.fe-scroll-wrapper:hover .fe-scroll-btn {
    opacity: 1;
}
.fe-scroll-btn svg {
    height: 24px;
    width: 24px;
    fill: #ffd700;
}
.fe-range-container {
    display: flex;
    align-items: center;
    gap: 10px;
}
.fe-range-input {
    flex: 1;
}
.fe-actions {
    position: relative;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}
.fe-btn {
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    cursor: pointer;
}
.fe-btn-clear {
    background-color: #1f1f1f;
    color: white;
}
.fe-btn-apply {
    background-color: #ffd700;
    color: black;
}

.fe-selection-float {
    position: relative;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #ffd700;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.2);
    max-width: 200px;
    z-index: 999;
    backdrop-filter: blur(8px);
    display: flex;
    column-gap: 20px;
}
.fe-selection-float p {
    margin: 0;
    line-height: 1.5;
}

.fe-filter-title {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 16px;
}
.fe-range-container {
    display: flex;
    align-items: center;
    gap: 10px;
}
.fe-range-input {
    flex: 1;
}
.fe-slider-wrapper {
    position: relative;
    margin-top: 40px;
}
.fe-slider-label {
    position: absolute;
    top: -36px;
    transform: translateX(-50%);
    background: #ffd700;
    color: #000;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 12px;
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: left 0.2s ease, transform 0.3s ease;
    animation: fe-floatUpDown 2s ease-in-out infinite;
}

@keyframes fe-floatUpDown {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-4px);
    }
}

#fe-selected-tags {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.fe-selected-tag {
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #555;
    background: #1f1f1f;
    color: white;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 6px;
}

.fe-filter-result {
    display: block;
    width: 100%;
    margin-top: 40px;
}

.fe-filter-result__list {
    display: block;
}

.fe-filter-result__list__content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.fe-content-type-switch {
    display: flex;
    border: 2px solid var(--color-1-dark);
    border-radius: 8px;
    overflow: hidden;
}
.fe-content-type-btn {
    flex: 1;
    padding: 10px;
    cursor: pointer;
    border: none;
    background: #f0f0f0;
    transition: background 0.3s, color 0.3s;
}
.fe-content-type-btn.active {
    background: var(--color-2);
    color: black;
    font-weight: bold;
}
.fe-range-container {
    margin: 10px 0;
}

.fe-range-container input[type="range"] {
    width: 100%;
    margin: 5px 0;
}

.fe-range-input-wrap {
    flex: 1;
    text-align: center;
}

.fe-filter-main-title {
    text-align: center;
}

.fe-filter.collapsed {
    max-height: 60px;
    overflow: hidden;
}
.fe-btn-apply:disabled {
    opacity: 0.5;
    pointer-events: none;
}

.fe-filter-collapse-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    right: 0;
}

.fe-filter-collapse-icons-item {
    display: none;
    padding: 10px;
    background-color: var(--color-1);
    justify-content: center;
    align-items: center;
}

.fe-filter-collapse-icons-item svg {
    width: 30px;
    height: auto;
    fill: var(--color-2);
}

.fe-filter.collapsed .fe-filter-collapse-icons-item.open {
    display: inline-flex;
}

.fe-filter {
    position: relative;
    max-height: 1000px;
    transition: max-height 0.5s ease;
}

.fe-filter-result__list.empty {
    display: none;
}

.fe-filter-result__list.empty .fe-filter-result__empty__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
}

.btn-small {
    padding: 5px 10px;
    background-color: var(--color-2);
    color: black;
    cursor: pointer;
    font-weight: bold;
}
