/* ═══════════════════════════════════════
   CYNEMATV BOOTSTRAP 5 — SHARED CSS
═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --cynema-red: #ff0015;
    --cynema-bg: #080a0f;
    --cynema-surface: #0e1016;
    --cynema-border: rgba(255, 255, 255, 0.06);
}

*,
:before,
:after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--cynema-bg);
    color: #fff;
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-track {
    background: var(--cynema-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--cynema-red);
    border-radius: 4px;
}

.text-gray {
    color: #7b7b7b !important
}

.bdr {
    border: 1px solid rgba(255, 255, 255, 0.15)
}

.table> :not(caption)>*>* {
    background-color: transparent;
}

.btn-sm-outline {
    background: transparent;
    border: 1px solid rgba(255, 0, 21, 0.4);
    border-radius: 14px;
    padding: 10px 18px;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--cr);
    font-weight: 600;
}

.btn-sm-outline:hover {
    background: var(--cr);
    border: 1px solid var(--cr);
    color: #ffffff;
}

/* ── NAVBAR ── */
.ctv-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 70px;
	/*background: rgba(8, 10, 15, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6);*/
    transition: height 0.3s;
}
.ctv-nav::before {
    content: "";
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    min-height: 80px;
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.9) 70%);
	background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.9) 70%);
	background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.9) 70%);
	background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.9) 70%);
	background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.9) 70%);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: all 0.4s cubic-bezier(0.2, 0, 0.2, 1);
    z-index: -1;
}

@media(min-width:992px) {
    .ctv-nav {
        height: 80px;
    }
}

.ctv-nav .navbar-brand img {
    height: 40px;
}

.offcanvas-header .navbar-brand .site-logo {
    height: 50px;
}

@media(min-width:992px) {
    .ctv-nav .navbar-brand img {
        height: 52px;
    }
}

.ctv-nav .nav-link {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 24px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.8) !important;
    text-transform: uppercase;
    padding: 6px 0 !important;
    transition: color 0.2s;
}

.ctv-nav .nav-link:hover {
    color: var(--cynema-red) !important;
}

.ctv-nav .nav-link.active-link {
    color: var(--cynema-red) !important;
    border-bottom: 2px solid var(--cynema-red);
    padding-bottom: 4px !important;
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.icon-circle:hover {
    background: var(--cynema-red);
    border-color: var(--cynema-red);
    transform: scale(1.04);
}

.btn-subscribe {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--cynema-red);
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.25s;
    letter-spacing: 0.04em;
}

.btn-subscribe i {
    font-size: 14px;
}

.btn-subscribe:hover {
    background: #c0000f;
    transform: scale(1.04);
    color: #fff;
}


.ctv-pagination .page-item {
    margin: 0 1px;
}

.ctv-pagination .page-link {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 10px !important;
    /* Forces the rounded look */
    padding: 7px 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
}

.ctv-pagination .page-link:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.ctv-pagination .page-item.active .page-link, .ctv-pagination .page-item:hover .page-link {
    background-color: #e50914;
    /* Your Cynema Red */
    border-color: #e50914;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
}

.ctv-pagination .page-item.disabled .page-link {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
}

.ctv-pagination .page-link i {
    line-height: 1;
}

/* ── OFFCANVAS DRAWER ── */
#mobileDrawer {
    background: rgba(18, 19, 26, 0.7) !important;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--cynema-border);
}

.drawer-nav-link {
    display: block;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    padding: 10px 15px;
    border-left: 3px solid transparent;
    transition: all 0.2s;
}

.drawer-nav-link i {
    width: 22px;
    height: 22px;
    text-align: center;
    line-height: 1;
    align-content: center;
}

.drawer-nav-link:hover {
    color: var(--cynema-red);
    border-left-color: var(--cynema-red);
}

.drawer-nav-link.active-link {
    color: var(--cynema-red);
    border-left-color: var(--cynema-red);
}

/* User Profile Box Wrapper */
.profile-box-wrap {
    background: rgba(255, 0, 0, 0.2);
	border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 8px;
    padding: 12px 15px; 
    margin-bottom: 5px; 
    transition: all 0.25s ease-in-out;
}
.profile-box-wrap:hover {
	background: #111111;
	color:rgba(255, 0, 0, 1);
	border: 1px solid rgba(255, 0, 0, 0.5);
}
.profile-nav-link {
    display: flex;
    align-items: center;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 600;          /* Thick bold presentation */
    font-size: 16px;
    letter-spacing: 0.5px;     /* Slight spatial layout separation */
}

/* Icon Color Modification */
.profile-nav-link i {
    color: #99000c;
    font-size: 16px;
    transition: transform 0.2s ease;
}

.profile-box-wrap:hover .profile-nav-link i {
    transform: scale(1.05);    /* Tiny dynamic bounce feedback */
}

/* ── HERO SLIDER ── */
.hero-wrap {
    position: relative;
    overflow: hidden;
    height: 75vh;
    background: #000;
	margin-top: -90px;
}

@media(min-width:992px) {
    .hero-wrap {
        height: 100vh;
    }
}

.hero-track {
    display: flex;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
}

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--cynema-bg) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 24px;
}

@media(min-width:992px) {
    .hero-content {
        padding: 80px 48px;
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    color: var(--cynema-red);
	backdrop-filter: blur(10px) saturate(1.6);
	-webkit-backdrop-filter: blur(10px) saturate(1.6);
	padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    margin-bottom: 12px;
}

.hero-title {
    font-size: clamp(26px, 4.5vw, 70px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
	margin-bottom:0;
    color: var(--cynema-red);
	text-shadow:0 5px 5px rgba(147, 143, 143, 0.3);
}

.btn-watch-now {
    height: 50px;
    padding: 0 34px;
    border-radius: 9999px;
    background: var(--cynema-red);
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.btn-watch-now:hover {
    background: #ffffff;
    color: #000;
    transform: scale(1.03);
}

@media(min-width:992px) {
    .btn-watch-now {
        padding: 0 30px;
    }
}

/* Hero dots */
.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
    align-items: center;
}

.hero-dot {
    height: 8px;
    width: 16px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.4s;
    padding: 0;
}

.hero-dot.active {
    width: 56px;
    background: var(--cynema-red);
    box-shadow: 0 0 14px rgba(255, 0, 21, 0.5);
}

/* ── SECTION HEADERS ── */
.section-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cynema-red);
}

.section-title-lg {
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.view-all-link {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.view-all-link:hover {
    color: #fff;
}

/* ── MOVIE CARD (Portrait 2:3) ── */
.movie-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
    cursor: pointer;
    display: block;
}

.movie-card-img {
    position: relative;
    padding-top: 150%;
    overflow: hidden;
}

.movie-card-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.movie-card:hover .movie-card-img img {
    transform: scale(1.1);
}

.movie-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4) 40%, transparent);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 14px 16px;
}

.movie-card:hover .movie-card-overlay {
    opacity: 1;
}

.movie-card-info {
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(12px);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.movie-card:hover .movie-card-info {
    transform: translateY(0);
}

.play-btn-sm {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cynema-red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.play-btn-sm i {
    font-size: 14px;
    color: #fff;
    margin-left: 2px;
}

.card-title-sm {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ep-time-sm {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── TV CARD (Landscape 16:9) ── */
.tv-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
    cursor: pointer;
}

.tv-card-img {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
}

.tv-card-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.tv-card:hover .tv-card-img img {
    transform: scale(1.1);
}

.tv-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4) 40%, transparent);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 14px 18px;
}

.tv-card:hover .tv-card-overlay {
    opacity: 1;
}

