/* 1. Theme default css */

/* NEW FONT IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Nunito:wght@500;600;700&family=Orbitron:wght@400;500;600;700;800&display=swap');

/* BODY */
body {
    font-family: 'Inter', sans-serif; /* updated */
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    color: #cfd3df; /* softer premium gray */
    background: #0f1117; /* premium-dark */
}

/* IMAGES */
.img {
    max-width: 100%;
    transition: all 0.3s ease-out 0s;
}

/* Utilities */
.f-left { float: left; }
.f-right { float: right; }
.fix { overflow: hidden; }

/* LINKS + BUTTON TRANSITIONS */
a,
.button {
    transition: all 0.3s ease-out 0s;
}

/* FOCUS REMOVAL */
a:focus,
.btn:focus,
.button:focus {
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

/* LINK HOVERS */
a:hover,
.portfolio-cat a:hover,
.footer-menu li a:hover {
    color: #7b5cff; /* new accent (purple glow) */
    text-decoration: none;
}

/* GENERAL LINK COLOR */
a,
button {
    color: #7b5cff; /* neon purple accent */
    outline: none;
}

/* FORMS */
button:focus,
input:focus,
textarea:focus {
    outline: 0;
}

/* TRANSFORMS */
.uppercase { text-transform: uppercase; }
.capitalize { text-transform: capitalize; }

/* HEADINGS */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif; /* updated */
    color: #ffffff;
    margin-top: 0px;
    font-style: normal;
    font-weight: 600;
    text-transform: none;
}

h1 { font-size: 40px; font-weight: 600; }
h2 { font-size: 35px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

/* LIST RESET */
ul { margin: 0; padding: 0; }
li { list-style: none; }

/* PARAGRAPH */
p {
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    color: #cfd3df; /* softer premium neutral */
    margin-bottom: 15px;
}

/* HR */
hr {
    border-bottom: 1px solid #2b2d35;
    border-top: 0;
    margin: 30px 0;
    padding: 0;
}

/* LABEL */
label {
    color: #9da2b1;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
}

/* TEXT SELECTION */
::selection {
    background: #7b5cff;
    color: #fff;
}
::-moz-selection {
    background: #7b5cff;
    color: #fff;
}

/* PLACEHOLDER */
*::placeholder {
    color: #6c7080;
    font-size: 14px;
    opacity: 1;
}

/*OVERLAY*/
.theme-overlay {
    position: relative;
}
.theme-overlay::before {
    background: linear-gradient(135deg, #3a0ca3, #7209b7, #4361ee);
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.35;
    position: absolute;
    top: 0;
    width: 100%;
}

/* SEPARATOR */
.separator {
    border-top: 1px solid #1e1f26;
}

/* 2. Header */
.custom-container {
	max-width: 1420px;
}

/* Transparent Header */
.transparent-header {
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
    z-index: 9;
    height: auto;
    padding: 20px 0;
    background: rgba(15,17,23,0.25); /* slight premium glass */
    backdrop-filter: blur(10px);
}

/* NAV BAR WRAPPER */
.menu-nav {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.navbar-wrap {
	display: flex;
	flex-grow: 1;
}

/* MENU LIST */
.navbar-wrap > ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
}

.navbar-wrap > ul > li {
	display: block;
	position: relative;
}

/* MENU ITEM */
.navbar-wrap > ul > li > a {
    font-family: 'Orbitron', sans-serif; /* updated */
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #e7e9f3; /* soft premium white */
    padding: 38px 23px;
    display: block;
    line-height: 1;
    position: relative;
    z-index: 1;
    transition: 0.3s ease;
}

/* MENU HOVER (new glow) */
.navbar-wrap > ul > li:hover > a {
	color: #9f8bff; /* neon purple */
	text-shadow: 0 0 8px #6e5aff;
}

/* SUBMENU CONTAINER */
.navbar-wrap > ul > li .submenu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 220px;
    background: #151821;
    border: 1px solid #292b36;
    padding: 10px 0;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 0.3s ease;
}

/* SUBMENU ACTIVE */
.navbar-wrap > ul > li:hover .submenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* SUBMENU ITEM */
.navbar-wrap > ul > li .submenu li a {
    padding: 10px 22px;
    display: block;
    font-size: 13px;
    color: #d1d1d8;
    transition: 0.3s ease;
    position: relative;
}

/* SUBMENU HOVER */
.navbar-wrap > ul > li .submenu li a:hover {
	background: linear-gradient(90deg,#3a0ca3,#7209b7,#4361ee);
	color: #fff;
}

/* DROP-DOWN BUTTON (unused desktop) */
.main-menu .navigation li.menu-item-has-children .dropdown-btn {
	display: none;
}

/* HEADER ACTION ICONS */
.header-action > ul {
	display: flex;
	align-items: center;
	margin-left: 10px;
}

.header-action > ul > li {
	position: relative;
	margin-left: 30px;
}

.header-action > ul > li:first-child {
	margin-left: 0;
}

.header-action > ul > li.header-search > a {
	padding-right: 10px;
}

/* HEADER ICON STYLE */
.header-action > ul > li > a {
	color: #ffffff;
	font-size: 16px;
	transition: 0.3s ease;
}

.header-action > ul > li > a:hover {
	color: #9f8bff; /* hover glow */
	text-shadow: 0 0 7px #6e5aff;
}

/* HEADER LANGUAGE DROPDOWN */
.header-lang form select {
    background: #1a1d25;
    border: 1px solid #343644;
    color: #e6e6e6;
    padding: 6px 20px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
}

.header-lang form select option {
	color: #1a1a1e;
}

/* LANGUAGE SEPARATOR */
.header-action ul li.header-lang {
    padding-left: 15px;
    margin-left: 15px;
}

.header-action ul li.header-lang::before {
    content: "|";
    position: absolute;
    left: -1px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    opacity: .12;
}

/* HEADER BUTTON */
.header-action .header-btn .btn {
    font-family: 'Nunito', sans-serif; /* updated */
    color: #fff;
    font-size: 14px;
    padding: 10px 34px;
    border-radius: 40px;
    border: 2px solid #8e71ff;
    background: transparent;
    transition: 0.3s ease;
}

.header-action .header-btn .btn:hover {
	background: linear-gradient(135deg,#3a0ca3,#7209b7,#4361ee);
	color: #fff;
	border-color: transparent;
	box-shadow: 0 0 12px #7b5cff;
}

/* STICKY HEADER */
.sticky-menu {
	left: 0;
	padding: 0 0;
	margin: auto;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 99;
	background: rgba(20,22,30,0.92);
	backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
	animation: fadeInDown 0.6s ease;
	box-shadow: 0 10px 25px rgba(0,0,0,0.4);
	border-radius: 0;
}

/* TOP HEADER BAR */
.header-top-wrap {
    background: #12151e;
}

/* SUB-HEADER TEXT */
.header-top-subs > p {
    margin-bottom: 0;
    font-size: 12px;
    color: #ced1dc;
}

/* HEADER TOP FLEX */
.header-top-link,
.header-top-link .quick-link,
.header-top-link .header-social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.header-top-link {
    justify-content: flex-end;
}

/* TOP LINKS */
.header-top-link .quick-link li {
    position: relative;
}

.header-top-link .quick-link li + li {
    padding-left: 13px;
    margin-left: 11px;
}

/* TOP LINK SEPARATOR */
.header-top-link .quick-link li + li::before {
    content: "|";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #85889a;
    font-size: 12px;
}

.header-top-link .quick-link li a {
    font-size: 12px;
    font-weight: 500;
    color: #c3c3c3;
    display: block;
    transition: 0.3s ease;
}

.header-top-link .quick-link li a:hover {
	color: #9f8bff;
	text-shadow: 0 0 6px #6e5aff;
}

/* TOP SOCIAL ICONS */
.header-top-link .header-social {
    margin-left: 10px;
}

.header-top-link .header-social li {
    flex: 0 0 32px;
    width: 32px;
}

.header-top-link .header-social li a {
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 12px;
    color: #c3c3c3;
    position: relative;
    transition: 0.3s ease;
}

.header-top-link .header-social li a:hover {
    background: rgba(55, 55, 75, 0.45);
    color: #9f8bff;
}

/* 3. Search modal */
#search-modal {
    background-color: rgba(15, 17, 23, 0.88); /* smoother premium dark */
    backdrop-filter: blur(12px);
}

#search-modal .modal-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    outline: 0;
    margin: 0;
    min-width: 700px;
}

#search-modal .modal-dialog .modal-content {
    background: transparent;
    box-shadow: none;
    border: none;
}

