﻿header {
	position: fixed;
	z-index: 99;
	height: 70px;
	width: 100%;
	display: table;
	box-shadow: 0 0 5px rgba(0, 0, 0, .2);
	top: 0;
	left: 0
}

:root {
	--primary-color: #e67e22;
	--gray-color: #bbb;
	/* Làm sáng màu xám để dễ đọc trên nền tối */
	--dark-bg: #1a1a1a;
	/* Nền modal tối */
	--dark-field: #2d2d2d;
	/* Nền của ô input */
	--white-color: #ffffff;
	--transition-speed: 0.3s ease;
}

/* 1. Lớp phủ nền mờ - Giữ nguyên hoặc tăng độ tối */
.modal-cuz {
	background: rgba(0, 0, 0, 0.85) !important;
	backdrop-filter: blur(6px);
}

/* 2. Khung nội dung tối */
.modal-content {
	background-color: var(--dark-bg);
	border-radius: 12px;
	border: 1px solid #333;
	/* Thêm viền nhẹ để tách biệt khỏi nền đen */
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
	text-align: center;
}

.modal-header {
    border-bottom: 1px solid var(--primary-color);
}

/* Nút đóng (X) */
.modal-header .close {
	color: var(--primary-color);
	text-shadow: none;
	opacity: 0.7;
}

.modal-header .close:hover {
	opacity: 1;
}

/* 3. Tiêu đề và Mô tả */
.modal-title {
	color: var(--white-color);
	/* Chữ trắng hoàn toàn */
	font-weight: 700;
	text-transform: uppercase;
}

.modal-cuz .desc {
	padding: 0 30px;
	color: var(--gray-color);
	/* Chữ xám sáng trên nền tối */
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 20px;
}

/* 4. Ô nhập liệu (Input) kiểu Dark Mode */
.modal-cuz .form-control {
	height: 45px;
	background-color: var(--dark-field);
	/* Nền ô input tối */
	border: 1.5px solid #444;
	/* Viền tối hơn */
	color: #eee;
	/* Chữ nhập vào màu trắng xám */
	border-radius: 6px;
	padding: 10px 15px;
	margin-bottom: 15px;
	transition: all var(--transition-speed);
}

.modal-cuz .form-control::placeholder {
	color: #777;
	/* Màu chữ gợi ý mờ đi */
}

.modal-cuz .form-control:focus {
	border-color: var(--primary-color);
	background-color: #333;
	/* Sáng lên một chút khi click */
	box-shadow: 0 0 8px rgba(230, 126, 34, 0.2);
	outline: none;
}

/* 5. Nút bấm (Button) - Màu cam cực kỳ nổi bật trên nền tối */
.modal-cuz .btn-successful {
	background: var(--primary-color) !important;
	color: var(--white-color) !important;
	font-weight: 600;
	letter-spacing: 0.5px;
	border: none;
	border-bottom: 3px solid #b35d15;
	height: 45px;
	font-size: 16px;
	width: 100%;
	/* Đảm bảo nút rộng hết form */
}

.modal-cuz .btn-successful:hover {
	background: #f39c12 !important;
	/* Cam sáng hơn một chút khi hover */
	transform: translateY(-1px);
	box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

/* 6. Footer và các liên kết phụ */
.modal-footer {
	background: #222;
	/* Footer tối hơn nền body một chút */
	border-top: 1px solid var(--primary-color);
	color: #999;
}

.modal-footer a {
	color: var(--primary-color);
	font-weight: 600;
	text-decoration: none;
}

.modal-footer a:hover {
	color: #f39c12;
	text-decoration: underline;
}

.modal-body #loginform .login-username label,
.modal-body #loginform .login-password label {
	display: none;
	/* Ẩn label mặc định vì đã có placeholder */
}

/* Ẩn mặc định các phần */
.pt-loading,
.pt-login,
.pt-register,
.pt-reset-password,
.pt-login-footer,
.pt-register-footer {
	display: none;
}

/* Hiển thị dựa trên tab đang active */
div[data-active-tab="#pt-login"] .pt-login,
div[data-active-tab="#pt-login"] .pt-register-footer {
	display: block;
}

div[data-active-tab="#pt-register"] .pt-register,
div[data-active-tab="#pt-register"] .pt-login-footer {
	display: block;
}

div[data-active-tab="#pt-reset-password"] .pt-reset-password,
div[data-active-tab="#pt-reset-password"] .pt-login-footer {
	display: block;
}

#bar-player .btn div img {
    width: 15px;
    height: 15px
}

#bar-player .btn div {
    width: 68px;
	height: 45px;
	border: 1px solid #bbb;
	border-radius: 3px;
	background-repeat: no-repeat;
	background-size: 100% 100%
}

#bar-player .btn {
    padding: 5px 7px;
    margin-right: 0;
    font-weight: 700;
    border-radius: 0
}

.btn:hover {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    color: var(--primary-color)
}

a.liked {
	color: #da1b1b
}

a.liked span.sl-count,a.liked:active,a.liked:focus,a.liked:hover {
	color: var(--gray-color)
}

.loader:after,
.loader:before {
	position: absolute;
	top: 0;
	content: ''
}

.loader:before {
	left: -.375em;
	-webkit-animation-delay: -.32s;
	animation-delay: -.32s
}