.tv-card-info {
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(12px);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.tv-card:hover .tv-card-info {
    transform: translateY(0);
}

/* ── UPCOMING CARD ── */
.upcoming-card {
    cursor: pointer;
}

.upcoming-card-img {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--cynema-border);
    padding-top: 56.25%;
}

.upcoming-card-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.upcoming-card:hover .upcoming-card-img img {
    transform: scale(1.08);
}

.upcoming-card-play {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s;
}

.upcoming-card:hover .upcoming-card-play {
    opacity: 1;
}

.play-btn-lg {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--cynema-red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn-lg i {
    font-size: 20px;
    color: #fff;
    margin-left: 3px;
}

.upcoming-title {
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    margin-top: 16px;
    margin-bottom: 4px;
}

.upcoming-card:hover .upcoming-title {
    color: var(--cynema-red);
}

.upcoming-meta {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
}

.tvshow-item-title {
    font-size: clamp(16px, 1.8vw, 18px);
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    margin-top: 16px;
    margin-bottom: 4px;
}

.tvshow-meta {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
}

/* ── CAROUSEL SCROLLABLE ── */
.scroll-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 15px 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

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

.carousel-wrap {
    position: relative;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid var(--cynema-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #fff;
}

.carousel-arrow:hover {
    background: var(--cynema-red);
    border-color: var(--cynema-red);
}

.arrow-left {
    left: -15px;
}

.arrow-right {
    right: -15px;
}

@media(min-width:992px) {
    .arrow-left {
        left: -20px;
    }

    .arrow-right {
        right: -20px;
    }
}

/* Movie card sizes */
.movie-card {
    width: 160px;
    flex-shrink: 0;
}

@media(min-width:768px) {
    .movie-card {
        width: 220px;
    }
}

@media(min-width:992px) {
    .movie-card {
        width: 260px;
    }
}

/* TV card sizes */
.tv-card {
    width: 280px;
    flex-shrink: 0;
}

@media(min-width:768px) {
    .tv-card {
        width: 380px;
    }
}

@media(min-width:992px) {
    .tv-card {
        width: 440px;
    }
}

.tvshows-grid .tv-card {
    width: 100%;
}

/* ── GLASS CARD ── */
.glass-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ── VIDEO PLAYER ── */
.video-player {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    border: 1px solid var(--border3);
    aspect-ratio: 17/ 9;
}

@media(max-width:991px) {
    .video-player {
        aspect-ratio: 16/9;
    }
}

.video-player img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.video-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-circle-lg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(to right, var(--cynema-red), #b0000f);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(255, 0, 21, 0.4);
    transition: transform 0.2s;
    cursor: pointer;
}

.play-circle-lg:hover {
    transform: scale(1.1);
}

@media(min-width:992px) {
    .play-circle-lg {
        width: 75px;
        height: 75px;
    }
}

.play-circle-lg i {
    font-size: 24px;
    color: #fff;
    margin-left: 4px;
}

@media(min-width:992px) {
    .play-circle-lg i {
        font-size: 30px;
    }
}

.video-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.progress-bar-wrap {
    height: 4px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 99px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 33%;
    background: var(--cynema-red);
}

/* Genre Slider Card Constraints */
.genre-card {
  flex: 0 0 auto;
  width: 225px; /* Set card width matching the reference ratio */
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}

.genre-card:hover {
  transform: scale(1.03);
}

.genre-card-img {
  width: 100%;
  aspect-ratio: 18 / 9; /* Creates the wide landscape box shape */
  position: relative;
  overflow: hidden;
  background-color: #0f111a;
}

.genre-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) contrast(110%); /* Blends photo style with color block */
}

/* Base Tint Overlay Template */
.genre-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end; /* Pushes text label to the bottom */
  padding: 16px 20px;
}

/* Bold Bottom Text Label */
.genre-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* =======================================================
   EXPLICIT SELECTION VIA NTH-CHILD (1 to 10)
   ======================================================= */

/* Card 1: Romance (Deep Red Tint) */
.genre-card:nth-child(1) .genre-card-overlay {
  background: linear-gradient(to right, rgba(214, 48, 49, 0.85) 30%, rgba(214, 48, 49, 0.4) 100%);
}

/* Card 2: Drama (Teal / Cyan Slate Tint) */
.genre-card:nth-child(2) .genre-card-overlay {
  background: linear-gradient(to right, rgba(44, 120, 115, 0.85) 30%, rgba(44, 120, 115, 0.4) 100%);
}

/* Card 3: Family (Olive Muted Gold Tint) */
.genre-card:nth-child(3) .genre-card-overlay {
  background: linear-gradient(to right, rgba(130, 115, 50, 0.85) 30%, rgba(130, 115, 50, 0.4) 100%);
}

/* Card 4: Reality (Ocean Blue Tint) */
.genre-card:nth-child(4) .genre-card-overlay {
  background: linear-gradient(to right, rgba(30, 100, 130, 0.85) 30%, rgba(30, 100, 130, 0.4) 100%);
}

/* Card 5: Comedy (Dark Blue Green Tint) */
.genre-card:nth-child(5) .genre-card-overlay {
  background: linear-gradient(to right, rgba(16, 75, 90, 0.85) 30%, rgba(16, 75, 90, 0.4) 100%);
}

/* Card 6: Action (Fiery Orange Tint) */
.genre-card:nth-child(6) .genre-card-overlay {
  background: linear-gradient(to right, rgba(225, 112, 85, 0.85) 30%, rgba(225, 112, 85, 0.4) 100%);
}

/* Card 7: Horror (Deep Violet / Purple Tint) */
.genre-card:nth-child(7) .genre-card-overlay {
  background: linear-gradient(to right, rgba(108, 92, 231, 0.85) 30%, rgba(108, 92, 231, 0.4) 100%);
}

/* Card 8: Sci-Fi (Neon Cyan Electric Tint) */
.genre-card:nth-child(8) .genre-card-overlay {
  background: linear-gradient(to right, rgba(0, 206, 201, 0.85) 30%, rgba(0, 206, 201, 0.4) 100%);
}

/* Card 9: Thriller (Deep Crimson Charcoal Tint) */
.genre-card:nth-child(9) .genre-card-overlay {
  background: linear-gradient(to right, rgba(45, 52, 54, 0.9) 30%, rgba(214, 48, 49, 0.3) 100%);
}

/* Card 10: Documentary (Rich Emerald Green Tint) */
.genre-card:nth-child(10) .genre-card-overlay {
  background: linear-gradient(to right, rgba(46, 204, 113, 0.85) 30%, rgba(46, 204, 113, 0.4) 100%);
}

/* Container adjustments to match reference */
.actor-profile-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Typography styles for profile labels */
.meta-details strong {
    color: #ffffff;
    font-weight: 600;
    margin-right: 8px;
}

.bio-section h5 {
    color: #ffffff;
    font-weight: 600;
    margin-top: 15px;
}
.actor-profile-card .actor-image-wrap {
  position: relative;
  z-index: 3;
  margin-right: 10px;
}
.actor-profile-card .actor-image-wrap img {
  width: 180px;
  max-width: 180px;
  height: auto;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: block;
  object-fit: cover;
  margin: 0 auto;
}
.actor-info-wrap h3{
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 15px;
}
.meta-details p span{
	font-size:15px;
	font-weight: 500;
}
.meta-details .bio-section p{
	font-size:15px;
	font-weight: 500;
}

/* Responsive adjustment for mobile view */
@media (max-width: 767px) {
    .actor-image-wrap {
        text-align: center;
    }
    .actor-image-wrap img {
        max-width: 200px !important;
    }
	.actor-profile-card .actor-image-wrap{
		margin-right: 0px;
	}
	.btn-watch-now {
		height: 40px;
		padding: 0 15px;
		font-size: 13px;
		letter-spacing: 0;
		gap: 8px;
	}
	.hero-grad {
		background: linear-gradient(to top, var(--cynema-bg) 0%, rgba(0, 0, 0, 0.2) 80%, transparent 100%);
	}
	.hero-badge{
		font-size:11px;
	}
}