/* FORM CONTAINER */
#search-modal .modal-dialog .modal-content form {
    width: 100%;
    position: relative;
}

/* SEARCH INPUT */
#search-modal .modal-dialog .modal-content form input {
    width: 100%;
    font-family: 'Inter', sans-serif; /* clean tech font */
    font-size: 34px;
    border: none;
    border-bottom: 3px solid rgba(255, 255, 255, 0.85);
    background: transparent;
    color: #ffffff;
    padding: 0 85px 12px 40px;
    transition: 0.3s ease;
}

/* INPUT PLACEHOLDER */
#search-modal .modal-dialog .modal-content form input::placeholder {
    font-size: 34px;
    color: rgba(255, 255, 255, 0.45);
}

/* INPUT FOCUS EFFECT */
#search-modal .modal-dialog .modal-content form input:focus {
    border-bottom-color: #8d7cff; /* neon purple bottom line */
    box-shadow: 0 0 12px #6e5aff;
}

/* SEARCH BUTTON */
#search-modal .modal-dialog .modal-content form button {
    position: absolute;
    right: 40px;
    margin-bottom: 0;
    font-size: 30px;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    transition: 0.3s ease;
}

/* BUTTON HOVER */
#search-modal .modal-dialog .modal-content form button:hover {
    color: #9f8bff; /* neon purple */
    text-shadow: 0 0 10px #7b5cff;
}

/* 4. Mobile Menu */
.mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 28px;
    cursor: pointer;
    line-height: 1.2;
    color: #ffffff;
    margin-top: 12px;
    transition: 0.3s ease;
}

.mobile-nav-toggler:hover {
    color: #9f8bff;
    text-shadow: 0 0 8px #7b5cff;
}

/* MENU BACKDROP */
.menu-backdrop {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 998;
    width: 100%;
    height: 100%;
    background: rgba(10, 12, 17, 0.85); /* premium dark layer */
    backdrop-filter: blur(6px);
    display: none;
}

/* MOBILE MENU CONTAINER */
.mobile-menu {
    position: fixed;
    left: -300px;
    z-index: 999;
    top: 0;
    width: 300px;
    height: 100%;
    overflow-y: auto;
    background: #12141b; /* softened dark */
    border-right: 1px solid #262833;
    transition: left 0.4s ease;
    padding: 20px 30px 30px;
    opacity: 0;
    visibility: hidden;
}

/* MOBILE MENU ACTIVE STATE */
.mobile-menu-visible .mobile-menu {
    left: 0px;
    transition: 0.4s ease;
    opacity: 1;
    visibility: visible;
}

.mobile-menu-visible .menu-backdrop {
    display: block;
}

/* CLOSE BUTTON */
.mobile-menu .close-btn {
    position: relative;
    text-align: right;
    margin-bottom: 25px;
}

.mobile-menu .close-btn i {
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
    transition: 0.3s ease;
}

.mobile-menu .close-btn i:hover {
    color: #9f8bff;
    text-shadow: 0 0 6px #6e5aff;
}

/* NAV INNER BOX */
.mobile-menu .menu-box {
    position: relative;
    padding-top: 10px;
}

/* MOBILE LOGO */
.mobile-menu .nav-logo {
    text-align: left;
    margin-bottom: 20px;
}

.mobile-menu .nav-logo img {
    max-width: 110px;
    filter: drop-shadow(0 0 8px rgba(0,0,0,0.4));
}

/* MENU LIST */
.mobile-menu .menu-box .navigation {
    position: relative;
    display: block;
    width: 100%;
}

.mobile-menu .menu-box .navigation li {
    position: relative;
    border-bottom: 1px solid #242731;
}

.mobile-menu .menu-box .navigation li:last-child {
    border-bottom: none;
}

.mobile-menu .menu-box .navigation li > a {
    font-family: 'Orbitron', sans-serif; /* updated */
    font-size: 15px;
    font-weight: 600;
    color: #f0f1f7;
    padding: 14px 0;
    display: block;
    text-transform: uppercase;
    transition: 0.3s ease;
}

/* MENU HOVER */
.mobile-menu .menu-box .navigation li > a:hover {
    color: #a38cff;
    text-shadow: 0 0 7px #7b5cff;
}

/* MOBILE DROPDOWN BUTTON */
.mobile-menu .navigation li .dropdown-btn {
    position: absolute;
    right: 0;
    top: 8px;
    height: 40px;
    width: 30px;
    font-size: 16px;
    color: #ffffff;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.mobile-menu .navigation li .dropdown-btn:hover {
    color: #a38cff;
}

/* DROPDOWN MENU */
.mobile-menu .navigation li > ul {
    display: none;
    padding-left: 12px;
    background: #161822;
    border-left: 2px solid #7b5cff;
}

.mobile-menu .navigation li > ul > li > a {
    color: #cfd3df;
    padding: 10px 0;
    display: block;
    font-size: 13px;
    transition: 0.3s ease;
}

.mobile-menu .navigation li > ul > li > a:hover {
    color: #9f8bff;
}

/* SOCIAL ICONS */
.mobile-menu .social-links {
    margin-top: 35px;
}

.mobile-menu .social-links ul {
    display: flex;
    gap: 12px;
}

.mobile-menu .social-links ul li a {
    color: #dcdce4;
    font-size: 16px;
    transition: 0.3s ease;
}

.mobile-menu .social-links ul li a:hover {
    color: #a38cff;
    text-shadow: 0 0 6px #6e5aff;
}


/* 5. Breadcrumb */
.breadcrumb-area {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    /* premium dark + gradient overlay */
    background-color: #0f1117;
}

.breadcrumb-area::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(15,17,23,0.75),
        rgba(15,17,23,0.90)
    );
    z-index: -1;
}

/* BREADCRUMB TITLE */
.breadcrumb-content h2 {
    font-family: 'Orbitron', sans-serif; /* updated */
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 14px rgba(130, 98, 255, 0.45);
}

/* BREADCRUMB MENU */
.breadcrumb-content .breadcrumb {
    margin-bottom: 0;
    background: transparent;
    padding: 0;
}

.breadcrumb-content .breadcrumb li {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #d6d6e3;
    margin-right: 6px;
}

.breadcrumb-content .breadcrumb li a {
    color: #a38cff;
    transition: 0.3s ease;
}

.breadcrumb-content .breadcrumb li a:hover {
    color: #d0c3ff;
    text-shadow: 0 0 8px #7b5cff;
}

/* DIVIDER BETWEEN ITEMS */
.breadcrumb-content .breadcrumb li + li::before {
    content: "/";
    margin-right: 6px;
    color: #999bb2;
    opacity: 0.7;
}

/* ACTIVE PAGE NAME */
.breadcrumb-content .breadcrumb .active {
    color: #ffffff;
    font-weight: 600;
}


/* 6. Banner / Hero Area */
.banner-bg {
    position: relative;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    /* premium dark overlay underneath */
    background-color: #0d0f15;
}

/* gradient overlay on top of banner image */
.banner-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(12, 14, 20, 0.60) 0%,
        rgba(12, 14, 20, 0.88) 100%
    );
    z-index: 0;
}

.banner-area {
    position: relative;
    padding: 190px 0 150px;
    z-index: 1;
}

/* SUBTITLE */
.banner-content .sub-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    color: #9f8bff; /* neon purple accent */
    margin-bottom: 14px;
    letter-spacing: 1px;
}

/* TITLE */
.banner-content .title {
    font-family: 'Orbitron', sans-serif; /* updated */
    font-size: 62px;
    line-height: 1.17;
    color: #ffffff;
    margin-bottom: 25px;
    text-transform: none;
    text-shadow: 0 0 14px rgba(130, 98, 255, 0.40);
}