.loader {
	text-indent: -9999em;
	display: inline-block;
	position: relative;
	vertical-align: middle;
	font-size: 1em;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation-delay: -.16s;
	animation-delay: -.16s
}

.loader:after {
	left: .375em
}

.loader,
.loader:after,
.loader:before {
	background: red;
	-webkit-animation: 1s ease-in-out infinite load1;
	animation: 1s ease-in-out infinite load1;
	width: .2em;
	height: .6em
}

.mvi-images {
	padding: .7%
}

.mvi-images .ml-item {
	width: 97%;
	margin: 1%;
	float: left;
	position: relative;
	height: 240px;
	overflow: hidden
}

.ui-menu-item {
	border-bottom: 1px solid var(--gray-color);
	padding: 8px 10px
}

.ml-item-title {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: auto;
	padding: 8px 5px;
	text-transform: capitalize;
	background: linear-gradient(transparent, rgba(0, 0, 0, .7));
	font-weight: 700;
	font-size: 1.2em;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, .8);
	text-align: center;
	color: var(--white-color);
	pointer-events: none
}

.related-title {
	font-weight: 500
}

.random-title,
.related-title {
	position: relative;
	display: inline-block;
	text-decoration: none;
	cursor: pointer;
	padding-bottom: calc(var(--line-height) + 3px);
	color: inherit;
	transition: color .3s, opacity .3s;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

.random-title::after,
.related-title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: var(--line-height);
	background-color: var(--primary-color);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform var(--transition-speed);
	will-change: transform
}

.random-title:hover::after,
.related-title:hover::after {
	transform: scaleX(1);
	transform-origin: left
}

.related-title {
	font-size: clamp(1.1rem, 2vw, 1.4rem)
}

.random-title {
	font-size: clamp(1.8rem, 5vw, 2.5rem);
	font-weight: 700;
	padding-inline: 8px;
	background: linear-gradient(to top, rgba(0, 0, 0, .4) 0, transparent 100%)
}

@media (hover: none) {

	.random-title::after,
	.related-title::after {
		transform: scaleX(1);
		opacity: .4
	}
}

@media (prefers-reduced-motion:reduce) {
	.random-title::after,
	.related-title::after {
		transition: opacity .2s;
		transform: scaleX(1) !important;
		background-color: transparent;
		border-bottom: var(--line-height) solid var(--primary-color)
	}
}

.multicolor-text {
	background-image: linear-gradient(to left, violet, indigo, #00f, green, #ff0, orange, red);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-weight: 700;
	-webkit-text-stroke: 0.5px rgba(128, 128, 128, 0.3)
}

.floating-controls {
	position: fixed;
	bottom: 20%;
	right: 35px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 999
}

.floating-controls button {
	width: 45px;
	height: 45px;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
	transition: .3s;
	display: none;
	align-items: center;
	justify-content: center;
	color: var(--white-color);
	flex-shrink: 0
}

.tts-dropdown {
    position: absolute;
    bottom: calc(80% + 10px);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease-in-out;
    z-index: 999;
}

.tts-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tts-item {
	display: flex;
    align-items: center;
    padding: 10px 16px;
    font-size: 14px;
	font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: background 0.2s;
}

.tts-item:hover {
    color: #007bff;
}

/* Lớp phủ đen chặn chạm nhầm */
#lock-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-color: #000000;
    z-index: 99999999;
    display: none; /* Mặc định ẩn */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    touch-action: none; /* Quan trọng: Chặn cuộn trang và chạm nhầm hệ thống */
    user-select: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Container của thanh trượt */
#slider-bar {
    position: absolute;
    bottom: 15%;
    width: 80%;
    max-width: 300px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    display: flex;
    align-items: center;
    padding: 5px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Nút trượt */
#slider-button {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    transition: transform 0.1s ease;
    z-index: 2;
	touch-action: none; /* Ngăn trình duyệt cuộn trang khi đang kéo nút */
    will-change: transform; /* Báo trước cho trình duyệt để tối ưu phần cứng */
    cursor: grab;
}

/* Chữ hướng dẫn chạy mờ dần */
#slider-text {
    position: absolute;
    width: 100%;
    text-align: center;
    /* Dùng màu trong suốt để gradient bên dưới hiện lên qua nét chữ */
    color: transparent; 
    /* Màu nền dự phòng cho trình duyệt cũ không hỗ trợ background-clip */
    background-color: rgba(255, 255, 255, 0.3);     
    background-image: linear-gradient(
        to right, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.9) 50%, 
        rgba(255,255,255,0) 100%
    );  
    background-size: 150px 100%; 
    background-repeat: no-repeat;
    -webkit-background-clip: text; /* Cực kỳ quan trọng cho Chrome/Safari/Edge */
    background-clip: text;   
    animation: shimmer 2.5s infinite linear;
    font-size: 14px;
    font-weight: 500;
    z-index: 1; 
    pointer-events: none;
    white-space: nowrap; /* Đảm bảo chữ không bị xuống dòng làm hỏng gradient */
	transition: opacity 0.2s; /* Để chữ biến mất mượt mà khi kéo */
}

@keyframes shimmer {
    0% { background-position: -150px 0; }
    100% { background-position: 150% 0; } /* Dùng % để tự thích ứng với mọi chiều rộng */
}

#auto-scroll,
#switch-mode {
	background-color: #007bff
}

#auto-scroll.stopped {
	background-color: #28a745
}