/* ── SEARCH MODAL ── */
.search-modal {
    position: fixed;
    inset: 0;
    background: rgba(18, 19, 26, 0.7);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
    z-index: 500;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.search-modal.show {
    display: flex;
    animation: fadeIn 0.25s ease;
}

.search-modal p {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 16px
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.search-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding: 10px 0;
    font-size: clamp(18px, 2.2vw, 26px);
    font-weight: 700;
    color: #fff;
    outline: none;
    transition: border-color 0.2s;
    font-family: 'Montserrat', sans-serif;
}

.search-input:focus {
    border-bottom-color: var(--cynema-red);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* =======================================================
   OFFCANVAS HIGH-FIDELITY PILL SEARCH BAR
   ======================================================= */

/* Search Container Positioning Template */
.search-container {
  width: 100%;
}

/* Perfect Pill Input Design Matching image_65b29f.png */
.sidebar-search {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 42px;
  border-radius: 70px;
  padding-left: 45px !important;                           /* Leaves room for search icon on left */
  padding-right: 20px !important;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}

/* Placeholder Styling */
.sidebar-search::placeholder {
  color: rgba(255, 255, 255, 0.45) !important;
  font-weight: 400;
}

/* Hover effect matching interactive elements */
.sidebar-search:hover {
  background-color: rgba(255, 255, 255, 0.10) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

/* Absolute Positioning for the Inner Glass Icon */
.search-container .search-icon {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  pointer-events: none; /* Passes click actions straight through to input container trigger */
  z-index: 5;
}



/* ── FOOTER ── */
.ctv-footer {
    background: #050608;
    border-top: 1px solid var(--cynema-border);
    position: relative;
}

.footer-top-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--cynema-red), transparent);
    opacity: 0.8;
}

.footer-col-label {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cynema-red);
    margin-bottom: 28px;
    opacity: 0.9;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s;
    margin-bottom: 14px;
}

.footer-link:hover {
    color: #fff;
}

.footer-link .link-bar {
    display: inline-block;
    height: 1px;
    width: 0;
    background: var(--cynema-red);
    transition: width 0.2s;
}

.footer-link:hover .link-bar {
    width: 10px;
}

.footer-soc-btn {
    width: 48px;
    height: 48px;
    border-radius: 14px;
	font-size:18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.2s;
    margin-right: 8px;
}

.footer-soc-btn:hover {
    background: var(--cynema-red);
    border-color: var(--cynema-red);
    color: #fff;
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 2px solid transparent;
    border-radius: 14px;
    padding: 14px 16px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s;
    margin-bottom: 10px;
}

.app-badge:hover {
    background: rgba(255, 255, 255, 0.07);
    border-left-color: var(--cynema-red);
    color: #fff;
}

.app-badge:hover i, .app-badge:hover span{
	color: var(--cynema-red);
}

.footer-copy {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.footer-craft {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
}

.footer-craft a {
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.2s;
    font-weight: 700;
}

.footer-craft a:hover {
    color: var(--cynema-red);
}

/* ── MOVIE DETAIL ── */
.detail-grid {
    display: grid;
    gap: 40px;
}

@media(min-width:992px) {
    .detail-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.meta-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
}

.meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    display: none;
}

@media(min-width:768px) {
    .meta-dot {
        display: block;
    }
}

.imdb-badge {
    display: inline-flex;
    align-items: center;
    background: #f5c518;
    color: #000;
    padding: 2px 8px;
    border-radius: 5px;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: -0.5px;
}

.btn-action {
    height: 40px;
    padding: 0 18px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s;
}

.btn-action-white {
    background: #fff;
    color: #000;
    border: none;
}

.btn-action-white:hover {
    background: var(--cynema-red);
    color: #fff;
}

.btn-action-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-action-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* ── MOVIE GRID PAGE ── */
.movies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media(max-width:639px) {
    .btn-subscribe {
        font-size: 13px;
		font-weight: 600;
		padding:8px 12px;
        justify-content: center;
    }
	
    .btn-subscribe i {
        font-size: 14px;
    }

    .view-all-link {
        font-size: 0;
    }

    .view-all-link i {
        font-size: 20px;
    }

    .view-all-link:hover i {
        color: var(--cynema-red);
    }
	.search-modal button.icon-circle{
		top: 15px !important;
		right: 15px !important;
	}
}

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

@media(min-width:768px) {
    .movies-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media(max-width:1199px) {
	.ctv-search-item, .ctv-login-btn{
		display:none !important;
	}
}	
	
@media(min-width:1200px) {
    .movies-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.movies-grid .movie-card {
    width: 100%;
}

.movies-grid .movie-card-img {
    padding-top: 150%;
}

.tvshows-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media(min-width:576px) {
    .tvshows-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ── SELECT ── */
.ctv-select {
    appearance: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    padding: 10px 38px 10px 20px;
    font-size: 12px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.7);
    outline: none;
    transition: all 0.2s;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.ctv-select:focus {
    border-color: var(--cynema-red);
    color: #fff;
}

.ctv-select option {
    background: var(--cynema-bg);
}

.select-wrap {
    position: relative;
    display: inline-block;
}

.select-wrap::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.25);
    position: absolute;
    right: 16px;
    top: 50%;
	opacity:0;
    transform: translateY(-50%);
    pointer-events: none;
}

/* ── EPISODE CARD ── */
.ep-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    width: 280px;
    flex-shrink: 0;
}

@media(min-width:768px) {
    .ep-card {
        width: 380px;
    }
}

@media(min-width:992px) {
    .ep-card {
        width: 440px;
    }
}

.ep-card-img {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
}

.ep-card-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.ep-card:hover .ep-card-img img {
    transform: scale(1.08);
}

.ep-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 12px;
}

.ep-card:hover .ep-card-overlay {
    opacity: 1;
}

.ep-card-info {
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(10px);
    transition: transform 0.4s;
}

.ep-card:hover .ep-card-info {
    transform: translateY(0);
}

/* Page header */
.page-header {
    padding-top: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 40px;
}
.page-breadcrumb-header{
	position:relative;
	z-index:99;
}
.page-header .eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cynema-red);
    margin-bottom: 8px;
}

.page-header h1 {
    font-size: clamp(32px, 3.5vw, 50px);
    font-weight: 800;
    letter-spacing: 0px;
}

@media (min-width: 768px) {
    .p-md-5 {
        padding: 2rem !important;
    }
}

/* Custom Bootstrap Animation Utility */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* --- Layout & Grid --- */
.detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}


/* --- Typography --- */
.movie-title {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 700;
    color: var(--cynema-red);
    letter-spacing: -1px;
    margin-bottom: 16px;
	text-align:left;
}