/* TITLE SPAN (highlight) */
.banner-content .title span {
    background: linear-gradient(135deg,#3a0ca3,#7209b7,#4361ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

/* META INFO */
.banner-meta ul {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.banner-meta ul li {
    font-family: 'Inter', sans-serif;
    color: #d4d4df;
    font-size: 14px;
    font-weight: 500;
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.banner-meta ul li i {
    margin-right: 6px;
    color: #9f8bff; /* accent */
}

/* META QUALITY BADGES */
.banner-meta ul li.quality span {
    background: #1a1c23;
    border: 1px solid #373a47;
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 6px;
    font-weight: 600;
    color: #cfd3df;
    font-size: 12px;
}

/* CATEGORY LINKS */
.banner-meta ul li.category a {
    color: #a38cff;
    margin-right: 4px;
}

.banner-meta ul li.category a:hover {
    color: #cbbbff;
    text-shadow: 0 0 8px #7b5cff;
}

/* WATCH BUTTON */
.banner-btn {
    font-family: 'Nunito', sans-serif; /* updated */
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 40px;
    border: 2px solid #8e71ff;
    letter-spacing: 0.4px;
    transition: 0.35s ease;
    background: rgba(71, 46, 148, 0.20);
    backdrop-filter: blur(6px);
}

.banner-btn i {
    margin-right: 10px;
    font-size: 15px;
}

/* BUTTON HOVER */
.banner-btn:hover {
    background: linear-gradient(135deg,#3a0ca3,#7209b7,#4361ee);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 0 16px rgba(123,92,255,0.75);
}


/* 7. UCM Area (Upcoming Movies Section) */

.ucm-bg {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #0d0f15; /* premium dark */
}

.ucm-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(12,14,20,0.55) 0%,
        rgba(12,14,20,0.90) 100%
    );
    z-index: 0;
}

/* SHAPE ELEMENT */
.ucm-bg-shape {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 350px;
    opacity: 0.08;
    z-index: 0;
}

/* SECTION TITLE */
.section-title .sub-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #9f8bff; /* neon purple */
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.section-title .title {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 0;
    text-shadow: 0 0 12px rgba(120, 92, 255, 0.35);
}

/* TABS NAVIGATION */
.ucm-nav-wrap .nav-tabs {
    border: none;
}

.ucm-nav-wrap .nav-tabs .nav-item {
    margin-bottom: 0;
}

.ucm-nav-wrap .nav-tabs .nav-link {
    background: rgba(30,32,41,0.55);
    color: #cfd3df;
    margin-right: 12px;
    padding: 10px 26px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    border-radius: 30px;
    border: 1px solid transparent;
    transition: 0.35s ease;
}

/* NAV HOVER */
.ucm-nav-wrap .nav-tabs .nav-link:hover {
    background: rgba(135,112,255,0.25);
    color: #ffffff;
    border-color: #7b5cff;
    text-shadow: 0 0 6px #7b5cff;
}

/* NAV ACTIVE */
.ucm-nav-wrap .nav-tabs .nav-link.active {
    background: linear-gradient(135deg,#3a0ca3,#7209b7,#4361ee);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 14px rgba(123,92,255,0.65);
}

/* MOVIE CARD WRAPPER */
.movie-item {
    background: rgba(18,18,25,0.65);
    border: 1px solid #2d2f38;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.35s ease;
    backdrop-filter: blur(6px);
    position: relative;
}

/* CARD HOVER */
.movie-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.55),
                0 0 14px rgba(123,92,255,0.35);
    border-color: rgba(130, 98, 255, 0.35);
}

/* MOVIE POSTER */
.movie-item .movie-poster img {
    width: 100%;
    display: block;
    transition: 0.4s ease;
    border-bottom: 1px solid #2c2d33;
}

/* POSTER ZOOM */
.movie-item:hover .movie-poster img {
    transform: scale(1.07);
}

/* MOVIE CONTENT */
.movie-content {
    padding: 20px 22px 18px;
    background: rgba(18,18,25,0.40);
}

/* TITLE & YEAR ROW */
.movie-content .top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

/* MOVIE TITLE */
.movie-content .top .title {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0;
    transition: 0.3s ease;
}

.movie-content .top .title a {
    color: inherit;
}

.movie-content .top .title a:hover {
    color: #cbbbff;
    text-shadow: 0 0 8px #7b5cff;
}

/* YEAR */
.movie-content .top .date {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #9ba0b1;
}

/* BOTTOM META */
.movie-content .bottom ul {
    display: flex;
    justify-content: space-between;
    margin-top: 0;
    align-items: center;
}

/* QUALITY TAGS */
.movie-content .bottom ul li .quality {
    background: #1f2129;
    border: 1px solid #3a3d48;
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    color: #d7d9e2;
    font-family: 'Inter';
    font-size: 12px;
    font-weight: 600;
}

/* DURATION & RATING */
.movie-content .bottom ul li span {
    font-family: 'Inter', sans-serif;
    color: #cfd3df;
    font-size: 13px;
    font-weight: 500;
}

/* ICONS */
.movie-content .bottom ul li i {
    color: #a38cff;
    margin-right: 4px;
}

/* RATING */
.movie-content .bottom ul li .rating {
    color: #ffd86a;
    font-weight: 600;
}


/* 8. Services Area */
.services-bg {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    /* premium dark layer */
    background-color: #0d0f15;
}

.services-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(12,14,20,0.75) 0%,
        rgba(12,14,20,0.92) 100%
    );
    z-index: 0;
}

/* WRAPPER */
.services-area {
    position: relative;
    padding: 120px 0;
    z-index: 1;
}

/* LEFT SIDE IMAGE WRAP */
.services-img-wrap {
    position: relative;
    z-index: 1;
}

.services-img-wrap img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.55);
}

/* DOWNLOAD BUTTON */
.services-img-wrap .download-btn {
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg,#3a0ca3,#7209b7,#4361ee);
    padding: 10px 22px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    color: #fff;
    transition: 0.3s ease;
    box-shadow: 0 0 12px rgba(123,92,255,0.45);
}

.services-img-wrap .download-btn img {
    margin-left: 8px;
    width: 16px;
}

/* DOWNLOAD HOVER */
.services-img-wrap .download-btn:hover {
    box-shadow: 0 0 18px rgba(130, 98, 255, 0.75);
    transform: translateY(-2px);
}

/* RIGHT CONTENT WRAP */
.services-content-wrap {
    padding-left: 30px;
}

.services-content-wrap .section-title .sub-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #9f8bff;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.services-content-wrap .section-title .title {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    text-shadow: 0 0 10px rgba(130,98,255,0.35);
}

/* PARAGRAPH */
.services-content-wrap p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 28px;
    color: #cfd3df;
    margin-bottom: 22px;
}

/* SERVICES LIST */
.services-list ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.services-list ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 26px;
}

/* ICON WRAPPER */
.services-list ul li .icon {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    background: rgba(135,112,255,0.12);
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(135,112,255,0.25);
    transition: 0.3s ease;
}

.services-list ul li .icon i {
    font-size: 22px;
    color: #a38cff;
    transition: 0.3s ease;
}

/* ICON HOVER */
.services-list ul li:hover .icon {
    background: linear-gradient(135deg,#3a0ca3,#7209b7,#4361ee);
    border-color: transparent;
    box-shadow: 0 0 14px rgba(123,92,255,0.55);
}

.services-list ul li:hover .icon i {
    color: #fff;
}

/* TEXT CONTENT */
.services-list ul li .content h5 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 6px;
}

.services-list ul li .content p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #d0d2dc;
    margin-bottom: 0;
}


/* 9. Top Movies / Trending Area */

.top-movie-area {
    padding: 120px 0;
    background: #0d0f15; /* premium dark */
    position: relative;
    z-index: 1;
}

.top-movie-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(12,14,20,0.65) 0%,
        rgba(12,14,20,0.90) 100%
    );
    z-index: 0;
}