#auto-scroll {
	font-weight: bold;
}

#speed-down,
#speed-up {
	background-color: var(--gray-color)
}

#back-to-top {
	opacity: 0;
	visibility: hidden;
	display: flex;
	transition: opacity .3s, visibility .3s;
	background-color: var(--primary-color);
}

#back-to-top.is-visible {
	opacity: 1 !important;
	visibility: visible !important
}

.floating-controls button:hover {
	transform: scale(1.1);
	filter: brightness(1.1)
}

#search,
.top-user-content.guest {
	margin-top: 17px
}

#logo {
	background-repeat: no-repeat
}

#filter ul li label,
body {
	font-weight: 400
}

body {
	background: var(--dark-bg);
	font-size: 14px;
	color: var(--white-color);
	margin: 0;
	padding: 0;
	position: relative;
	overflow: visible !important;
	padding-right: 0 !important
}

#filter,
#menu .sub-container,
header {
	background: #232323 !important;
}

h2,
h3 {
	font-weight: 700
}

a {
	text-decoration: none !important;
	outline: 0;
	-moz-outline: none
}

a:hover {
	text-decoration: none
}

a:focus,
a:hover {
	color: #63a235
}

a:active,
a:focus {
	outline: 0
}

.btn-successful {
	display: inline-block;
	height: 34px;
	/* Integrated from your snippet */
	padding: 0 20px;
	/* Adjusted padding to work with fixed height */
	line-height: 32px;
	/* Centers text vertically for fixed height */
	background: var(--primary-color);
	border: 1px solid var(--primary-color);
	color: var(--white-color);
	border-radius: 6px;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	transition: all var(--transition-speed);
	text-decoration: none;
	/* Good if used on <a> tags */
	box-sizing: border-box;
}

.btn-successful:hover {
	background: #d35400;
	border-color: #d35400;
	box-shadow: 0 4px 12px rgba(230, 126, 34, 0.4);
	transform: translateY(-1px);
}

.btn-successful:active {
	transform: translateY(0);
	box-shadow: 0 2px 4px rgba(230, 126, 34, 0.2);
}

.btn-successful:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.3);
}

.btn-danger {
	background: #df091e;
	border: none;
	border-bottom: 3px solid #cc091c !important
}

.btn-danger:active,
.btn-danger:focus,
.btn-danger:hover {
	background: #d9091e;
	border-bottom: 3px solid #cc091c !important
}

.btn-login {
	height: 34px;
	line-height: 32px;
	padding: 0 15px
}

#menu ul.top-menu li.active a,
#menu ul.top-menu li:hover a,
#mv-keywords a:hover,
#searchform .fa,
.related-title:hover,
.social-share a:hover,
a {
	color: var(--gray-color)
}

#bread .breadcrumb,
#bread .breadcrumb a,
#menu ul.top-menu li a,
#menu ul.top-menu li:hover .sub-container ul.sub-menu li a {
	color: #ddd;
}

.ml-item .mli-quality {
	background: var(--primary-color)
}

.thumb {
	background-position: 50% 25%;
	background-size: cover;
	display: inline-block
}

header .header-logo {
	margin-top: 7px;
	position: relative;
	display: inline-block;
	float: left;
	margin-right: 50px
}

header .header-logo:after {
	background: var(--gray-color);
	content: "";
	display: inline-block;
	height: 45px;
	position: absolute;
	right: -30px;
	top: 5px;
	width: 1px
}

#logo {
	background-image: url(../images/logo-light.png);
	background-size: contain;
	height: 49px;
	width: 187px;
	display: inline-block
}

#menu {
	float: left
}

#menu ul.top-menu {
	list-style: none;
	padding: 0
}

#menu ul.top-menu li {
	display: inline-block;
	float: left;
	margin: 0 5px;
	position: relative
}

#menu ul.top-menu li a {
	height: 70px;
	line-height: 70px;
	margin: 0;
	padding: 0 5px;
	font-family: Oswald;
	font-size: 16px;
	text-transform: uppercase;
	display: inline-block
}

#menu ul.top-menu li.active a {
	border-bottom: 3px solid var(--primary-color)
}

#menu .sub-container {
	position: absolute;
	top: 60px;
	left: -20px;
	width: 500px;
	border: 1px solid var(--gray-color);
	border-top: 1px solid var(--gray-color);
	z-index: 5;
	box-shadow: 0 0 3px rgba(0, 0, 0, .1)
}

#search,
#searchform .fa {
	position: relative;
	float: right
}

#menu .sub-container ul.sub-menu {
	padding: 10px;
	overflow: hidden
}

#menu .sub-container ul.sub-menu li {
	width: 30%;
	float: left;
	margin: 0 1.65%
}

#menu .sub-container ul.sub-menu li a {
	height: 30px;
	line-height: 30px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 0 10px;
	text-transform: none;
	display: block;
	border-bottom: none !important
}

#menu .sub-container ul.sub-menu li:hover a {
	color: var(--gray-color) !important
}

#searchform .fa {
	top: -25px;
	font: 18px/1 FontAwesome;
	right: 13px
}

#search {
	width: 295px
}

#search input.search-input {
	padding-right: 50px
}

#search input.search-input {
	border: 1px solid var(--primary-color);
	outline: none;
	padding: 8px 15px;
	border-radius: 4px;
	transition: box-shadow 0.3s ease;
}