.movie-description {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 28px;
}
/* Button Group Alignment Rules */
.custom-button-matrix {
  display: flex;
  gap: 10px;
  min-width: 280px; /* Ensures space allocated on desktop */
}
.movie-details-container .glass-card:hover{
	border:1px solid var(--border2);
}
/* Base Pill Button Layout Specs */
.btn-action {
  border-radius: 50px; /* Fully rounded capsule layout */
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  gap: 2px;
  white-space: nowrap; /* Prevents text from multi-lining inside a button */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-action-white {
  background-color: #ffffff;
  color: #000000;
}

.btn-action-ghost {
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.custom-button-group .btn-action-ghost {
  background-color: var(--cynema-red);
  color: #ffffff;
  padding:10px 13px;
  border: 1px solid var(--cynema-red);
}
@media (max-width: 767.98px) {
  .custom-button-group {
    display: flex;
    flex-wrap: wrap;       /* Allows buttons to wrap underneath */
    width: 100%;           /* Spans across full mobile width */
    gap: 8px;             /* Space between the buttons */
    justify-content: center;
  }

  /* Make the main action buttons take up exactly 50% width each */
  .custom-button-group .btn-action {
    flex: 1 1 calc(50% - 6px); /* 50% width minus half of the gap space */
    width: 100%;
  }
}

@media (min-width: 768px) {
  .custom-button-group {
    display: flex;
    flex-direction: row;  /* Keeps them horizontally linear on PC layouts */
    gap: 10px;
  }
}
/* --- Badges, Pills & Meta --- */
.age-badge {
    background: var(--cynema-red);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.genre-pill {
    padding: 5px 14px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

.imdb-badge {
    background: #f5c518;
    color: #000;
    font-weight: 800;
    padding: 1px 4px;
    border-radius: 3px;
    font-size: 12px;
}

/* --- Links & Navigation --- */
.breadcrumb-links {
    font-size: 14px;
    font-weight: 600;
}

.meta-link,
.genre-link {
    text-decoration: none;
	color: rgba(255, 255, 255, 0.6);
	transition: color 0.2s ease;
	font-size: 13px;
	font-weight: 600;
	background: rgba(255, 255, 255, 0.12);
	padding: 3px 8px;
	border-radius: 6px;
	border: 1px solid var(--border2);
}

.meta-link:hover,
.genre-link:hover,
.credit-value a:hover,
.credit-list a:hover {
	background: rgba(255, 255, 255, 0.25);	
    color: #fff;
}

.genre-link:hover {
    color: var(--cynema-red);
}

.separator {
    margin: 0 0.3rem;
    opacity: 0.4;
    color: #fff;
}

/* --- Lists & Icons --- */
.meta-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.meta-list i {
    color: rgba(255, 255, 255, 0.3);
}

.meta-list strong {
    color: #fff;
}

.meta-dot {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

/* --- Glass Card & Credits Section --- */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.credits-title,
.credits-header {
    font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .7);
	margin-bottom: 20px;
	letter-spacing: 1px;
}

.credit-item {
    padding: 0.6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.credit-item p b, .credit-item p strong{
	font-size:12px;
	font-weight: 600;
	color:rgba(255, 255, 255, 0.45);
	text-transform:uppercase;
	letter-spacing: 0.1em;
}
.credit-item p{
	font-size: 14px;
	font-weight: 500;
	margin: 0;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
}
.credit-item p a:hover{
	color:var(--cynema-red);
} 
.credit-item:first-child {
    border-top: none;
    padding-top: 0;
}
.credit-item:last-child{
	padding-bottom:0;
}
.credit-label {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0px;
}

.credit-value,
.credit-name a {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.credit-list {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.credit-list a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}



/* Scrolled nav */
.ctv-nav.scrolled {
    height: 70px !important;
	background: rgba(8, 10, 15, 0.5);
	backdrop-filter: blur(25px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Transitions for offcanvas */
.offcanvas {
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1) !important;
}



/* Container styling - Dark Mode */
.nice-select.ctv-select {
    font-family: "Inter", sans-serif;
    float: none;
    display: inline-flex;
    align-items: center;
    height: 45px;
    line-height: 43px;
    padding-left: 18px;
    padding-right: 45px;
    background-color: rgba(8, 10, 15, 0.6);
    /* Dark background */
    border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(20px) saturate(1.6);
	-webkit-backdrop-filter: blur(20px) saturate(1.6);	
    /* Subtle white border */
    border-radius: 30px;
    font-size: 14px;
    color: #e2e8f0;
    /* Light text */
    font-weight: 600;
    transition: all 0.2s ease-in-out;
    width: auto;
    min-width: 180px;
}

.nice-select.ctv-select:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background-color: #23272f;
}

.nice-select.ctv-select:active,
.nice-select.ctv-select.open,
.nice-select.ctv-select:focus {
    border-color: #ff0015;
    /* Blue accent */
    box-shadow: 0 0 0 3px rgba(255, 0, 21, 0.2);
}

.nice-select.ctv-select:after {
    border-bottom: 2px solid #94a3b8;
    border-right: 2px solid #94a3b8;
    height: 8px;
    width: 8px;
    margin-top: -6px;
    right: 20px;
}

.nice-select.ctv-select .list {
    background-color: #1a1d23;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    /* Heavier shadow for dark mode */
    margin-top: 5px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
}

.nice-select.ctv-select .option {
    line-height: 36px;
    min-height: 36px;
    padding-left: 15px;
    padding-right: 15px;
    font-weight: 600;
    color: #94a3b8;
}

.nice-select.ctv-select .option:hover,
.nice-select.ctv-select .option.focus,
.nice-select.ctv-select .option.selected.focus {
    background-color: rgba(255, 0, 21, 0.2);
    /* Lighter charcoal */
    color: #ff0015;
}

.nice-select.ctv-select .option.selected {
    font-weight: 700;
    color: #3b82f6;
    /* Highlight selected in blue */
    background-color: rgba(59, 130, 246, 0.05);
}

.nice-select.ctv-select .option.disabled {
    color: #4a5568;
    cursor: default;
    background-color: transparent;
    opacity: 0.5;
}


:root {
    --cr: #ff0015;
    --bg: #080a0f;
    --border: rgba(255, 255, 255, 0.08);
}


@media (min-width:992px) {
    .ctv-nav {
        height: 90px;
    }
}

.nav-link {
    color: rgba(255, 255, 255, .7) !important;
    font-weight: 600;
    font-size: 14px;
    transition: color .2s;
}

.nav-link:hover {
    color: #fff !important;
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.icon-circle:hover {
    background: rgba(255, 255, 255, .13);
}

/* PAGE HEADER */
.page-hdr {
    padding-top: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.page-hdr h1 {
    font-size: clamp(30px, 5vw, 60px);
    font-weight: 900;
    letter-spacing: -2px;
    margin: 0;
}

/* GLASS CARD */
.glass-card-premium {
    background: linear-gradient(145deg, rgba(255, 255, 255, .05) 0%, rgba(255, 255, 255, .01) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 2rem;
    padding: 2rem;
    transition: all .5s cubic-bezier(.4, 0, .2, 1);
}

.glass-card-premium:hover {
    border-color: var(--cr);
    background: linear-gradient(145deg, rgba(255, 255, 255, .08) 0%, rgba(255, 255, 255, .02) 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4), 0 0 20px rgba(255, 0, 21, .1);
}

/* FORM INPUTS */
.ctv-input {
    width: 100%;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 14px 22px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    outline: none;
    transition: border-color .2s, background .2s, box-shadow .2s;
}

.ctv-input:focus {
    border-color: rgba(220, 38, 38, .5);
    background: rgba(255, 255, 255, .05);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, .1);
    color: #fff;
}

.ctv-input::placeholder {
    color: rgba(255, 255, 255, .25);
}

textarea.ctv-input {
    resize: none;
}

.ctv-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, .3);
}

.ctv-label .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--cr);
    flex-shrink: 0;
}

/* CONTACT INFO ICON */
.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    flex-shrink: 0;
    background: rgba(220, 38, 38, .1);
    border: 1px solid rgba(220, 38, 38, .2);
    color: var(--cr);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}


/* Top 10 Ranking Styles */
.movie-card-ranking {
    position: relative;
    padding-left: 45px;
    /* Space for the large number */
    min-width: 260px;
    /* Slightly wider to accommodate ranking */
}

.ranking-number {
    position: absolute;
    left: 0px;
    bottom: -15px;
    font-size: 150px;
    font-weight: 900;
    line-height: 1;
    color: #000000;
    -webkit-text-stroke: 4px rgba(255, 255, 255, .4);
    z-index: 5;
    font-family: "Inter", sans-serif;
    transition: all 0.4s ease;
    user-select: none;
}

.movie-card-ranking .movie-card-info {
    transform: translateY(0%);
    display: block;
    height: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
}

.movie-card-ranking:hover .movie-card-info {
    transform: translateY(0%);
    display: block;
    height: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
}

.movie-card-ranking .play-btn-sm,
.tv-card-ranking .play-btn-sm {
    width: 60px;
    height: 60px;
}

.movie-card-ranking .play-btn-sm i,
.tv-card-ranking .play-btn-sm i {
    font-size: 24px;
}

.movie-card:hover .ranking-number,
.tv-card:hover .ranking-number {
    /*-webkit-text-stroke: 2px rgba(255, 255, 255, 0.15);*/
    -webkit-text-stroke: 4px var(--cynema-red);
}

.movie-card-img {
    position: relative;
    z-index: 1;
    /* Keep image above the number */
}

@media (max-width:767px) {
    .tv-card-ranking {
        padding-left: 35px;
    }

    .ranking-number {
        left: 10px;
        bottom: -8px;
        font-size: 100px;
    }

    .page-header h1 {
        font-size: clamp(26px, 3.5vw, 50px);
    }

    .section-title-lg {
        font-size: clamp(18px, 2vw, 24px);
    }

    .section-label {
        font-size: 11px;
        font-weight: 700;
    }

    .scroll-track {
        padding: 5px;
    }
}


/* ── TOP 10 TV SHOWS LAYOUT ── */
.tv-card-ranking {
    position: relative;
    padding-left: 50px;
    /* Space for the large number */
    min-width: 320px;
    /* Adjust based on your landscape aspect ratio */
    display: block;
    margin-bottom: 20px;
}

.tv-card-img {
    position: relative;
    z-index: 1;
    /* Sits on top of number */
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    /* Landscape for TV Shows */
}

.tv-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tv-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    /* Exact Vertical Center */
    justify-content: center;
    /* Exact Horizontal Center */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tv-card:hover .tv-card-overlay {
    opacity: 1;
}

/* ── TITLE AT BOTTOM ── */
.tv-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 10px;
    text-align: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    pointer-events: none;
    /* Allows clicks to pass through to the link */
}



:root {
    --cr: #ff0015;
    --bg: #080a0f;
    --border: rgba(255, 255, 255, 0.08);
}

@media (min-width:992px) {
    .ctv-nav {
        height: 80px;
    }
}

.nav-link {
    color: rgba(255, 255, 255, .7) !important;
    font-weight: 600;
    font-size: 14px;
    transition: color .2s;
}

.nav-link:hover {
    color: #fff !important;
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.icon-circle:hover {
    background: rgba(255, 255, 255, .13);
}


/* PAGE HEADER */
.page-hdr {
    padding-top: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    margin-bottom: 0;
}

.page-hdr h1 {
    font-size: clamp(30px, 5vw, 60px);
    font-weight: 900;
    letter-spacing: -2px;
    margin: 0;
}

/* GLASS CARD */
.glass-card-premium {
    background: linear-gradient(145deg, rgba(255, 255, 255, .05) 0%, rgba(255, 255, 255, .01) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 2rem;
    transition: all .5s cubic-bezier(.4, 0, .2, 1);
    padding: 2rem;
}

.glass-card-premium:hover {
    border-color: var(--cr);
    background: linear-gradient(145deg, rgba(255, 255, 255, .08) 0%, rgba(255, 255, 255, .02) 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4), 0 0 20px rgba(255, 0, 21, .1);
}

.glass-card-premium h2,
.glass-card-premium h2 {
    font-size: 26px;
    font-weight: 700;
}

.glass-card-premium p {
    color: rgba(255, 255, 255, .5);
    font-size: 14px;
    font-weight: 500
}

.glass-card-premium h4.contact-title {
    font-size: 18px;
    font-weight: 700
}

/* SIDEBAR USER CARD */
.profile-lb-item {
    color: rgba(255, 255, 255, .6);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    white-space: nowrap
}

.user-sidebar-card {
    background: linear-gradient(145deg, rgba(18, 20, 25, .5) 0%, rgba(18, 20, 25, .5) 100%);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
}

.user-sidebar-card:hover {
    border: 1px solid #ff0015;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4), 0 0 20px rgba(255, 0, 21, .1);
}

.user-sidebar-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.user-sidebar-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .2;
    filter: blur(2px);
}

.user-sidebar-bg-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13, 15, 20, .9) 0%, rgba(13, 15, 20, .8) 50%, rgba(13, 15, 20, 1) 100%);
}

