@font-face {
    font-family: 'Inter';
    src: url('Inter.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('Inter.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('Inter.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

body::-webkit-scrollbar {
    width: 5px;
    background: rgba(0, 0, 0, 0.704);
}
body::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.19);
    border-radius: 0px;
    border: none;
}
body::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.416);
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    -webkit-overflow-scrolling: touch;
}

h1 {
    margin: 0 0 0 0;
    font-weight: 700;
    color: #ffffff;
    line-height: 100%;
}
@media (max-width: 1000px) {
    h1 {
        font-size: calc(32px - 10px);
    }
}
@media (max-width: 600px) {
    h1 {
        font-size: calc(32px - 15px);
    }
}

h2 {
    margin: 0 0 0 0;
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    line-height: 20px;
}
@media (max-width: 1000px) {
    h2 {
        font-size: 19px;
    }
}
@media (max-width: 600px) {
    h2 {
        font-size: 17px;
    }
}

h3 {
    font-size: 18px;
    margin: 0 0 0 0;
    font-weight: 500;
    color: #ffffff;
}
@media (max-width: 1000px) {
    h3 {
        font-size: 16.5px;
    }
}
@media (max-width: 600px) {
    h3 {
        font-size: 15.5px;
    }
}

h4, h5, h6 {
    margin: 0 0 0 0;
    font-weight: 500;
    color: #ffffff;
}

p {
    margin: 0 0 0 0;
    line-height: 120%;
    font-weight: 400;
    letter-spacing: -0.4px;
    color: #ffffffbb;
}

span {
    color: #555;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 100%;
    background-color: #fff;
}

.container2 {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    background-image: url('11.png');
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    z-index: 0;
    padding: 16px;
}
.container2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(70px);
    z-index: -1;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 10px 16px 10px 16px;
    text-align: center;
    box-sizing: border-box;
    z-index: 100;
    gap: 10px;
}

header::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0%;
    width: 100%;
    height: 54px;
    pointer-events: none;
    background: inherit;
    background-color: rgba(0,0,0,0.3);
    backdrop-filter: blur(30px);
    z-index: -1;
    border: 1px solid #ffffff24;
    box-shadow: 0 0 30px #000000b1;
}

.header {
    max-width: 1450px;
    width: 100%;
    display: flex;
    align-items: center;
    margin: auto;
}

footer {
    background-color: #1f1f1f;
    color: #fff;
    text-align: center;
    padding: 18px 0 26px 0;
}

button {
    position: relative;
    padding: 7px 15px;
    border: none;
    border-radius: 50px;
    background-color: #ffffff21;
    border: 1px solid #ffffff21;
    color: #ffffffc0;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.2s ease;
    flex-shrink: 0
}
button:hover {
    transition: all 0.2s ease;
    color: #fff;
    border: 1px solid rgb(255, 255, 255);
}
button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255, 255, 255, 0.474) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-20deg);
    pointer-events: none;
    transition: none;
}
button:hover::before {
    animation: shine 0.8s forwards;
}
@keyframes shine {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}
.btn1 {
    border-radius: 50px 0 0 50px;
    transition: all 0.2s ease;
}
.btn2 {
    border-radius: 0 0 0 0;
    transition: all 0.2s ease;
}
.btn3 {
    border-radius: 0 50px 50px 0;
    transition: all 0.2s ease;
}

ul, ol {
    margin: 0 0 15px 20px;
}

li {
    margin-bottom: 5px;
}

.logo-gradient {
    font-size: 22px;
    font-weight: 800;
    line-height: 20px;
    cursor: pointer;
    text-align: center;
    transform: translateY(1px);
    background: linear-gradient(
        90deg,
        #686868,
        #b5b5b5,
        #dcdcdc, 
        #ffffff,
        #dddddd, 
        #aeaeae, 
        #555555 
    );
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: liquid-gradient 6s ease-in-out infinite;
    text-shadow: 0 0 12px rgba(176, 176, 176, 0.5),
                 0 0 25px rgba(91, 91, 91, 0.3);
}
@keyframes liquid-gradient {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 50% 100%;
    }
    50% {
        background-position: 100% 50%;
    }
    75% {
        background-position: 50% 0%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.header-left .logo {
    height: 50px;
}

/* Търсачка в средата */
.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 0;
}
@media (max-width: 480px) {
    .header-center {
        justify-content: right;
    }
}
.header-center input {
    width: 300px;
    border-radius: 50px 0 0 50px;
    transition: all 0.2s ease;
}
@media (max-width: 850px) {
    .header-center input {
        width: 200px;
    }
}
@media (max-width: 480px) {
    .header-center input {
        width: 100px;
    }
}