#search input.search-input:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 5px rgba(230, 126, 34, 0.5);
}

#search i.fa-search {
	color: var(--primary-color);
}

#filter,
#main,
#mv-info,
.logged,
.search-content {
	position: relative
}

#top-user {
	float: right;
	margin-left: 15px
}

#main {
	min-height: 800px;
	padding-top: 70px
}

.pad {
	height: 40px;
	width: 100%;
	display: block
}

.page-404 {
	background: url(../images/404.jpg) bottom center no-repeat var(--white-color);
	margin-bottom: -30px;
	width: 100%;
	height: 315px;
	position: absolute
}

.not-found h1 {
	font-size: 140px;
	font-family: Montserrat;
	margin-top: 100px
}

.movies-list-wrap {
	display: block;
	overflow: hidden;
	margin: 0 0 40px
}

.movies-list {
	display: block;
	margin: 0 -1%
}

.movies-list .ml-item {
	width: 10.5%;
	margin: 1%;
	float: left;
	position: relative;
	height: 240px;
	overflow: hidden
}

.ml-item .mli-quality {
	position: absolute;
	left: 8px;
	top: 8px;
	width: auto;
	padding: 4px 6px;
	height: auto;
	border-radius: 3px;
	font-size: 11px;
	font-weight: 500;
	line-height: normal;
	z-index: 4
}

.movies-list .ml-item .mli-thumb {
	width: 100%;
	height: 100%
}

img.thumb.mli-thumb {
	width: 100% !important;
	height: auto !important;
	min-height: 100% !important
}

.movies-list .ml-item .mli-info {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: auto;
	padding: 10px;
	background: url(../images/mask-title.png) top repeat-x;
	z-index: 5
}

.movies-list .ml-item .mli-info h2 {
	font-size: 14px;
	margin: 0;
	font-weight: 400;
	text-align: center;
	color: var(--white-color);
	text-shadow: 0 0 2px rgba(0, 0, 0, .6)
}

.mlw-related .movies-list .ml-item {
	width: 14.6%;
	margin: 1%;
	height: 240px
}

.page-detail .pad {
	height: 20px
}

.main-detail {
	width: 1200px;
	margin: 0 auto
}

#bread .breadcrumb {
	padding: 0;
	background: 0 0
}

#mv-keywords {
	padding: 20px
}

#mv-info {
	margin-bottom: 0
}

#respond p input.submit:hover {
	background: var(--gray-color)
}

#mv-info .mvi-content {
	background: background:rgba(255, 255, 255, .05);
	padding: 20px;
	font-size: 12px;
	position: relative;
	width: 100%;
	margin-top: -5px
}

#mv-info .mvi-content h3 {
	font-size: 20px;
	line-height: 28px;
	margin: 0 10px 10px 0;
	display: initial
}

#mv-info .mvi-content .mvic-desc {
	width: 700px;
	margin-right: 20px;
	min-height: 210px;
	float: left;
	padding-right: 20px;
	border-right: none
}

#mv-info .mvi-content .imdb-r {
	font-size: 11px;
	color: var(--white-color);
	margin-left: 2px;
	padding: 2px 5px;
	border-radius: 3px;
	text-transform: uppercase
}

#mv-info .mvi-content .mvic-desc .desc {
	max-height: 150px;
	overflow-x: hidden;
	overflow-y: auto;
	margin-bottom: 10px;
	opacity: .7;
	font-style: italic;
	color: #aaa
}

#mv-info .mvi-content .mvic-info {
	width: 100%;
	display: block
}

#mv-info .mvi-content .mvic-info p {
	margin-bottom: 3px
}

#mv-info .mvi-content .mvic-info .mvici-left {
	float: left;
	width: 48%;
	margin-right: 2%
}

#mv-info .mvi-content .mvic-info .mvici-right {
	float: left;
	width: 50%
}

#mv-info .mvi-content .mvic-thumb {
	width: 140px;
	height: 210px;
	float: left;
	margin-right: 20px
}

#mv-info .mvi-content .mvic-btn {
	position: absolute;
	top: 10px;
	right: 20px;
	left: 880px;
	bottom: 20px
}

#mv-info .mvi-content .mvic-btn .btn {
	margin: 8px 0
}

#mv-info .mvi-content .imdb-r {
	display: inline-block;
	background: #f9a302;
	margin-top: -2px
}

.ann-home,
#mv-info .mvi-content,
#mv-keywords,
footer {
	background: #2d2d2d !important;
}

#mv-keywords {
	margin-bottom: 20px;
	display: block;
	clear: both;
}

#mv-keywords a {
	margin: 5px 15px 5px 0;
	text-transform: capitalize;
	color: var(--primary-color);
}

#mv-keywords a:before {
	content: '#'
}

.movieplay {
	height: 430px !important
}

header .header-logo h3 {
	margin: 13px 0
}

.mr5,.post-ratings-loading img {
    margin-right: 5px
}

#respond p label {
	display: block
}

.logged .logged-user {
	float: right;
	margin-top: 17px;
	position: relative
}

.logged .dropdown-menu {
	left: auto;
	right: -1px !important;
	padding: 0;
	overflow: hidden;
	width: 180px
}

.logged .logged-user .dropdown-menu>li>a {
	padding: 5px 12px;
	white-space: normal
}

.logged .logged-user .dropdown-menu>li {
	border-bottom: 1px solid var(--gray-color)
}