.user-sidebar-inner {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
}

.user-avatar-ring {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(to top right, var(--cr), transparent);
    padding: 2px;
}

.user-avatar-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--bg);
    object-fit: cover;
    background: var(--bg);
    padding: 3px;
}

.user-online-dot {
    position: absolute;
    bottom: 6px;
    right: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #22c55e;
    border: 3px solid var(--bg);
    box-shadow: 0 0 8px rgba(34, 197, 94, .5);
    z-index: 3;
}

.membership-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(12px);
    padding: 4px 12px;
    border-radius: 50px;
}

.membership-badge .status-dot-anim {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cr)
}

.membership-badge p {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .4);
    margin: 0
}

/* SIDEBAR NAV */
.sidebar-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color .2s, background .2s;
}

.sidebar-nav-link i {
    width: 20px;
    height: 20px;
    text-align: center;
    align-content: center;
}

.sidebar-nav-link:hover,
.sidebar-nav-link.active {
    color: var(--cr);
    background: rgba(255, 0, 21, .12);
}

.sidebar-divider {
    height: 1px;
    background: rgba(255, 255, 255, .1);
    margin: 8px 16px;
}

/* FORM INPUTS */
.ctv-input {
    width: 100%;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 14px 20px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    outline: none;
    transition: border-color .2s, background .2s, box-shadow .2s;
}

.ctv-input:focus {
    border-color: rgba(220, 38, 38, .5);
    background: rgba(255, 255, 255, .05);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, .1);
    color: #fff;
}

.ctv-input::placeholder {
    color: rgba(255, 255, 255, .6);
}

.ctv-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, .3);
}

.ctv-label .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--cr);
    flex-shrink: 0;
}

/* BUTTONS */
.btn-red {
    background: var(--cr);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 14px 28px;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px -10px rgba(255, 0, 21, .5);
    transition: background .2s;
}

.btn-red:hover {
    background: #cc0011;
    color: #fff;
}

/* FILE UPLOAD */
.file-upload-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 6px 15px;
}

.file-name-label {
    flex-grow: 1;
    color: rgba(255, 255, 255, .6);
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.browse-btn {
    flex-shrink: 0;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
}

.browse-btn:hover {
    background: rgba(255, 255, 255, .18);
}

.avatar-preview {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--cr);
    box-shadow: 0 0 10px rgba(220, 38, 38, .3);
    object-fit: cover;
    flex-shrink: 0;
    cursor: pointer;
}





/* Glassmorphism Styles */
.glass-card-premium {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.5rem;
    transition: all 0.4s ease;
}