/* TITLE WRAP */
.top-movie-area .section-title .sub-title {
    font-family: 'Inter', sans-serif;
    color: #9f8bff;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: .5px;
}

.top-movie-area .section-title .title {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 40px;
    text-shadow: 0 0 12px rgba(120, 92, 255, 0.35);
}

/* MOVIE CARD WRAPPER */
.top-movie-item {
    background: rgba(18,18,25,0.65);
    border: 1px solid #2d2f38;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    transition: 0.35s ease;
    backdrop-filter: blur(6px);
}

/* CARD HOVER */
.top-movie-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.55),
                0 0 14px rgba(123,92,255,0.35);
    border-color: rgba(130, 98, 255, 0.45);
}

/* POSTER */
.top-movie-item .top-movie-poster img {
    width: 100%;
    display: block;
    transition: 0.35s;
}

/* ZOOM ON HOVER */
.top-movie-item:hover .top-movie-poster img {
    transform: scale(1.07);
}

/* CONTENT WRAP */
.top-movie-item .top-movie-content {
    padding: 20px 22px 18px;
    background: rgba(18,18,25,0.40);
}

/* TITLE & META */
.top-movie-item .top-movie-content .title {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.3;
    transition: 0.3s ease;
}

.top-movie-item .top-movie-content .title:hover {
    color: #cbbbff;
    text-shadow: 0 0 8px #7b5cff;
}

/* GENRE TAGS */
.top-movie-item .top-movie-content .tags {
    margin-bottom: 16px;
}

.top-movie-item .top-movie-content .tags a {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #bdbfd1;
    background: #1f2129;
    border: 1px solid #343644;
    padding: 3px 8px;
    border-radius: 3px;
    margin-right: 5px;
    margin-bottom: 5px;
    transition: .3s ease;
}

.top-movie-item .top-movie-content .tags a:hover {
    background: linear-gradient(135deg,#3a0ca3,#7209b7,#4361ee);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 0 8px rgba(120,92,255,0.45);
}

/* RATING & DURATION */
.top-movie-item .top-movie-content .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-movie-item .top-movie-content .meta span {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #d1d4df;
    display: inline-flex;
    align-items: center;
}

.top-movie-item .top-movie-content .meta span i {
    margin-right: 5px;
    color: #a38cff;
}

/* RATING COLOR */
.top-movie-item .top-movie-content .meta .rating {
    color: #ffd86a;
    font-weight: 600;
}

/* WATCH BUTTON */
.top-movie-item .watch-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    background: rgba(20,22,30,0.75);
    padding: 8px 14px;
    border-radius: 30px;
    border: 1px solid #343446;
    font-family: 'Nunito', sans-serif;
    color: #e5e5e5;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    transition: 0.3s;
    box-shadow: 0 0 6px rgba(0,0,0,0.3);
}

.top-movie-item .watch-btn i {
    margin-right: 6px;
    font-size: 14px;
}

/* WATCH BUTTON HOVER */
.top-movie-item .watch-btn:hover {
    background: linear-gradient(135deg,#3a0ca3,#7209b7,#4361ee);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 12px rgba(123,92,255,0.55);
}


/* 10. Gallery Area */
.gallery-area {
    padding: 120px 0;
    background: #0d0f15; /* premium dark */
    position: relative;
    z-index: 1;
}

.gallery-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(12,14,20,0.65) 0%,
        rgba(12,14,20,0.92) 100%
    );
    z-index: 0;
}

/* GRID WRAPPER */
.gallery-active {
    margin: 0 -15px;
}

.gallery-item {
    padding: 15px;
    position: relative;
    z-index: 1;
}

/* IMAGE */
.gallery-item img {
    width: 100%;
    border-radius: 12px;
    display: block;
    transition: 0.35s ease;
    box-shadow: 0 10px 24px rgba(0,0,0,0.45);
}

/* IMAGE ZOOM ON HOVER */
.gallery-item:hover img {
    transform: scale(1.07);
    box-shadow: 0 12px 30px rgba(0,0,0,0.55),
                0 0 14px rgba(123,92,255,0.35);
}

/* OVERLAY */
.gallery-item .gallery-overlay {
    position: absolute;
    inset: 15px;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        rgba(58,12,163,0.45),
        rgba(114,9,183,0.45),
        rgba(67,97,238,0.45)
    );
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: 0.35s ease;
}

/* OVERLAY ACTIVE */
.gallery-item:hover .gallery-overlay {
    opacity: 1;
    visibility: visible;
}

/* TEXT & METADATA */
.gallery-text {
    width: 100%;
}

.gallery-text h5 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(120,92,255,0.45);
}

.gallery-text span {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    color: #d1d4df;
    font-size: 13px;
    font-weight: 500;
}

/* ICON BUTTON */
.gallery-item .gallery-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    height: 42px;
    width: 42px;
    border-radius: 50%;
    background: rgba(20,22,30,0.75);
    border: 1px solid #343446;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e3e6f3;
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
    transition: 0.35s ease;
}

/* ICON ON HOVER */
.gallery-item:hover .gallery-icon {
    opacity: 1;
    visibility: visible;
    transform: translateY(-4px);
    box-shadow: 0 0 10px rgba(123,92,255,0.45);
}

.gallery-item .gallery-icon:hover {
    background: linear-gradient(135deg,#3a0ca3,#7209b7,#4361ee);
    color: #fff;
    border-color: transparent;
}

/* POPUP (magnific) */
.mfp-title {
    font-family: 'Inter', sans-serif;
    color: #fff;
    font-size: 14px;
}


/* 11. Pagination */
.pagination-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.pagination-wrap ul {
    display: flex;
    align-items: center;
    padding-left: 0;
    margin: 0;
}

/* PAGINATION ITEM */
.pagination-wrap ul li {
    margin: 0 6px;
}

.pagination-wrap ul li a {
    font-family: 'Nunito', sans-serif; /* updated */
    font-size: 14px;
    font-weight: 700;
    color: #cfd3df; /* premium soft */
    background: rgba(20,22,30,0.55);
    border: 1px solid #2f313a;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.35s ease;
    box-shadow: 0 0 8px rgba(0,0,0,0.35);
}

/* HOVER */
.pagination-wrap ul li a:hover {
    color: #ffffff;
    background: linear-gradient(135deg,#3a0ca3,#7209b7,#4361ee);
    border-color: transparent;
    box-shadow: 0 0 14px rgba(123,92,255,0.45);
    transform: translateY(-2px);
}

/* ACTIVE PAGE */
.pagination-wrap ul li a.active {
    background: linear-gradient(135deg,#3a0ca3,#7209b7,#4361ee);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 0 14px rgba(123,92,255,0.75);
}

/* PREV/NEXT ARROWS */
.pagination-wrap ul li a i {
    font-size: 14px;
    color: inherit;
    transition: 0.35s ease;
}


/* 12. Live Show Area */
.live-bg {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    /* premium dark base */
    background-color: #0d0f15;
}

.live-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(12,14,20,0.65) 0%,
        rgba(12,14,20,0.92) 100%
    );
    z-index: 0;
}

.live-area {
    position: relative;
    padding: 120px 0;
    z-index: 1;
}

/* LEFT CONTENT */
.live-movie-content {
    position: relative;
    z-index: 2;
}

.live-movie-content p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 28px;
    color: #cfd3df;
    margin-bottom: 24px;
}

/* SECTION TITLE */
.live-area .section-title .sub-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #9f8bff;
    font-weight: 600;
    margin-bottom: 10px;
}

.live-area .section-title .title {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    color: #fff;
    margin-bottom: 25px;
    text-shadow: 0 0 12px rgba(120,92,255,0.35);
}

/* FACT WRAP */
.live-fact-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
}

/* 4K BOX */
.live-fact-wrap .resolution {
    width: 95px;
    height: 75px;
    border-radius: 14px;
    background: rgba(135,112,255,0.15);
    border: 1px solid rgba(135,112,255,0.32);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 22px;
    transition: 0.35s ease;
}

.live-fact-wrap .resolution h2 {
    font-family: 'Orbitron', sans-serif;
    color: #ffffff;
    font-size: 28px;
    text-shadow: 0 0 8px rgba(120,92,255,0.45);
}