input {
    width: 100%;
    padding: 7px 15px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    background-color: #ffffff21;
    border: 1px solid #ffffff21;
    color: #fff;
    font-weight: 500;
    outline: none;
    transition: all 0.2s ease;
}

input::placeholder {
    color: #ffffff7c;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    transition: all 0.2s ease;
}

input:hover {
    border: 1px solid rgb(255, 255, 255);
}

.header-center button {
    padding: 8px 16px;
    border: none;
    width: 40px;
    border-radius: 0 50px 50px 0;
    background-color: #ffffff21;
    border: 1px solid #ffffff21;
    color: #fff;
    cursor: pointer;
    background-image: url('img/search.svg');
    background-repeat: no-repeat;
    background-position: 6.5px center;
    background-size: 22px 22px;
}

.header-center button:hover {
    background-image: url('img/search1.svg');
    background-repeat: no-repeat;
    background-position: 6.5px center; 
    background-size: 22px 22px; 
    border: 1px solid rgb(255, 255, 255);
}

.header-right {
    display: flex;
    gap: 0;
}
@media (max-width: 400px) {
    .header-right {
        display: none;
    }
}

.container {
    box-sizing: border-box;

}

.main-container {
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    background-image: url('11.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.main-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25%;
    pointer-events: none;
    background: linear-gradient(to top, rgba(255, 0, 0, 0.505) 0%, rgba(0,0,0,0) 100%);
    z-index: 0;
}
@media (max-width: 1000px) {
    .main-container {
        height: 90vh;
    }
}
@media (max-width: 600px) {
    .main-container {
        height: 100vh;
    }
}
@media (max-height: 600px) {
    .main-container {
        height: 90vh;
    }
}
@media (min-height: 600px) {
    .main-container {
        height: 70vh;
    }
}

.overlay-container {
    position: absolute;
    height: max-content;
    width: 100%;
    max-width: 1490px;
    bottom: 16px;
    padding: 0 16px 0 16px;
    display: flex;
    gap: 10px;
    align-items: last baseline;
    box-sizing: border-box;
    margin: 0;
    z-index: 1;
}

.content-image {
    height: 230px;
    aspect-ratio: 1 / 1.5;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 30px #000000;
    border-radius: 16px;
}
@media (max-width: 1000px) {
    .content-image {
        height: 190px;
    }
}
@media (max-width: 700px) {
    .content-image {
        height: 150px;
    }
}
@media (max-width: 560px) {
    .content-image {
        display: none;
    }
}

.content-logo {
    top: -90px;
    left: 10px;
    position: absolute;
    max-height: 80px;
    max-width: 150px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left bottom !important;
    background-color: transparent;
}

.overlay-texts {
    margin-top: auto;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #00000080;
    padding: 10px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 100%;
    color: #fff;
    box-shadow: 0 0 30px #00000072;
}

.share {
    position: absolute;
    right: 7px;
    top: 7px;
    padding: 8px 16px;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50px;
    background-color: transparent;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    background-image: url('img/share.svg');
    background-repeat: no-repeat;
    background-position: 5.9px center;
    background-size: 22px 22px;
}

.share:hover {
    background-image: url('img/share1.svg');
    background-repeat: no-repeat;
    background-position: 5.9px center; 
    border: 1px solid rgb(255, 255, 255);
    background-size: 22px 22px; 
}

.categories {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: -2px;
}

.text-box {
    padding: 5px 8px 5px 8px;
    border-radius: 8px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffffd2;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 100%;
}
@media (max-width: 800px) {
    .text-box {
        font-size: 12px;
        padding: 4px 6px 4px 6px;
    }
}

.seasons-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 1455px;
    margin: auto;
    display: flex;
    gap: 0;
    padding-bottom: 8px;
    box-sizing: border-box;
}
.seasons-container button{
    font-weight: 500;
    font-size: 14.5px;
}
.seasons-container::-webkit-scrollbar {
    height: 9px;
    background: transparent;
}
.seasons-container::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.19);
    border-radius: 50px;
    border: none;
}
.seasons-container::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.416);
}

.season-container {
    display: flex;
    align-items: center;
    gap: 30px;
    line-height: 100%;
}

.sizef {
    width: 100%;
    max-width: 1455px;
    align-items: flex-start;
    display: flex;
    margin: 16px auto 16px auto;
    gap: 30px;
}
@media (max-width: 1250px) {
    .sizef {
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap
    }
}