.glass-card-premium:hover {
    border-color: var(--cynema-red);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.content-card .about-logo {
    width: 90px;
    height: 90px;
    background: rgba(255, 0, 21, 0.08);
    border-radius: 24px;
    padding: 10px;
    border: 1px solid rgba(255, 0, 21, 0.2);
}

.content-card .about-logo img {
    width: 100%;
}

/* Typography & Helpers */
.fw-black {
    font-weight: 900 !important;
}

.text-glow-red {
    text-shadow: 0 0 15px rgba(255, 0, 21, 0.5);
}

.nav-link-custom {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.nav-link-custom:hover {
    color: #fff;
}

/* Status Dot Animation */
.status-dot {
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
}

/* Premium Sidebar & Content Cards */
.content-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s ease;
}

.content-card-xl {
    padding: 2rem;
}

/* Red Glow Accent */
.glow-accent {
    position: absolute;
    top: -96px;
    right: -96px;
    width: 256px;
    height: 256px;
    background: rgba(255, 0, 21, 0.08);
    filter: blur(100px);
    border-radius: 50%;
    pointer-events: none;
}

/* Stat Box Component */
.stat-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-box:hover {
    border-color: var(--cynema-red);
}

.fw-black {
    font-weight: 900 !important;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.tracking-tight {
    letter-spacing: -1px;
}



/* ── Design Tokens ─────────────────────────────────── */
:root {
    --cr: #ff0015;
    --cr-dark: #c0000e;
    --cr-glow: rgba(255, 0, 21, .35);
    --bg: #080a0f;
    --bg2: #0d0f14;
    --bg3: #050608;
    --border: rgba(255, 255, 255, .07);
    --border2: rgba(255, 255, 255, .12);
	--border3: rgba(255, 255, 255, .2);
    --surf: rgba(255, 255, 255, .04);
}

/* ── Base ───────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: #fff;
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--cr);
    border-radius: 4px;
}

/* ─────────────────────────────────────────────────────
   AMBIENT BACKGROUND ORBS  (landing page)
───────────────────────────────────────────────────── */
.bg-glow {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .25;
    animation: orbFloat 20s infinite alternate ease-in-out;
}

.orb-red {
    width: 500px;
    height: 500px;
    background: var(--cr);
    top: -10%;
    left: -5%;
}

.orb-indigo {
    width: 380px;
    height: 380px;
    background: #4f46e5;
    bottom: 10%;
    right: 0;
}

@keyframes orbFloat {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(80px, 40px);
    }
}


/* ─────────────────────────────────────────────────────
   PAGE HEADER  (shared across plan + payment pages)
───────────────────────────────────────────────────── */
.page-hdr {
    padding: 44px 0 22px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 44px;
}

.page-hdr h1 {
    font-size: clamp(28px, 5.5vw, 60px);
    font-weight: 900;
    letter-spacing: -1.5px;
    margin: 0;
}

/* ─────────────────────────────────────────────────────
   GLASS / PREMIUM CARD  (shared)
───────────────────────────────────────────────────── */
.glass-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, .05) 0%, rgba(255, 255, 255, .01) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border2);
    border-radius: 2rem;
    padding: 28px;
    transition: border-color .35s, box-shadow .35s;
}

.glass-card:hover {
    border-color: var(--cr);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4), 0 0 20px rgba(255, 0, 21, .08);
}

@media (max-width:767px) {

    .glass-card,
    .glass-card-premium,
    .user-sidebar-inner {
        padding: 20px;
    }
}

/* ─────────────────────────────────────────────────────
   LANDING PAGE
───────────────────────────────────────────────────── */
/* hero */
.landing-hero {
    min-height: 95vh;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .15) 40%, rgba(0, 0, 0, .75) 80%, #000 100%),
        url('https://cynematv.com/upload/House-of-Sharks-1920x1080.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.landing-hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--cr);
    opacity: .09;
    filter: blur(120px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.text-gradient {
    background: linear-gradient(to right, #fff, var(--cr), #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradShine 5s linear infinite;
}

@keyframes gradShine {
    to {
        background-position: 200% center;
    }
}

.hero-email-input {
    width: 100%;
    padding: 18px 22px;
    background: rgba(0, 0, 0, .4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color .2s;
}

.hero-email-input:focus {
    border-color: var(--cr);
}

.hero-email-input::placeholder {
    color: rgba(255, 255, 255, .45);
}

/* shimmer CTA */
.btn-shimmer {
    background: var(--cr);
    color: #fff;
    border: none;
    padding: 18px 32px;
    border-radius: 6px;
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 900;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 18px rgba(229, 9, 20, .3);
    transition: background .3s, transform .3s, box-shadow .3s;
    white-space: nowrap;
}

.btn-shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -80%;
    width: 45%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22), transparent);
    transform: rotate(25deg);
    animation: shimAnim 3.5s infinite;
}

.btn-shimmer:hover {
    background: var(--cr-dark);
    box-shadow: 0 0 30px rgba(229, 9, 20, .5);
}

@keyframes shimAnim {
    100% {
        left: 180%;
    }
}

/* ── Top 10 Slider ── */
.top10-track {
    display: flex;
    gap: 48px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 40px 10px;
    scrollbar-width: none;
}

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

@media (max-width:767px) {
    .top10-track {
        gap: 28px;
        padding: 32px 6px;
    }
}

.top10-card {
    position: relative;
    flex-shrink: 0;
    width: 140px;
    cursor: pointer;
    transition: transform .4s ease;
}

@media (min-width:768px) {
    .top10-card {
        width: 220px;
    }
}

.top10-card:hover {
    /*transform: scale(1.08) translateY(-10px);*/
}

.rank-num {
    font-family: 'Inter', sans-serif;
    position: absolute;
    left: -20px;
    bottom: -12px;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: #000;
    -webkit-text-stroke: 3px rgba(255, 255, 255, .4);
    z-index: 20;
    pointer-events: none;
    user-select: none;
    transition: all .4s;
    z-index: 999;
}

@media (min-width:768px) {
    .rank-num {
        font-size: 8rem;
        left: -26px;
        bottom: -16px;
        -webkit-text-stroke: 3px rgba(255, 255, 255, .5);
    }
}

.top10-card:hover .rank-num {
    -webkit-text-stroke: 3px var(--cr);
    filter: drop-shadow(0 0 10px rgba(229, 9, 20, .75));
    transform: scale(1);
}

.top10-card img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .55);
}

.play-overlay {
    position: absolute;
    inset: 0;
    z-index: 30;
    background: rgba(0, 0, 0, .42);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
}

.top10-card:hover .play-overlay {
    opacity: 1;
}

/* ── FAQ ── */
.faq-btn {
    width: 100%;
    background: #2d2d2d;
    color: #fff;
    border: none;
    padding: 20px 24px;
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background .2s;
    line-height: 1.4;
}

.faq-btn:hover {
    background: #414141;
}

.faq-icon {
    font-size: 2rem;
    font-style: normal;
    transition: transform .35s;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    background: #2d2d2d;
    padding: 0 24px;
    transition: max-height .35s ease, padding .25s;
}

.faq-item.open .faq-body {
    max-height: 300px;
    padding: 0 24px 24px;
}

.faq-body p {
    font-size: clamp(14px, 1.6vw, 18px);
    color: rgba(255, 255, 255, .7);
    line-height: 1.7;
	padding-top:15px;
    margin: 0;
    margin-bottom: 15px;
}

/* --- SHARE MODAL STYLES --- */
.share-modal .modal-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    color: white;
}

.share-modal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
}

.share-modal .btn-close {
    filter: invert(1);
    opacity: 0.5;
}

/* Social Icon Grid */
.share-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 20px 0;
}

.share-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.share-item:hover {
    transform: translateY(-5px);
}