.logged .logged-user .dropdown-menu>li:last-of-type,
.ui-menu-item:last-child {
	border-bottom: none
}

.logged .logged-user .dropdown-menu>li.active {
	background: var(--primary-color) !important;
	border-bottom: none
}

.logged .logged-user .dropdown-menu>li.active a {
	background: 0 0 !important;
	color: var(--white-color) !important
}

.logged .logged-user .dropdown-menu>li>a>i {
	width: 16px;
	text-align: center
}

footer {
	padding: 20px 0 40px;
	margin-top: 30px
}

section#comments {
	padding: 10px
}

.more,
h3#reply-title {
	display: none
}

.comment-form span.required {
	color: red
}

#pagination {
	margin-top: 30px
}

#search.active {
	display: inline-block
}

.mobile-menu,
.mobile-search {
	display: none;
	color: var(--gray-color)
}

#pagination,
.not-found h1,
.not-found p {
	text-align: center
}

.pagination>li>a,
.pagination>li>span {
	border: none;
	color: var(--gray-color)
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
	background: var(--primary-color) !important;
	border: none
}

.pagination>li>a {
	margin: 0 5px;
	border-radius: 3px
}

#filter.active,
#menu.active {
	display: block !important
}

#filter {
	padding: 10px 20px;
	box-shadow: 0 3px 0 0 rgba(0, 0, 0, .1);
	border-radius: 3px;
	margin-bottom: 20px;
	display: none
}

#filter ul {
	list-style: none;
	padding: 10px 15px 8px;
	border: 1px solid var(--gray-color);
	background: #f8f8f8;
	border-radius: 3px;
	overflow: hidden
}

#filter ul li {
	float: left;
	padding: 3px 5px 3px 2px;
	margin: 0 5px 5px 0;
	width: auto
}

#filter ul li.active {
	background: var(--primary-color);
	color: var(--white-color)
}

#filter ul li label {
	font-size: 12px;
	margin-bottom: 0
}

#filter ul li label input {
	margin: 0 3px 0 0;
	vertical-align: text-top
}

@media screen and (min-width: 641px) {
	.tvseason .les-content {
		padding-left: 0
	}
}

@media screen and (min-width: 1600px) {
	.container {
		width: 1580px
	}
}

@media screen and (max-width: 1599px) {
	.container {
		width: 1300px
	}

	#search {
		width: 205px
	}

	#top-user {
		margin-left: 5px
	}

	#menu ul.top-menu li a {
		padding: 0 2px
	}
}

@media screen and (max-width: 1325px) {
	.container {
		width: 1170px
	}

	#search {
		width: 215px
	}

	#logo {
		height: 40px;
		width: 153px
	}

	header .header-logo:after {
		display: none
	}

	header .header-logo {
		margin-right: 20px;
		margin-top: 14px
	}

	.movies-list .ml-item .mli-info h2 {
		font-size: 12px
	}

	.main-detail {
		width: 100%
	}

	#mv-info .mvi-content .mvic-btn {
		left: 840px
	}

	#mv-info .mvi-content .mvic-desc {
		border-right: 0;
		padding-right: 0;
		width: 660px
	}

	.mlw-related .movies-list .ml-item {
		height: 240px
	}

	#menu ul.top-menu li a {
		font-size: 14px
	}
}

@media screen and (max-width: 1199px) {
	.container {
		width: 970px
	}

	#menu {
		position: absolute;
		float: none;
		bottom: 0;
		left: 15px;
		right: 15px;
		border-top: 1px solid #ddd
	}

	#menu ul.top-menu {
		margin-bottom: 0;
		display: block
	}

	#menu ul.top-menu li.active a {
		border-bottom: 2px solid var(--primary-color)
	}

	#menu .sub-container {
		top: 40px;
		left: -10px;
		width: 470px
	}

	#menu .sub-container ul.sub-menu li {
		margin: .65%;
		width: 32%
	}

	#menu .sub-container ul.sub-menu li a {
		height: 24px;
		line-height: 24px
	}

	#main {
		padding-top: 110px
	}

	.pad {
		height: 20px
	}

	#filter {
		padding: 15px 15px 10px
	}

	#filter ul li {
		float: none;
		width: auto !important;
		display: inline-block;
		padding: 0;
		margin: 0 5px 5px 0
	}

	#mv-info .mvi-content .mvic-desc {
		border-right: none;
		padding-right: 0;
		width: 460px
	}

	#mv-info .mvi-content .mvic-btn {
		left: 640px
	}

	#mv-info .mvi-content .mvic-info .mvici-left {
		width: 63%;
		margin-right: 2%
	}

	#mv-info .mvi-content .mvic-info .mvici-right {
		width: 35%
	}
}

@media screen and (min-width: 991px) and (max-width:1199px) {
	#menu {
		border-top: none;
		float: left;
		position: relative;
		top: auto;
		left: auto;
		margin-left: 20px
	}

	#search {
		width: 135px
	}

	#menu ul.top-menu li a {
		padding: 0
	}

	#menu .sub-container {
		top: 55px
	}

	#search input.search-input:focus {
		position: absolute;
		width: 250px;
		left: -115px
	}

	#main {
		padding-top: 70px
	}
}