/* HOVER GLOW */
.live-fact-wrap .resolution:hover {
    background: linear-gradient(135deg,#3a0ca3,#7209b7,#4361ee);
    border-color: transparent;
    box-shadow: 0 0 16px rgba(123,92,255,0.55);
    transform: translateY(-2px);
}

.live-fact-wrap .active-customer h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

.live-fact-wrap .active-customer p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #cfd3df;
    margin-bottom: 0;
}

/* WATCH NOW BUTTON */
.live-movie-content .popup-video.btn {
    font-family: 'Nunito', sans-serif;
    padding: 14px 40px;
    border-radius: 40px;
    border: 2px solid #8e71ff;
    background: rgba(71,46,148,0.22);
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    transition: 0.35s ease;
    backdrop-filter: blur(6px);
    display: inline-flex;
    align-items: center;
}

.live-movie-content .popup-video.btn i {
    margin-right: 10px;
    font-size: 16px;
}

/* BUTTON HOVER */
.live-movie-content .popup-video.btn:hover {
    background: linear-gradient(135deg,#3a0ca3,#7209b7,#4361ee);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 0 16px rgba(123,92,255,0.75);
    transform: translateY(-2px);
}

/* RIGHT IMAGE */
.live-movie-img img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.55);
    transform: translateZ(0);
    transition: 0.4s ease;
}

/* IMAGE FLOAT + GLOW HOVER */
.live-movie-img:hover img {
    transform: scale(1.04);
    box-shadow: 0 16px 42px rgba(0,0,0,0.65),
                0 0 18px rgba(123,92,255,0.45);
}



/* 13. Movie Details Area */

.movie-details-area {
    background: #0d0f15; /* premium dark */
    position: relative;
    padding: 120px 0;
    z-index: 1;
}

.movie-details-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(12,14,20,0.65) 0%,
        rgba(12,14,20,0.92) 100%
    );
    z-index: 0;
}

/* DETAILS WRAPPER */
.movie-details-wrap {
    position: relative;
    z-index: 1;
}

/* LEFT POSTER */
.movie-details-img img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.55);
    transition: 0.4s ease;
}

/* POSTER HOVER */
.movie-details-img:hover img {
    transform: scale(1.04);
    box-shadow: 0 16px 34px rgba(0,0,0,0.65),
                0 0 18px rgba(123,92,255,0.45);
}

/* CONTENT WRAP */
.movie-details-content {
    margin-left: 30px;
}

.movie-details-content .title {
    font-family: 'Orbitron', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 0 12px rgba(123,92,255,0.35);
}

.movie-details-content .sub-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #9f8bff;
    margin-bottom: 14px;
}

/* META LIST */
.movie-details-meta {
    margin-bottom: 22px;
}

.movie-details-meta ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.movie-details-meta ul li {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #d1d4df;
    display: flex;
    align-items: center;
}

.movie-details-meta ul li i {
    color: #a38cff;
    margin-right: 6px;
}

/* GENRES */
.movie-details-meta ul li.genres a {
    font-family: 'Inter', sans-serif;
    color: #a38cff;
    transition: 0.3s ease;
    margin-right: 4px;
}

.movie-details-meta ul li.genres a:hover {
    color: #d0c3ff;
    text-shadow: 0 0 8px #7b5cff;
}

/* DESCRIPTION */
.movie-details-content p {
    font-family: 'Inter', sans-serif;
    color: #cfd3df;
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 26px;
}

/* RATING BLOCK */
.movie-details-rating {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}

.movie-details-rating span {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #ffd86a;
    margin-left: 6px;
    font-weight: 600;
}

/* BUTTON ROW */
.movie-details-btn {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* WATCH BUTTON */
.movie-details-btn .watch-btn {
    font-family: 'Nunito', sans-serif;
    display: inline-flex;
    align-items: center;
    padding: 12px 38px;
    background: rgba(71,46,148,0.22);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 40px;
    border: 2px solid #8e71ff;
    transition: 0.35s ease;
    letter-spacing: 0.4px;
    backdrop-filter: blur(6px);
}

.movie-details-btn .watch-btn i {
    margin-right: 10px;
    font-size: 15px;
}

/* WATCH HOVER */
.movie-details-btn .watch-btn:hover {
    background: linear-gradient(135deg,#3a0ca3,#7209b7,#4361ee);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(123,92,255,0.75);
}

/* ADD TO FAVORITE */
.movie-details-btn .favorite-btn {
    font-family: 'Nunito', sans-serif;
    padding: 12px 28px;
    border-radius: 40px;
    border: 1px solid #343446;
    background: rgba(20,22,30,0.65);
    color: #d8d9e5;
    font-size: 14px;
    font-weight: 700;
    transition: 0.35s ease;
    display: inline-flex;
    align-items: center;
}

.movie-details-btn .favorite-btn i {
    margin-right: 8px;
    color: #a38cff;
}

/* FAVORITE HOVER */
.movie-details-btn .favorite-btn:hover {
    background: rgba(135,112,255,0.22);
    border-color: #7b5cff;
    color: #fff;
    box-shadow: 0 0 12px rgba(123,92,255,0.55);
}

/* TECHNICAL LIST */
.movie-details-list {
    margin-top: 35px;
}

.movie-details-list ul {
    padding-left: 0;
    margin: 0;
}

.movie-details-list ul li {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #cfd3df;
    margin-bottom: 10px;
    display: flex;
}

.movie-details-list ul li span {
    width: 120px;
    font-weight: 600;
    color: #ffffff;
}

/* CAST SECTION */
.movie-details-cast {
    margin-top: 40px;
}

.movie-details-cast h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: #fff;
    margin-bottom: 16px;
}

.movie-details-cast ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.movie-details-cast ul li {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #dcdce6;
}

/* CAST IMAGES */
.movie-details-cast ul li img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    margin-bottom: 10px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.45);
}



/* 14. Pricing Area */
.pricing-area {
    padding: 120px 0;
    background: #0d0f15; /* premium dark */
    position: relative;
    z-index: 1;
}

.pricing-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(12,14,20,0.65) 0%,
        rgba(12,14,20,0.92) 100%
    );
    z-index: 0;
}

/* SECTION TITLE */
.pricing-area .section-title .sub-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #9f8bff;
    margin-bottom: 10px;
}

.pricing-area .section-title .title {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 40px;
    text-shadow: 0 0 12px rgba(120,92,255,0.35);
}

/* PRICING CARD */
.pricing-item {
    background: rgba(18,18,25,0.65);
    border: 1px solid #2d2f38;
    border-radius: 14px;
    padding: 40px 35px;
    text-align: center;
    transition: 0.35s ease;
    position: relative;
    backdrop-filter: blur(6px);
}

/* CARD HOVER */
.pricing-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.55),
                0 0 14px rgba(123,92,255,0.35);
    border-color: rgba(130, 98, 255, 0.45);
}

/* PLAN NAME */
.pricing-item .pricing-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* PRICE */
.pricing-item .pricing-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 0 8px rgba(123,92,255,0.45);
}

.pricing-item .pricing-amount span {
    font-size: 16px;
    margin-left: 4px;
    color: #cfd3df;
    font-family: 'Inter', sans-serif;
}

/* FEATURE LIST */
.pricing-item ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 24px;
}

.pricing-item ul li {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #d1d4df;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-item ul li i {
    color: #a38cff;
    margin-right: 8px;
    font-size: 14px;
}

/* BUTTON */
.pricing-item .pricing-btn {
    font-family: 'Nunito', sans-serif;
    padding: 12px 38px;
    border-radius: 40px;
    background: rgba(71,46,148,0.22);
    border: 2px solid #8e71ff;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    transition: 0.35s ease;
    display: inline-flex;
    align-items: center;
    letter-spacing: .5px;
}