.share-icon {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

/* Brand Colors on Hover */
.share-item:hover .share-icon.fb { background: #1877F2; box-shadow: 0 0 20px rgba(24, 119, 242, 0.4); }
.share-item:hover .share-icon.tw { background: #1DA1F2; box-shadow: 0 0 20px rgba(29, 161, 242, 0.4); }
.share-item:hover .share-icon.wa { background: #25D366; box-shadow: 0 0 20px rgba(37, 211, 102, 0.4); }
.share-item:hover .share-icon.tg { background: #0088CC; box-shadow: 0 0 20px rgba(0, 136, 204, 0.4); }

.share-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}
.modal-backdrop.show{
	opacity:0.8;
}
.modal-backdrop{
	backdrop-filter: blur(26px);
}

/* ─────────────────────────────────────────────────────
   SUBSCRIPTION PLAN PAGE
───────────────────────────────────────────────────── */
/* Left art card */
.art-glass-card {
    border-radius: 2rem;
    padding: 28px;
    background: linear-gradient(135deg, rgba(255, 0, 21, .18), transparent, rgba(255, 0, 21, .14));
    backdrop-filter: blur(26px);
    border: 1px solid rgba(255, 255, 255, .15);
    display: flex;
    flex-direction: column;
}

.art-glass-card h3 {
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 0, 21, .45)
}

.art-glass-card p {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, .8);
    line-height: 1.65;
    margin: 0
}

.art-perk-num,
.art-perk-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .7);
}

/* Plan cards carousel (Swiper) */
.plan_item_block h5 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 8px
}

.plan_item_block h3 {
    font-size: clamp(20px, 2.8vw, 28px);
    font-weight: 800;
    letter-spacing: 0px;
    margin: 0
}

.plan-carousel-wrap {
    position: relative;
}

.plan-card {
    border-radius: 2rem;
    padding: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent, rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    transition: all .4s cubic-bezier(.23, 1, .32, 1);
    cursor: pointer;
}

.plan-card:hover {
    border-color: var(--cr);
    /*transform: translateY(-6px);*/
    box-shadow: 0 20px 40px rgba(0, 0, 0, .45), 0 0 24px rgba(255, 0, 21, .12);
}

.plan-badge {
    display: inline-block;
    background: rgba(255, 0, 21, .1);
    color: var(--cr);
    border: 1px solid rgba(255, 0, 21, .3);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 25px;
    align-self: center;
}

.price-section {
    display: flex;
    align-items: baseline;
}

.currency {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--cynema-red);
    margin-right: 2px;
}

.plan-price {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
}

.plan-period {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    margin-left: 5px;
}

.plan-price .cur {
    font-size: 20px;
    font-weight: 700;
    vertical-align: top;
    margin-top: 10px;
    display: inline-block;
    color: var(--cr);
}

.plan-divider {
    width: 45px;
    height: 4px;
    background: var(--cr);
    border-radius: 4px;
    margin: 0 0 20px;
    box-shadow: 0 0 12px var(--cr);
}

.plan-feat-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    width: 100%;
}

.plan-feat-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .6);
}

.plan-feat-list li i {
    color: var(--cr);
    font-size: 12px;
    width: 14px;
    flex-shrink: 0;
}

.featured-tag {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 0, 21, .75);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 4px 16px;
    border-radius: 0 0 14px 14px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    z-index: 10;
    white-space: nowrap;
}

/* Swiper nav arrows */
.swiper-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .55);
    cursor: pointer;
    transition: all .2s;
}

.swiper-btn:hover {
    background: var(--cr);
    border-color: var(--cr);
    color: #fff;
}

/* CTA buttons shared */
.btn-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--cr);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    cursor: pointer;
    transition: all .25s;
    box-shadow: 0 8px 24px rgba(255, 0, 21, .3);
    font-family: 'Inter', sans-serif;
}

.btn-red:hover {
    background: var(--cr-dark);
    box-shadow: 0 12px 32px rgba(255, 0, 21, .45);
    color: #fff;
}

.btn-red:active {
    transform: scale(.97);
}

.btn-glass-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, .03);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 13px 26px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    cursor: pointer;
    transition: all .25s;
    font-family: 'Inter', sans-serif;
}

.btn-glass-outline:hover {
    background: var(--cr-dark);
    box-shadow: 0 12px 32px rgba(255, 0, 21, .45);
    color: #fff;
}

/* ─────────────────────────────────────────────────────
   PAYMENT METHOD PAGE
───────────────────────────────────────────────────── */
.pay-info-block {
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--border2);
    border-radius: 20px;
    padding: 22px;
    transition: background .2s;
}

.pay-info-block:hover {
    background: rgba(255, 255, 255, .08);
}

.pay-heading h2 {
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 0, 21, .5);
    margin: 0
}

.pay-info-block h5 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 10px
}

.pay-info-block h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px
}

.pay-info-block a.item-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--cr)
}

.pay-info-block h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .8);
    word-break: break-all
}

.pay-info-block span.pay-price {
    display: inline-block;
    background: #fff;
    color: #000;
    font-size: 14px;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 8px
}

/* form inputs */
.payment-item-block .ctv-input {
    width: 100%;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--border2);
    border-radius: 14px;
    padding: 14px 18px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all .2s;
}

.payment-item-block .ctv-input::placeholder {
    color: rgba(255, 255, 255, .22);
}

.payment-item-block .ctv-input:focus {
    border-color: rgba(239, 68, 68, .55);
    background: rgba(255, 255, 255, .07);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, .12);
}

.payment-item-block .ctv-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 10px;
}

.payment-item-block p {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .4);
    text-align: center;
    margin: 0
}

/* autofill badge */
.autofill-badge {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 0, 0, .4);
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 6px 12px;
    border-radius: 10px;
    backdrop-filter: blur(8px);
    cursor: pointer;
    transition: background .2s;
}

.autofill-badge:hover {
    background: rgba(52, 211, 153, .1);
}

.autofill-badge .auto-fill-item {
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase
}

.autofill-badge .auto-link {
    color: #4ade80;
    font-size: 11px;
    font-weight: 700;
    font-style: italic
}

/* ─────────────────────────────────────────────────────
   FOOTER  (shared)
───────────────────────────────────────────────────── */
.ctv-footer {
    background: var(--bg3);
    border-top: 1px solid var(--border);
    position: relative;
	overflow:hidden;
}
/* Base properties shared by both glowing orbs */
.ctv-footer::before,
.ctv-footer::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 100%;
  border-radius: 50%;
  z-index: 0; /* Placed behind the footer content */
  opacity: 0.26; /* Slightly lowered to prevent muddy contrast text */
  filter: blur(140px); /* Deep blend blur for seamless background integration */
  pointer-events: none; /* Prevents hidden orbs from blocking text selection or links */
  will-change: transform; /* Optimizes GPU rendering performance */
}

/* Left/Top Orb (Primary Brand Accent Color) */
.ctv-footer::before {
  background: var(--cr-alt, #164b5a);
  top: -15%;
  left: -10%;
  animation: orbFloatLeft 25s infinite alternate ease-in-out;
}

/* Right/Bottom Orb (Secondary Blend Color or Subtle Variant) */
.ctv-footer::after {
  background: var(--cr, #dc3545);
  bottom: -15%;
  right: -10%;
  animation: orbFloatRight 20s infinite alternate ease-in-out;
}

.footer-topline {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--cr), transparent);
    opacity: .8;
}

.fc-label {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .4em;
    color: var(--cr);
    opacity: .9;
    margin-bottom: 24px;
}

.fc-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 12px;
    transition: color .2s;
}

.fc-link:hover {
    color: #fff;
}

.fc-link .ln {
    display: inline-block;
    width: 0;
    height: 1px;
    background: var(--cr);
    transition: width .2s;
    flex-shrink: 0;
}

.fc-link:hover .ln {
    width: 10px;
}

.fc-soc {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all .2s;
}

.fc-soc:hover {
    background: var(--cr);
    border-color: var(--cr);
    color: #fff;
}

.fc-app {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .1);
    border-left: 2px solid transparent;
    border-radius: 14px;
    padding: 14px 16px;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 10px;
    transition: all .2s;
}