@media screen and (max-width: 991px) {
	#menu .sub-container,
	#mv-info .mvi-content .mvic-btn {
		position: relative;
		top: auto;
		left: auto
	}

	#menu,#search,.mobile-menu,.mobile-search {
        background: #232323
    }

	.mobile-menu.active i,
	.mobile-search.active i {
		color: var(--gray-color)
	}

	#menu ul.top-menu li a,
	.movies-list .ml-item .mli-info h2 {
		font-weight: 700;
		font-size: 14px
	}

	#menu,
	#search {
		display: none
	}

	#menu ul.top-menu,
	.container {
		width: 100%
	}

	.mobile-menu,
	.mobile-search {
		display: inline-block;
		cursor: pointer;
		height: 34px;
		width: 34px;
		border-radius: 6px;
		top: 17px;
		text-align: center;
		position: absolute;
		left: 15px
	}

	#menu ul.top-menu li a {
		height: 40px;
		line-height: 40px;
		padding: 0 15px;
		margin: 0 5px;
		font-family: Arial, Helvetica, sans-serif;
		color: var(--primary-color);
		display: block
	}

	.btn-login {
		background: transparent !important;
		color: var(--gray-color);
		border: none !important;
		font-size: 21px;
	}

	.btn-login:hover {
		background: transparent !important;
		border-color: transparent !important;
		box-shadow: none !important;
		transform: none !important;
	}
	
	.mobile-menu i,
	.mobile-search i {
		font-size: 18px;
		line-height: 32px
	}

	.mobile-search {
		left: auto;
		right: 15px
	}

	header {
		position: relative !important;
		display: block !important;
		top: auto !important
	}

	header .header-logo {
		margin: 0 0 0 -77px;
		position: absolute;
		top: 13px;
		left: 50%
	}

	#menu {
		border-top: none;
		bottom: auto;
		top: 70px;
		right: 15px;
		left: 15px
	}

	#menu ul.top-menu li {
		float: none;
		display: block;
		margin: 0;
		border-bottom: 1px solid var(--gray-color)
	}

	#menu ul.top-menu li.active a {
		border-bottom: none
	}

	#menu .sub-container {
		width: 100%;
		margin-top: -10px;
		display: block !important;
		background: 0 0;
		border: none
	}

	#menu.active,
	#search {
		position: absolute
	}

	#menu .sub-container ul.sub-menu li {
		border-bottom: none;
		width: 23%;
		margin: 1%
	}

	#menu .sub-container ul.sub-menu li a {
		height: 28px;
		line-height: 28px;
		font-size: 12px;
		color: #aaa !important;
		background: #282828;
		width: auto;
		font-weight: 400
	}

	header .container {
		height: 70px
	}

	#search {
		float: none;
		bottom: -64px;
		left: 0;
		right: 0;
		width: auto;
		padding: 15px;
		margin: 15px
	}

	#main {
		padding-top: 0 !important;
		margin-top: 0 !important
	}

	.movies-list-wrap {
		margin-bottom: 20px
	}

	footer {
		margin-top: 20px
	}

	#mv-info .mvi-content .mvic-btn {
		right: auto;
		bottom: auto;
		margin: 0 -1% 20px
	}

	#mv-info .mvi-content {
		margin-top: 0;
		padding-top: 0
	}

	#mv-info .mvi-content .mvic-desc {
		float: none;
		padding-left: 160px;
		margin-right: 0;
		width: 100%;
		padding-right: 160px
	}

	.mlw-related .movies-list .ml-item {
		width: 23%;
		height: 240px
	}

	.logged {
		position: static
	}
}

@media screen and (max-width: 799px) {

	.container {
		width: 100%
	}

	#menu {
		left: 0;
		right: 0
	}

	#search {
		margin: 0;
		padding: 5px 15px 15px;
		top: 70px;
		bottom: auto
	}

	#mv-info .mvi-content .mvic-thumb {
		width: 100px;
		height: 150px;
		display: none
	}

	#mv-info .mvi-content h3 {
		font-size: 18px
	}

	#mv-info .mvi-content .mvic-info .mvici-left {
		margin-right: 0;
		width: 100%;
		float: none
	}

	.mlw-related .movies-list .ml-item {
		width: 23%;
		height: 240px
	}

	#mv-info .mvi-content .mvic-desc {
		padding-right: 0;
		padding-left: 0
	}

	#mv-info .mvi-content .mvic-btn {
		margin-bottom: 10px;
		overflow: hidden
	}
}

@media screen and (max-width: 640px) {
    #bar-player .btn div {
        width: 73px;
    }
	
	.movies-list .ml-item {
		height: 200px
	}

	#menu .sub-container ul.sub-menu li {
		border-bottom: none;
		width: 31.3%;
		margin: 1%
	}

	#bread {
		display: none
	}

	.mlw-related .movies-list .ml-item {
		width: 31.3%;
		height: 240px
	}

	.social-share a i.fa {
		font-size: 16px
	}

	.movieplay {
		height: 268px !important
	}

	header .header-logo h3 {
		margin: 4px 0
	}
}

@media screen and (max-width: 550px) {

	#mv-info .mvi-content .mvic-btn {
		margin-bottom: 0
	}

	#mv-info .mvi-content .mvic-info .mvici-left {
		width: 65%;
		float: left
	}
}