.episodes-container {
    display: flex;
    flex-direction: column !important;
    align-self: flex-start;
    gap: 10px;
}
@media (max-width: 1250px) {
    .episodes-container {
        width: 100%;
        align-items: center;
        flex-wrap: wrap
    }
}

.episode-card {
    width: 100%;
    max-width: 885px;
    display: flex;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid rgba(255,255,255,0.1);
}

.episode-thumb {
    height: auto; 
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    width: 230px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block; 
    align-self: flex-start;
}
@media (max-width: 650px) {
    .episode-thumb {
        width: 190px;
    }
}

.episode-info {
    flex: 1;
    display: grid;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.episode-info p {
    font-size: 14px;
}
@media (max-width: 600px) {
    .episode-info p {
        font-size: 13px;
    }
}

.episode-info h3 {
    margin: 0 0 0 0;
    line-height: 100%;
}

.episode-info button {
    width: max-content;
    line-height: 110%;
}

@media (max-width: 450px) {
    .episode-card {
        flex-direction: column;
        padding: 12px;
    }

    .episode-thumb {
        width: 100%;
        aspect-ratio: 16 / 9;
    }
}

.movie-card {
    width: 100%;
    max-width: 885px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    margin-top: -16px;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid rgba(255,255,255,0.1);
}

.movie-thumb {
    height: auto; 
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block; 
    align-self: flex-start;
}

.movie-info {
    flex: 1;
    display: grid;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.movie-info p {
    font-size: 14px;
}
@media (max-width: 600px) {
    .movie-info p {
        font-size: 13px;
    }
}

.movie-info button {
    width: max-content;
    line-height: 110%;
}

.next-watch {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-radius: 16px;
    box-sizing: border-box;
}
@media (max-width: 1250px) {
    .next-watch {
        max-width: 885px;
        width: 100%;
    }
}

.rec-thumb {
    width: calc(100% - 1px);
    aspect-ratio: 1 / 1.5;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px 16px 0 0 ;
    opacity: 0.5;
    transition: all 0.2s ease;
}
.opacity {
    opacity: 0.8;
    transition: all 0.2s ease;
}

.similar-content {
    position: relative;
    flex: 1 1 120px; 
    max-width: 140.5px;
    aspect-ratio: 1 / 1.5;
    object-fit: cover;
    background-color: #ffffff0e;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 0 10px #0000001e;
    transition: all 0.2s ease;
    cursor: pointer;
}
.similar-content:hover {
    border: 1px solid rgba(255, 255, 255, 0.54);
    transition: all 0.2s ease;
}
.border-opacity:hover {
    border: 1px solid rgb(255, 255, 255);
    transition: all 0.2s ease;
}

.similar-content p {
    margin: -3px 7px 7px 7px;
    font-size: 12px;
    text-align: center;
    transition: all 0.2s ease;
}
.similar-content:hover p {
    color: #fff;
    transition: all 0.2s ease;
}

.similar-content:hover .rec-thumb {
    opacity: 1;
    transition: all 0.2s ease;
}









.slider-wrapper {
        width: 100%;
        max-width: 1450px;
        margin: 0 auto;
    }

    .hero-slider {
        position: relative;
        width: 100%;
        height: 85vh; /* Adjust if needed */
        overflow: hidden;
        border-radius: 8px;
    }

    .slide {
        position: absolute;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
    }

    .slide.active {
        opacity: 1;
    }

    /* Text content */
    .slide-content {
        position: absolute;
        bottom: 22%;
        left: 5%;
        max-width: 45%;
        color: white;
        text-shadow: 2px 4px 12px rgba(0,0,0,0.85);
        opacity: 0;
        transform: translateY(80px);
        transition: all 0.5s ease;
    }

    .slide.active .slide-content {
        opacity: 1;
        transform: translateY(0);
    }

    .slide-title {
        font-size: 50px;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .slide-desc {
        font-size: 20px;
        line-height: 1.5;
    }

    /* NAV ARROWS – bottom corners */
    .nav-arrow {
        position: absolute;
        bottom: 14px;
        width: 45px;
        height: 45px;
        font-size: 28px;
        line-height: 100%;
        font-weight: 800;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .arrow-left { left: 14px; }
    .arrow-right { right: 14px; }

    /* DOTS */
    .dots {
        position: absolute;
        bottom: 25px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        gap: 12px;
        z-index: 5;
    }

    .dot {
        width: 11px;
        height: 11px;
        background: rgba(255, 255, 255, 0.469);
        border-radius: 50%;
        cursor: pointer;
        transition: 0.3s;
    }

    .dot.active {
        width: 15px;
        height: 15px;
        background: rgba(255, 255, 255, 0.93);
    }