/* BUTTON HOVER */
.pricing-item .pricing-btn:hover {
    background: linear-gradient(135deg,#3a0ca3,#7209b7,#4361ee);
    border-color: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 0 16px rgba(123,92,255,0.75);
}

/* POPULAR BADGE */
.pricing-item.popular {
    border-color: #8e71ff;
    box-shadow: 0 0 16px rgba(123,92,255,0.45);
}

.pricing-item.popular::after {
    content: "POPULAR";
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg,#3a0ca3,#7209b7,#4361ee);
    padding: 6px 14px;
    border-radius: 8px;
    color: #ffffff;
    font-size: 12px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    letter-spacing: .5px;
    box-shadow: 0 0 10px rgba(123,92,255,0.55);
}


/* 15. TV Series Area */

.tv-series-area {
    padding: 120px 0;
    background: #0d0f15; /* premium dark */
    position: relative;
    z-index: 1;
}

.tv-series-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(12,14,20,0.65) 0%,
        rgba(12,14,20,0.92) 100%
    );
    z-index: 0;
}

/* SECTION TITLE */
.tv-series-area .section-title .sub-title {
    font-family: 'Inter', sans-serif;
    color: #9f8bff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.tv-series-area .section-title .title {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 40px;
    text-shadow: 0 0 12px rgba(120,92,255,0.35);
}

/* ITEM CONTAINER */
.tv-series-item {
    background: rgba(18,18,25,0.65);
    border: 1px solid #2d2f38;
    border-radius: 14px;
    overflow: hidden;
    transition: 0.35s ease;
    position: relative;
    backdrop-filter: blur(6px);
}

/* HOVER */
.tv-series-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.55),
                0 0 14px rgba(123,92,255,0.35);
    border-color: rgba(130,98,255,0.45);
}

/* POSTER */
.tv-series-item .tv-series-poster img {
    width: 100%;
    display: block;
    transition: 0.35s ease;
}

/* ZOOM ON HOVER */
.tv-series-item:hover .tv-series-poster img {
    transform: scale(1.07);
}

/* CONTENT */
.tv-series-item .tv-series-content {
    padding: 20px 22px 18px;
    background: rgba(18,18,25,0.40);
}

/* TITLE */
.tv-series-item .tv-series-content .title {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 8px;
    transition: 0.3s ease;
}

.tv-series-item .tv-series-content .title:hover {
    color: #cbbbff;
    text-shadow: 0 0 8px #7b5cff;
}

/* EPISODE + TIME */
.tv-series-item .tv-series-content .meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

.tv-series-item .tv-series-content .meta span {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #cfd3df;
    display: inline-flex;
    align-items: center;
}

.tv-series-item .tv-series-content .meta span i {
    margin-right: 5px;
    color: #a38cff;
}

/* TAGS */
.tv-series-item .tv-series-content .tags {
    margin-bottom: 14px;
}

.tv-series-item .tv-series-content .tags a {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #bdbfd1;
    background: #1f2129;
    border: 1px solid #343644;
    padding: 3px 8px;
    border-radius: 3px;
    margin-right: 5px;
    margin-bottom: 5px;
    transition: .3s ease;
}

.tv-series-item .tv-series-content .tags a:hover {
    background: linear-gradient(135deg,#3a0ca3,#7209b7,#4361ee);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 10px rgba(120,92,255,0.45);
}

/* RATING */
.tv-series-item .tv-series-content .rating {
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #ffd86a;
    font-weight: 600;
}

.tv-series-item .tv-series-content .rating i {
    margin-right: 5px;
    color: #ffd86a;
}

/* WATCH BUTTON */
.tv-series-item .watch-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    background: rgba(20,22,30,0.75);
    padding: 8px 14px;
    border-radius: 30px;
    border: 1px solid #343446;
    font-family: 'Nunito', sans-serif;
    color: #e5e5e5;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    transition: 0.3s;
}

.tv-series-item .watch-btn i {
    margin-right: 6px;
    font-size: 14px;
}

/* WATCH HOVER */
.tv-series-item .watch-btn:hover {
    background: linear-gradient(135deg,#3a0ca3,#7209b7,#4361ee);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 0 12px rgba(123,92,255,0.55);
    transform: translateY(-2px);
}



/* 16. Blog Area */

.blog-area {
    padding: 120px 0;
    background: #0d0f15; /* premium dark */
    position: relative;
    z-index: 1;
}

.blog-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(12,14,20,0.65) 0%,
        rgba(12,14,20,0.92) 100%
    );
    z-index: 0;
}

/* SECTION TITLE */
.blog-area .section-title .sub-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #9f8bff;
    margin-bottom: 10px;
}

.blog-area .section-title .title {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 40px;
    text-shadow: 0 0 12px rgba(120,92,255,0.35);
}

/* BLOG CARD */
.blog-post-item {
    background: rgba(18,18,25,0.65);
    border: 1px solid #2d2f38;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    transition: .35s ease;
    backdrop-filter: blur(6px);
}

/* HOVER */
.blog-post-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.55),
                0 0 14px rgba(123,92,255,0.35);
    border-color: rgba(130, 98, 255, 0.45);
}

/* IMAGE */
.blog-thumb img {
    width: 100%;
    border-bottom: 1px solid #2c2d33;
    display: block;
    transition: 0.35s ease;
}

/* ZOOM ON HOVER */
.blog-post-item:hover .blog-thumb img {
    transform: scale(1.07);
}

/* CONTENT */
.blog-post-content {
    padding: 22px 25px 26px;
}

/* CATEGORY LABEL */
.blog-post-content .tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    background: #1f2129;
    border: 1px solid #343644;
    color: #bdbfd1;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 12px;
    transition: 0.3s ease;
}

.blog-post-content .tag:hover {
    background: linear-gradient(135deg,#3a0ca3,#7209b7,#4361ee);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 0 12px rgba(120,92,255,0.45);
}

/* TITLE */
.blog-post-content .title {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 14px;
    transition: 0.35s ease;
}

.blog-post-content .title:hover {
    color: #d5caff;
    text-shadow: 0 0 10px #7b5cff;
}

/* META */
.blog-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 14px;
}

.blog-meta li {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #cfd3df;
    display: flex;
    align-items: center;
}

.blog-meta li i {
    font-size: 14px;
    color: #a38cff;
    margin-right: 6px;
}

/* TEXT */
.blog-post-content p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 26px;
    color: #d0d2dc;
    margin-bottom: 22px;
}

/* READ MORE BUTTON */
.blog-post-content .read-more {
    font-family: 'Nunito', sans-serif;
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    color: #a38cff;
    transition: 0.3s ease;
}

.blog-post-content .read-more i {
    margin-left: 8px;
    font-size: 14px;
}

/* READ MORE HOVER */
.blog-post-content .read-more:hover {
    color: #ffffff;
    text-shadow: 0 0 10px #7b5cff;
}


/* 17. Newsletter / Subscription Area */

.newsletter-area {
    padding: 120px 0;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    /* premium dark layer */
    background-color: #0d0f15;
}

.newsletter-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(12,14,20,0.65) 0%,
        rgba(12,14,20,0.92) 100%
    );
    z-index: 0;
}

/* WRAPPER */
.newsletter-wrap {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* SUB-TITLE */
.newsletter-wrap .sub-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #9f8bff;
    margin-bottom: 10px;
}

/* TITLE */
.newsletter-wrap .title {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 22px;
    text-shadow: 0 0 12px rgba(120,92,255,0.45);
}

/* DESCRIPTION */
.newsletter-wrap p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 28px;
    color: #cfd3df;
    margin-bottom: 35px;
}

/* FORM WRAP */
.newsletter-form {
    max-width: 540px;
    margin: 0 auto;
}

/* INPUT FIELD */
.newsletter-form input {
    width: 100%;
    height: 54px;
    padding: 0 20px;
    background: rgba(20,22,30,0.75);
    border: 1px solid #343446;
    border-radius: 10px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: 0.35s ease;
}

/* PLACEHOLDER */
.newsletter-form input::placeholder {
    color: #9da2b7;
    font-size: 14px;
}

/* INPUT FOCUS */
.newsletter-form input:focus {
    border-color: #8e71ff;
    box-shadow: 0 0 12px rgba(123,92,255,0.45);
    background: rgba(27,29,37,0.85);
}