@media screen and (max-width: 520px) {

	.movies-list .ml-item {
		height: 240px;
		margin: 1%;
		width: 31.3%
	}

	#logo {
		width: 103px;
		height: 27px
	}

	header,
	header .container {
		height: 50px
	}

	.mobile-menu,
	.mobile-search {
		top: 8px
	}

	.top-user-content.guest,
	.logged .logged-user {
		margin-top: 8px
	}

	header .header-logo {
		left: 80px;
		top: 10px;
		margin: 0
	}

	#menu,
	#search {
		top: 50px
	}
}

@media screen and (max-width: 479px) {

	#mv-info .mvi-content,
	#mv-keywords {
		padding: 10px
	}

	#mv-keywords {
		font-size: 12px
	}

	.movies-list .ml-item {
		height: 240px;
		margin: 1.5%;
		width: 47%
	}

	#menu ul.top-menu li a {
		padding: 0 8px
	}

	#menu .sub-container ul.sub-menu li {
		border-bottom: none;
		margin: 0;
		width: 33.33%
	}

	#menu .sub-container ul.sub-menu li a {
		margin: 0;
		padding: 0 0 0 8px;
		background: 0 0 !important
	}

	#menu .sub-container ul.sub-menu {
		padding: 5px
	}

	.mlw-related .movies-list .ml-item {
		width: 48%;
		height: 240px
	}

	#mv-info .mvi-content .mvic-info .mvici-left,
	#mv-info .mvi-content .mvic-info .mvici-right {
		width: 100%;
		float: none
	}

	#mv-keywords a {
		margin-right: 10px
	}

	#mv-info .mvi-content h3 {
		line-height: 1.3em;
		margin-right: 0;
		padding-right: 0;
		margin-bottom: 10px;
		display: block
	}
}

@media screen and (max-width: 359px) {
	.movies-list .ml-item {
		height: 230px
	}
}

#respond p input,
#respond p textarea {
	width: 100%;
	padding: 5px 10px;
	background: var(--dark-field);
	color: var(--white-color);
	border: 1px solid #d8d8d8
}

#respond p input.submit {
	display: block;
	width: auto;
	padding: 10px 15px;
	background: var(--primary-color);
	border: 0;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px
}

.tvseason {
	max-height: 270px;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 10px 5px;
	border-bottom: 1px solid #e0e0e0
}

.tvseason .les-content {
	margin: -10px
}

.tvseason .les-content a {
	border-bottom: 3px solid #e0e0e0;
	background: var(--primary-color);
	padding: 7px 5px;
	min-width: 50px;
	font-size: 12px;
	color: #000;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	display: inline-block;
	margin: 5px
}

.tvseason .les-content a:visited {
	border-bottom: 3px solid var(--gray-color);
	background: var(--gray-color);
	color: var(--white-color)
}

.tvseason .les-content a:hover {
	border-bottom: 3px solid #73ad38;
	background: var(--gray-color)
}

.tvseason .les-content a:hover:before {
	content: "\f04b";
	font-family: FontAwesome;
	font-size: 10px;
	margin-right: 5px;
	font-weight: 400
}

.mr10 {
	margin-right: 10px
}

.sl-button {
	padding: 10px 15px;
	margin-right: 0;
	font-weight: 700;
	border-radius: 0
}

@-webkit-keyframes load1 {

	0%,
	100%,
	80% {
		box-shadow: 0 0 rgba(0, 0, 0, .2);
		height: .6em
	}

	40% {
		box-shadow: 0 -.3em rgba(0, 0, 0, .2);
		height: 1em
	}
}

@keyframes load1 {

	0%,
	100%,
	80% {
		box-shadow: 0 0 rgba(0, 0, 0, .2);
		height: .6em
	}

	40% {
		box-shadow: 0 -.3em rgba(0, 0, 0, .2);
		height: 1em
	}
}

.search-content button {
	position: relative;
	float: right;
	right: -5px;
	top: -2px;
	background: 0 0;
	border: none;
	height: 0;
	width: 0
}

@keyframes fa-blink {
	0% {
		opacity: 1
	}

	100% {
		opacity: .3
	}
}

.fa-blink {
	-webkit-animation: .5s linear infinite fa-blink;
	-moz-animation: .5s linear infinite fa-blink;
	-ms-animation: fa-blink .5s linear infinite;
	-o-animation: .5s linear infinite fa-blink;
	animation: .5s linear infinite fa-blink;
	color: var(--primary-color);
}

.top-menu ul li {
	list-style: none
}

.social-share a {
	color: #4279c1
}

.social-share a i.fa {
	font-size: 24px;
	margin-right: 15px
}

.content-kuss {
	margin: 20px 0;
	text-align: center
}

p.none {
	margin-left: 10px
}

::-webkit-scrollbar-thumb {
	background-color: #e62117
}

::-webkit-scrollbar {
	width: 5px;
	height: 5px;
	border-radius: 5px;
	background-color: rgba(0, 0, 0, .3)
}

.donate-stats {
	margin: 15px 0; 
	padding: 10px 25px; 
	background: rgba(230, 126, 34, 0.1); 
	border-radius: 50px; 
	display: inline-block; 
	border: 2px solid #e67e22; 
	backdrop-filter: blur(5px);
	box-shadow: 0 4px 15px rgba(230, 126, 34, 0.15);
}

.donate-stats span {
	font-weight: 600;
}

.donate-stats span strong {
	color: #e67e22;
	font-size: 1.3em;
	text-shadow: 1px 1px 0px rgba(255,255,255,0.5);
}