.fc-app:hover {
    background: rgba(255, 255, 255, .07);
    border-left-color: var(--cr);
    color: #fff;
}

.fc-copy {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .25);
}

.fc-craft {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4em;
    color: rgba(255, 255, 255, .18);
}

.fc-craft a {
    color: rgba(255, 255, 255, .35);
    font-weight: 900;
    transition: color .2s;
}

.fc-craft a:hover {
    color: var(--cr);
}

/* --- CINEMATIC HERO STYLES --- */
.landing-hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    background-color: #000;
    /* Add your movie grid image path here */
    /*background-image: linear-gradient(to bottom, rgba(8, 10, 15, 0.8), rgba(8, 10, 15, 0.95)), url('your-movie-grid-bg.jpg');
    background-size: cover;
    background-position: center;*/
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.6) 80%, #000 100%), url('https://cynematv.com/upload/House-of-Sharks-1920x1080.jpg');
    background-position-x: 0%, 0%;
    background-position-y: 0%, 0%;
    background-size: auto, auto;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.membership-text {
    font-size: clamp(16px, 1.5vw, 20px);
    max-width: 600px;
    line-height: 1.6;
    font-weight: 500;
}

/* Central Red Glow */
.landing-hero::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vh;
    background: radial-gradient(circle, rgba(255, 0, 21, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.hero-h1 {
    font-size: clamp(2rem, 4.7vw, 4rem);
    font-weight: 900;
    letter-spacing: 0px;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(to right, #fff, var(--cynema-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glass Input */
.hero-email-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 1.25rem 1.5rem;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.hero-email-input:focus {
    outline: none;
    border-color: var(--cynema-red);
    box-shadow: 0 0 20px rgba(255, 0, 21, 0.2);
}

.landing-header .navbar-brand img {
    height: 50px;
}

/* Shimmer Button */
.btn-shimmer {
    background-color: var(--cynema-red);
    color: #fff;
    padding: 1.2rem 1rem;
    font-size: 1.2rem;
    font-weight: 800;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(255, 0, 21, 0.3);
}

.btn-shimmer:hover {
    transform: scale(1.05);
    background-color: #e60012;
    box-shadow: 0 15px 40px rgba(255, 0, 21, 0.5);
}

.btn-shimmer i {
    transition: transform 0.3s ease;
}

.btn-shimmer:hover i {
    transform: translateX(6px);
}

/* --- LOGIN/AUTH PAGE STYLES --- */
.auth-page {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Cinematic Background Overlay */
.auth-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(8, 10, 15, 0.9) 30%, rgba(8, 10, 15, 0.4) 100%);
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.auth-glow-spot {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 21, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
    pointer-events: none;
}

/* Glass Card */
.auth-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
}

/* Premium Inputs */
.auth-input-group {
    margin-bottom: 1.5rem;
}

.auth-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.auth-input {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    color: white !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-input:focus {
    background: rgba(0, 0, 0, 0.5) !important;
    border-color: var(--cynema-red) !important;
    box-shadow: 0 0 20px rgba(255, 0, 21, 0.15) !important;
}

/* Action Button */
.btn-auth-primary {
    background: var(--cynema-red);
    color: white;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px;
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 0, 21, 0.2);
}

.btn-auth-primary:hover {
    background: #e60012;
    box-shadow: 0 15px 30px rgba(255, 0, 21, 0.4);
}

.auth-link-red {
    color: var(--cynema-red);
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s;
}

.auth-link-red:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--cynema-red);
}

@media(max-width:639px) {
    .auth-card {
        padding: 1.5rem;
    }

    .btn-auth-primary {
        font-size: 15px;
        letter-spacing: 0;
    }
	.custom-button-group .btn-action{
		font-size:10px;
		padding: 10px 5px;
		height: 36px;
		gap: 5px;
	}
	.custom-button-group .btn-action i{
		font-size:16px;
		margin-right:0 !important;
		margin-left: 0px;
	}
	.custom-button-group .btn-action-ghost i{
		font-size:15px;
		margin-right:2px !important;
		margin-left: 0 !important;
	}
	.custom-button-group .btn-action {
		flex: 1 1 calc(30% - 5px);
	}
	.ep-card-title h6{
		font-size:13px;
		font-weight:600 !important;
		margin-bottom: 0 !important;
	}
	.movie-header-block .d-flex.align-items-md-center.justify-content-between{
		display:block !important;
		text-align: left;
	}
	.play-circle-lg {
		width: 50px;
		height: 50px;
	}	
	.meta-list {
		font-weight: 600;
	}
	.season-tabs{
		gap:6px;
	}
	.credits-title, .credits-header{
		font-size:15px;
	}
	.credit-value, .credit-name a {
		font-size: 13px;
		font-weight: 500;
	}	
}

@media (max-width: 576px) {
  /* 1. Force the container to hold elements in a single row */
  .d-flex.flex-wrap.gap-2:has(.select-wrap) {
    flex-wrap: nowrap !important; /* Prevents dropping items to a new line */
    width: 100%;
  }

  /* 2. Scale each dropdown element evenly */
  .select-wrap {
    flex: 1 1 50%; /* Distributes 50/50 space across the single row layout */
    min-width: 0;   /* Prevents child elements from expanding/overflowing container widths */
  }

  /* 3. Make the generated Nice Select UI take up full parent width */
  .nice-select.ctv-select {
    width: 100% !important;
	min-width: inherit !important;
    float: none !important; /* Resets default plugin floats */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 12px;
    padding-right: 12px;
  }

  /* 4. Fix arrow icon clipping issues on narrow screens */
  .nice-select.ctv-select::after {
    right: 12px !important;
  }
  
  /* 5. Prevent long option text from breaking out */
  .nice-select .current {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    padding-right: 15px;
  }
  .ctv-footer::before, .ctv-footer::after{
	  opacity: 0.15;
  }
}

/* Season Tabs Wrap Utilities */
.season-tabs-container {
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}
.season-tabs-container::-webkit-scrollbar {
  display: none;
}

.season-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  border: none !important;
}

/* Season Tab Item Customization */
.season-tabs .nav-link {
  background-color: rgba(8, 10, 15, 0.6);
  color: #a0a5b5;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  padding: 6px 15px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  white-space: nowrap;
  transition: all 0.2s ease-in-out;
}

.season-tabs .nav-link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Active Highlight (Red Pill Border matching reference look) */
.season-tabs .nav-link.active {
  color: #ff0022 !important;
  /*background-color: #111319 !important;*/
  background: rgba(255, 0, 34, 0.15);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-color: rgba(255, 0, 34, 0.3) !important;
  box-shadow: 0 0 12px rgba(255, 0, 34, 0.2);
}

/* =======================================================
   EPISODE GRID CARD DESIGN STYLING
   ======================================================= */
.ep-card {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #0b0c10;
  border:1px solid var(--border3);
  transition: transform 0.2s ease;
}
.ep-card:hover {
  transform: translateY(-4px);
}
.ep-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Promo Badge Wrapper Settings */
.promo-icon-badge {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--cr, #dc3545);
  color: var(--cr, #dc3545);
  border-radius: 8px;
  font-size: 12px;
}

.promo-label {
  font-size: 14px;
  letter-spacing: -0.2px;
}

/* Coupon Input Row Box Matching image_483d03.png */
.promo-input-group {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 6px 8px;
  transition: border-color 0.2s ease;
}

.promo-input-group:focus-within {
  border-color: rgba(255, 255, 255, 0.4);
}

/* Clean Input Field Reset */
.promo-input {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: #ffffff !important;
  font-size: 14px;
  padding: 6px 8px;
  font-weight: 500;
}

.promo-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 360px) {
  .promo-input-group {
    flex-direction: column;
    gap: 8px;
  }
}