/* SUBMIT BUTTON */
.newsletter-form button {
    font-family: 'Nunito', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    width: 100%;
    margin-top: 20px;
    background: rgba(71,46,148,0.22);
    border: 2px solid #8e71ff;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    transition: 0.35s ease;
    letter-spacing: .4px;
    backdrop-filter: blur(6px);
}

/* BUTTON HOVER */
.newsletter-form button:hover {
    background: linear-gradient(135deg,#3a0ca3,#7209b7,#4361ee);
    border-color: transparent;
    box-shadow: 0 0 16px rgba(123,92,255,0.75);
}

/* ICON INSIDE BUTTON */
.newsletter-form button i {
    margin-left: 10px;
    font-size: 16px;
}


/* 18. Contact Area */

.contact-area {
    padding: 120px 0;
    background: #0d0f15; /* premium dark */
    position: relative;
    z-index: 1;
}

.contact-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(12,14,20,0.65) 0%,
        rgba(12,14,20,0.92) 100%
    );
    z-index: 0;
}

/* SECTION TITLE */
.contact-area .section-title .sub-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #9f8bff;
    margin-bottom: 10px;
}

.contact-area .section-title .title {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 40px;
    text-shadow: 0 0 12px rgba(120,92,255,0.35);
}

/* CONTACT INFO BOXES */
.contact-info-item {
    background: rgba(18,18,25,0.65);
    border: 1px solid #2d2f38;
    border-radius: 14px;
    padding: 30px 25px;
    margin-bottom: 30px;
    transition: 0.35s;
    backdrop-filter: blur(6px);
}

/* HOVER */
.contact-info-item:hover {
    transform: translateY(-6px);
    border-color: rgba(130,98,255,0.45);
    box-shadow: 0 12px 30px rgba(0,0,0,0.55),
                0 0 14px rgba(123,92,255,0.35);
}

/* ICON */
.contact-info-item .icon {
    height: 60px;
    width: 60px;
    background: rgba(135,112,255,0.12);
    border: 1px solid rgba(135,112,255,0.25);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
    font-size: 24px;
    color: #a38cff;
    transition: .35s;
}

.contact-info-item:hover .icon {
    background: linear-gradient(135deg,#3a0ca3,#7209b7,#4361ee);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 0 14px rgba(120,92,255,0.45);
}

/* CONTACT TEXT */
.contact-info-item h5 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: #fff;
    margin-bottom: 8px;
}

.contact-info-item p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 26px;
    color: #cfd3df;
    margin-bottom: 0;
}

/* CONTACT FORM */
.contact-form {
    background: rgba(18,18,25,0.65);
    border: 1px solid #2d2f38;
    padding: 40px 35px;
    border-radius: 14px;
    margin-top: 30px;
    backdrop-filter: blur(6px);
}

/* INPUT FIELDS */
.contact-form input,
.contact-form textarea {
    width: 100%;
    font-family: 'Inter', sans-serif;
    background: rgba(20,22,30,0.75);
    border: 1px solid #343446;
    padding: 14px 18px;
    margin-bottom: 20px;
    border-radius: 10px;
    color: #ffffff;
    font-size: 14px;
    transition: 0.35s ease;
}

/* PLACEHOLDER */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9da2b7;
    font-size: 14px;
}

/* INPUT FOCUS */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #8e71ff;
    background: rgba(27,29,37,0.85);
    box-shadow: 0 0 12px rgba(123,92,255,0.45);
}

/* TEXTAREA HEIGHT */
.contact-form textarea {
    height: 150px;
    resize: none;
}

/* SUBMIT BUTTON */
.contact-form button {
    font-family: 'Nunito', sans-serif;
    background: rgba(71,46,148,0.22);
    border: 2px solid #8e71ff;
    color: #ffffff;
    padding: 14px 36px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 700;
    transition: 0.35s ease;
    display: inline-flex;
    align-items: center;
    letter-spacing: .4px;
}

.contact-form button i {
    margin-left: 10px;
    font-size: 16px;
}

/* BUTTON HOVER */
.contact-form button:hover {
    background: linear-gradient(135deg,#3a0ca3,#7209b7,#4361ee);
    border-color: transparent;
    box-shadow: 0 0 16px rgba(123,92,255,0.75);
}

/* MAP */
.contact-map {
    margin-top: 40px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(0,0,0,0.55);
    border: 1px solid #343446;
}

.contact-map iframe {
    width: 100%;
    height: 350px;
    border: none;
}


/* 19. Footer Area */

.footer-area {
    position: relative;
    padding: 100px 0 40px;
    background: #0d0f15; /* premium dark */
    z-index: 1;
}

.footer-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(12,14,20,0.55) 0%,
        rgba(12,14,20,0.95) 100%
    );
    z-index: 0;
}

/* FOOTER CONTAINER */
.footer-widget-wrap {
    position: relative;
    z-index: 1;
}

/* LOGO */
.footer-logo img {
    max-width: 150px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

/* FOOTER TEXT */
.footer-text {
    margin-top: 20px;
    max-width: 340px;
}

.footer-text p {
    font-family: 'Inter', sans-serif;
    color: #cfd3df;
    font-size: 14px;
    line-height: 26px;
}

/* FOOTER SOCIAL */
.footer-social {
    margin-top: 20px;
}

.footer-social ul {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social ul li a {
    height: 42px;
    width: 42px;
    border-radius: 10px;
    background: rgba(20,22,30,0.75);
    border: 1px solid #343446;
    color: #e3e6f3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: 0.35s ease;
}

/* SOCIAL HOVER */
.footer-social ul li a:hover {
    background: linear-gradient(135deg,#3a0ca3,#7209b7,#4361ee);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 0 14px rgba(123,92,255,0.55);
}

/* WIDGET TITLE */
.footer-widget .fw-title h5 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 0 12px rgba(123,92,255,0.35);
    text-transform: uppercase;
}

/* FOOTER LINKS */
.footer-widget .fw-links ul li {
    margin-bottom: 12px;
}

.footer-widget .fw-links ul li a {
    font-family: 'Inter', sans-serif;
    color: #cfd3df;
    font-size: 14px;
    display: inline-block;
    transition: 0.35s ease;
}

/* LINK HOVER */
.footer-widget .fw-links ul li a:hover {
    color: #a38cff;
    text-shadow: 0 0 8px #7b5cff;
    padding-left: 4px;
}

/* FOOTER CONTACT INFO */
.footer-widget .fw-contact ul li {
    font-family: 'Inter', sans-serif;
    color: #cfd3df;
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    line-height: 24px;
}

.footer-widget .fw-contact ul li i {
    font-size: 16px;
    margin-right: 10px;
    color: #a38cff;
    margin-top: 3px;
}

/* MINI NEWSLETTER INPUT */
.footer-newsletter input {
    width: 100%;
    background: rgba(20,22,30,0.75);
    border: 1px solid #343446;
    padding: 12px 16px;
    border-radius: 10px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin-bottom: 12px;
    transition: 0.35s ease;
}

/* PLACEHOLDER */
.footer-newsletter input::placeholder {
    color: #9da2b7;
}

/* FOCUS EFFECT */
.footer-newsletter input:focus {
    border-color: #8e71ff;
    box-shadow: 0 0 14px rgba(123,92,255,0.45);
}

/* FOOTER BTN */
.footer-newsletter button {
    font-family: 'Nunito', sans-serif;
    width: 100%;
    padding: 12px 10px;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    background: rgba(71,46,148,0.22);
    border: 2px solid #8e71ff;
    border-radius: 10px;
    transition: 0.35s ease;
    backdrop-filter: blur(6px);
}

/* BTN HOVER */
.footer-newsletter button:hover {
    background: linear-gradient(135deg,#3a0ca3,#7209b7,#4361ee);
    border-color: transparent;
    box-shadow: 0 0 16px rgba(123,92,255,0.75);
}

/* COPYRIGHT AREA */
.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 50px;
}

.footer-bottom p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #b3b6c8;
    margin-bottom: 0;
    text-align: center;
}

.footer-bottom p a {
    color: #a38cff;
    transition: 0.3s ease;
}

.footer-bottom p a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px #7b5cff;
}