.donate-container {
	max-width: 900px;
	margin: 3px auto;
	font-family: 'Segoe UI', Roboto, sans-serif;
	padding: 0 20px;
	text-align: center;
}

.donate-title {
	color: var(--primary-color);
	font-size: 24px;
	margin-bottom: 5px;
	position: relative;
	display: inline-block;
}

.donate-title::after {
	content: '';
	display: block;
	width: 50%;
	height: var(--line-height);
	background: var(--primary-color);
	margin: 8px auto 0;
}

.donate-subtitle {
	color: var(--white-color);
	margin-bottom: 20px;
	font-size: 14px;
	font-style: italic;
}

.donate-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
}

.donate-card {
	background: var(--white-color);
	border-radius: 12px;
	padding: 10px 5px;
	/* Tăng nhẹ padding dọc để thoáng hơn */
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	border: 1px solid #eee;
	transition: transform var(--transition-speed), box-shadow var(--transition-speed);
	position: relative;
	height: 240px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	/* Đẩy các phần tử ra hai đầu để cân đối */
	align-items: center;
	overflow: hidden;
}

.donate-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.donate-bank {
	font-weight: bold;
	color: var(--primary-color);
	margin-top: 5px;
	font-size: 0.95rem;
}

.donate-qr {
	/* Điều chỉnh lại 140px là tỉ lệ vàng cho card 240px */
	height: 140px;
	width: auto;
	border-radius: 8px;
	border: 1px solid #f0f0f0;
	object-fit: contain;
}

.donate-info {
	margin-bottom: 8px;
}

.donate-info strong {
	display: block;
	font-size: 1.05rem;
	color: #333;
	line-height: 1.2;
}

.donate-info p {
	color: var(--gray-color);
	margin: 2px 0 0 0;
	font-size: 0.8rem;
	text-transform: uppercase;
	/* Làm tên chủ thẻ trông chuyên nghiệp hơn */
}

.donate-footer-text {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid var(--primary-color); /* Tạo một đường kẻ mờ ngăn cách */
    font-style: italic;
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.5;
}

.donate-method-label {
    font-weight: bold;
    margin: 15px 0;
    color: var(--primary-color);
}

.donate-copy {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	color: var(--gray-color);
	transition: color var(--transition-speed), opacity var(--transition-speed);
	font-size: 16px;
	z-index: 10;
}

.donate-copy:hover {
	color: var(--primary-color);
	opacity: var(--hover-opacity);
}

/* Tùy chỉnh riêng cho Paypal */
.paypal-card .paypal-icon {
	font-size: 60px;
	color: #0070ba;
	flex-grow: 1;
	display: flex;
	align-items: center;
}

/* Style cho thông báo Toast */
#toast {
  position: fixed;
  top: 20px; /* Cách mép trên 20px */
  right: -300px; /* Ban đầu ẩn sang bên phải */
  background-color: #333;
  color: #fff;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: right 0.5s ease; /* Hiệu ứng trượt */
  z-index: 999;
}

/* Class này sẽ được thêm bằng JS để hiện thông báo */
#toast.show {
  right: 20px; /* Trượt vào vị trí hiển thị */
}

@keyframes fadeInOut {
	0% {
		opacity: 0;
		bottom: 20px;
	}

	20% {
		opacity: 1;
		bottom: 30px;
	}

	80% {
		opacity: 1;
		bottom: 30px;
	}

	100% {
		opacity: 0;
		bottom: 20px;
	}
}

.ann-home,
.letter-movies-lits .mlnew-head td {
	font-weight: 600;
}

.ann-home,
form#psy-loginform p {
	margin: 15px 0;
}

.ann-home {
	font-size: 16px;
}

.ann-home a:hover {
	text-shadow: #000 0 0 3px;
}

#respond p input.submit,
.ac-desc,
.ann-home,
.ann-home a,
.ml-item .mli-eps,
.ml-item .mli-quality,
.mli-fixed,
.random-title,
.related-title,
.tvseason .les-content a:hover,
a,
footer {
	color: var(--white-color);
}

#install-app .ia-icon,
#menu,
.abf-btn .fb-like,
.comment-avatar,
.owl-carousel .owl-item,
.user-content .uct-avatar,
div#wpas-ptype,
div#wpas-tax_quality {
	float: left;
}

.owl-carousel {
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}

.owl-carousel .owl-wrapper-outer {
	overflow: hidden;
	position: relative;
	width: 100%;
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-wrapper {
	display: none;
	position: relative;
	-webkit-transform: translate3d(0, 0, 0);
}

.owl-next:before,
.owl-prev:before {
	font: 14px/1 FontAwesome;
	color: var(--white-color);
}

.owl-prev:before {
	content: "\f053";
}

.owl-next:before {
	content: "\f054";
}

.owl-next,
.owl-prev {
	width: auto;
	padding: 10px;
	background: rgba(0, 0, 0, .5);
	position: relative;
	cursor: pointer;
}

.owl-next {
	float: right;
	margin-right: 3px;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}

.owl-prev {
	float: left;
	margin-left: 3px;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}

.owl-buttons {
	position: absolute;
	top: 36%;
	width: 100%;
	display: none;
}

@media screen and (min-width:600px) {
	.owl-next {
		margin-right: 4px;
	}
}

@media screen and (min-width:500px) {
	.owl-buttons {
		display: block;
	}
}