/* 20. Preloader Area */

.preloader {
    position: fixed;
    inset: 0;
    background: #0d0f15; /* premium dark */
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* FADE OUT EFFECT */
.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    transition: opacity .6s ease, visibility .6s ease;
}

/* LOADER WRAPPER */
.preloader .loader-container {
    text-align: center;
}

/* SPINNER */
.preloader .spinner {
    height: 70px;
    width: 70px;
    border: 5px solid rgba(135,112,255,0.20);
    border-top: 5px solid #9f8bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 18px rgba(120,92,255,0.35);
}

/* SPIN ANIMATION */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* OPTIONAL LOADING TEXT */
.preloader .loading-text {
    font-family: 'Orbitron', sans-serif;
    color: #ffffff;
    margin-top: 20px;
    font-size: 16px;
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(120,92,255,0.55);
    animation: pulse 1.4s infinite ease-in-out;
}

/* TEXT PULSE EFFECT */
@keyframes pulse {
    0% { opacity: 0.55; }
    50% { opacity: 1; }
    100% { opacity: 0.55; }
}

/* MOVIE-REEL DOT EFFECT (OPTIONAL ELEMENTS) */
.preloader .dot {
    height: 10px;
    width: 10px;
    margin: 0 4px;
    display: inline-block;
    border-radius: 50%;
    background: #9f8bff;
    box-shadow: 0 0 10px rgba(123,92,255,0.65);
    animation: dotPulse 1.2s infinite ease-in-out;
}

.preloader .dot:nth-child(2) {
    animation-delay: .2s;
}

.preloader .dot:nth-child(3) {
    animation-delay: .4s;
}

@keyframes dotPulse {
    0%,100% { transform: scale(0.85); opacity: .6; }
    50% { transform: scale(1.2); opacity: 1; }
}


/* NYXEL HERO SLIDER */
.nyxel-hero-slider-area {
    position: relative;
    margin-bottom: 50px;
}

.nyxel-single-slide {
    height: 90vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.nyxel-slide-overlay {
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
}

.nyxel-slide-content {
    position: relative;
    z-index: 20;
    padding-top: 22vh;
    max-width: 600px;
}

.nyxel-slide-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 18px rgba(123,92,255,0.7);
}

.nyxel-slide-meta {
    color: #d3caff;
    font-size: 18px;
    margin: 20px 0;
}

.nyxel-slide-btns a {
    display: inline-block;
    margin-right: 15px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.nyxel-watch-trailer {
    background: #7b5cff;
    color: #fff;
    box-shadow: 0 0 15px rgba(123,92,255,0.5);
}

.nyxel-watch-now {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.nyxel-watch-now:hover {
    background: #fff;
    color: #111;
}


/* --- FIXED POSTER SIZE --- */
.movie-thumb {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 12px;
}

.movie-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 2 / 3;   /* perfect movie poster size */
    border-radius: 12px;
    display: block;
}


/* --- Live section quality badge fix --- */
.live-fact-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.live-fact-wrap .resolution {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
}

.live-fact-wrap .resolution h2 {
    font-size: 20px;
    margin: 0;
    line-height: 1;
}

.live-fact-wrap .resolution p {
    margin: 0;
    font-size: 13px;
    opacity: 0.8;
}

.active-customer h4 {
    margin: 0;
    font-size: 26px;
}

.active-customer p {
    margin: 0;
    font-size: 13px;
    opacity: 0.8;
}










/* ================================
   Movie Poster Size Fix (Global)
================================ */

/* Poster container */
.movie-thumb,
.movie-poster {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3;   /* Netflix-style poster ratio */
    border-radius: 12px;
    overflow: visible;     /* ✅ FIX: do NOT clip play button */
}

/* Poster image */
.movie-thumb img,
.movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;     /* keeps 2:3 crop perfectly */
    display: block;
    border-radius: 12px;   /* keeps rounded corners */
}














/* ================================
   Movie Play Button (Modern OTT)
================================ */

.movie-thumb {
    position: relative;
}

/* Play button base */
.movie-thumb .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2;
}

/* Hover reveal */
.movie-item:hover .play-btn {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Icon glow */
.movie-thumb .play-btn:hover {
    background: #7b61ff;
    box-shadow: 0 0 25px rgba(123, 97, 255, 0.8);
}

/* Dark overlay on hover */
.movie-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: 0.3s;
    z-index: 1;
}

.movie-item:hover .movie-thumb::after {
    opacity: 1;
}


















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

/* Modal box */
.nyxel-modal-box {
  width: 380px;
  padding: 30px;
  background: linear-gradient(145deg, #1b0f2e, #12081f);
  border-radius: 14px;
  box-shadow: 0 0 40px rgba(128, 64, 255, 0.35);
  color: #fff;
  position: relative;
  animation: popup 0.3s ease;
}

@keyframes popup {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.nyxel-modal-box h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #c7a6ff;
}

.nyxel-modal-box input {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: none;
  outline: none;
  background: #1f1333;
  color: #fff;
}

.nyxel-modal-box input::placeholder {
  color: #aaa;
}

.nyxel-btn {
  width: 100%;
  padding: 12px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(90deg, #7a3cff, #b57aff);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.nyxel-btn:hover {
  opacity: 0.9;
}

.nyxel-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 22px;
  cursor: pointer;
  color: #bbb;
}










#preloader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #0b0e13;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* IMPORTANT: fully remove after load */
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s ease;
}














/* Magnific popup hard center fix */
.mfp-wrap {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 999999 !important;
}

.mfp-container {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
}

.mfp-content {
    max-width: 900px;
    width: 90%;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
}






/* ===============================
   Magnific Popup – Perfect Center & Size
================================= */

/* Fullscreen overlay */
.mfp-wrap {
    position: fixed !important;
    inset: 0 !important;
    z-index: 999999 !important;
}

/* Center container */
.mfp-container {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
}

/* Video wrapper */
.mfp-iframe-holder .mfp-content {
    width: 90vw !important;
    max-width: 1000px !important;
    height: auto !important;
}

/* Force 16:9 aspect ratio */
.mfp-iframe-holder .mfp-content iframe {
    width: 100% !important;
    height: 56.25vw !important; /* 16:9 */
    max-height: 560px !important;
    min-height: 320px !important;
    border-radius: 12px;
}

/* Dark overlay fix */
.mfp-bg {
    background: rgba(0, 0, 0, 0.85) !important;
}










/* Signup Modal Button */
#signupModal button[type="submit"] {
    width: 100%;
    padding: 12px 0;
    margin-top: 15px;

    background: linear-gradient(135deg, #7f3dff, #b26cff);
    color: #ffffff;

    border: none;
    border-radius: 10px;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;

    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover effect */
#signupModal button[type="submit"]:hover {
    background: linear-gradient(135deg, #8f4dff, #c27cff);
    box-shadow: 0 0 18px rgba(178, 108, 255, 0.55);
}

/* Optional: active press */
#signupModal button[type="submit"]:active {
    transform: scale(0.98);
}


/* ========== GLOBAL RESET FOR IMAGES ========== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========== HERO SECTION ========== */
.movie-hero {
    position: relative;
    min-height: 90vh;
    background-size: cover;
    background-position: center;
}

.movie-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.85) 15%,
        rgba(0,0,0,0.55) 50%,
        rgba(0,0,0,0.15) 100%
    );
}

.movie-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding-top: 120px;
}

/* ========== POSTER (CRITICAL FIX) ========== */
.movie-poster {
    width: 100%;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 16px;
    background: #111;
}

.movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========== DETAILS PANEL ========== */
.movie-info-box {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
}

/* ========== BUTTON ========== */
.movie-btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 30px;
    background: linear-gradient(135deg,#facc15,#eab308);
    color: #000;
    font-weight: 700;
    text-decoration: none;
}

/* ========== RELATED MOVIES (BUG FIX HERE) ========== */
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(160px,1fr));
    gap: 25px;
}

.related-card {
    aspect-ratio: 2 / 3;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: #111;
}

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

/* Prevent image reload glitch */
.related-card img[src=""] {
    display: none;
}