/* ====================================
   Modern Style CSS - Netflix Inspired
   ==================================== */

/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.modern-wrapper {
	background: #0a0a0a;
}


.site-header {
	visibility: visible !important;
	opacity: 1 !important;
}

.logo-container {
	visibility: visible !important;
	opacity: 1 !important;
}

/* Hero Slider Section */
.hero-slider-section {
	position: relative;
	height: 95vh;
	min-height: 600px;
	margin-top: 0;
	overflow: hidden;
}

.hero-swiper {
	width: 100%;
	height: 100%;
}

.hero-slide {
	position: relative;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, 
		rgba(10, 10, 10, 0.95) 0%, 
		rgba(10, 10, 10, 0.7) 50%, 
		transparent 100%);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	align-items: center;
	padding: 100px 0 50px;
}

.hero-info {
	color: #ffffff;
}

.hero-meta {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.quality-badge {
	background: linear-gradient(135deg, #e50914 0%, #b20710 100%);
	padding: 6px 14px;
	border-radius: 5px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.rating-badge {
	background: rgba(255, 193, 7, 0.15);
	color: #ffc107;
	padding: 6px 14px;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 600;
}

.rating-badge i {
	margin-right: 5px;
}

.year-badge {
	background: rgba(255, 255, 255, 0.1);
	padding: 6px 14px;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 500;
}

.hero-title {
	font-size: 4rem;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
	text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-details {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 25px;
	font-size: 16px;
	color: #b3b3b3;
	flex-wrap: wrap;
}

.separator {
	color: #666;
}

.hero-description {
	font-size: 18px;
	line-height: 1.8;
	color: #e0e0e0;
	margin-bottom: 35px;
	max-width: 600px;
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.hero-actions {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.btn {
	padding: 15px 35px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.btn-primary {
	background: linear-gradient(135deg, #e50914 0%, #b20710 100%);
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(229, 9, 20, 0.6);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.15);
	color: #ffffff;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.25);
	transform: translateY(-2px);
}

.hero-poster {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

.hero-poster img {
	max-width: 400px;
	width: 100%;
	height: auto;
	border-radius: 15px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
	position: relative;
	z-index: 2;
}

.poster-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	height: 80%;
	background: radial-gradient(circle, rgba(229, 9, 20, 0.3) 0%, transparent 70%);
	filter: blur(60px);
	z-index: 1;
}

/* Hero Navigation */
.hero-nav-prev,
.hero-nav-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 24px;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-nav-prev {
	left: 30px;
}

.hero-nav-next {
	right: 30px;
}

.hero-nav-prev:hover,
.hero-nav-next:hover {
	background: rgba(229, 9, 20, 0.9);
	transform: translateY(-50%) scale(1.1);
}

.hero-pagination {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	gap: 10px;
}

.swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
	background: #e50914;
	width: 30px;
	border-radius: 6px;
}

/* Search Section */
.search-section {
	padding: 20px 0;
	background: linear-gradient(180deg, #0a0a0a 0%, #141414 100%);
}

.search-wrapper {
	max-width: 900px;
	margin: 0 auto;
}

.modern-search-form {
	position: relative;
}

.search-input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50px;
	padding: 5px;
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
	border-color: #e50914;
	box-shadow: 0 0 30px rgba(229, 9, 20, 0.3);
}

.search-icon {
	position: absolute;
	left: 25px;
	color: #888;
	font-size: 20px;
	pointer-events: none;
}

.search-input {
	flex: 1;
	background: transparent;
	border: none;
	padding: 18px 60px;
	color: #ffffff;
	font-size: 16px;
	outline: none;
}

.search-input::placeholder {
	color: #888;
}

.search-btn {
	background: linear-gradient(135deg, #e50914 0%, #b20710 100%);
	color: #ffffff;
	border: none;
	padding: 15px 35px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease;
}

.search-btn:hover {
	transform: scale(1.05);
	box-shadow: 0 5px 20px rgba(229, 9, 20, 0.5);
}

/* Stats Section */
.stats-section {
	padding: 20px 0;
	background: #141414;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
}

.stat-card {
	position: relative;
	background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
	border-radius: 15px;
	padding: 30px;
	display: flex;
	align-items: center;
	gap: 20px;
	transition: all 0.3s ease;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, transparent 0%, rgba(229, 9, 20, 0.1) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.stat-card:hover::before {
	opacity: 1;
}

.stat-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	border-color: #e50914;
}

.stat-icon {
	width: 60px;
	height: 60px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	flex-shrink: 0;
}

.stat-icon.movies {
	background: linear-gradient(135deg, #00e8ff 0%, #0091ff 100%);
}

.stat-icon.tv {
	background: linear-gradient(135deg, #ff8d00 0%, #ff5500 100%);
}

.stat-icon.games {
	background: linear-gradient(135deg, #ff2544 0%, #d11736 100%);
}

.stat-icon.software {
	background: linear-gradient(135deg, #a2c929 0%, #7ea01c 100%);
}

.stat-icon.online {
	background: linear-gradient(135deg, #1bffea 0%, #00c9b7 100%);
}

.stat-info h3 {
	font-size: 32px;
	font-weight: 700;
	margin: 0 0 5px 0;
	color: #ffffff;
}

.stat-info p {
	margin: 0;
	color: #888;
	font-size: 14px;
	font-weight: 500;
}

.stat-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
}

/* Notice Section */
.notice-section {
	padding: 40px 0;
	background: #0a0a0a;
}

.notice-card {
	background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
	border-radius: 15px;
	padding: 25px 30px;
	display: flex;
	align-items: center;
	gap: 20px;
	border-left: 5px solid #ffc107;
}

.notice-icon {
	width: 50px;
	height: 50px;
	background: rgba(255, 193, 7, 0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffc107;
	font-size: 24px;
	flex-shrink: 0;
}

.notice-content h4 {
	margin: 0 0 10px 0;
	color: #ffc107;
	font-size: 18px;
	font-weight: 600;
}

.notice-content p {
	margin: 0;
	color: #b3b3b3;
	line-height: 1.6;
}

/* Content Section */
.content-section {
	padding: 20px 0;
	background: #0a0a0a;
}

.content-section .container-fluid {
	max-width: 100%;
	padding: 0 20px;
}

.section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
	padding: 0 20px;
}

.section-title {
	font-size: 32px;
	font-weight: 700;
	color: #ffffff;
	display: flex;
	align-items: center;
	gap: 15px;
}

.section-title i {
	color: #e50914;
}

.see-all {
	color: #e50914;
	text-decoration: none;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
}

.see-all:hover {
	gap: 12px;
	color: #ff1f29;
}

/* Content Swiper */
.content-swiper {
	position: relative;
	padding: 0 60px;
}

.content-prev,
.content-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.content-prev {
	left: 0;
}

.content-next {
	right: 0;
}

.content-prev:hover,
.content-next:hover {
	background: #e50914;
	transform: translateY(-50%) scale(1.1);
}

/* Movie Card */
.movie-card {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
	background: #1f1f1f;
}

.movie-card:hover {
	transform: scale(1.05);
	z-index: 100;
}

.movie-poster {
	position: relative;
	width: 100%;
	padding-top: 150%;
	overflow: hidden;
	background: #1f1f1f;
	border-radius: 8px;
}

.movie-poster img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s ease;
	display: block !important;
	opacity: 1 !important;
	visibility: visible !important;
}

.movie-card:hover .movie-poster img {
	transform: scale(1.1);
}

.movie-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.9) 100%);
	opacity: 0;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 15px;
}

.movie-card:hover .movie-overlay {
	opacity: 1;
}

.overlay-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.quality-tag {
	background: rgba(229, 9, 20, 0.9);
	padding: 5px 10px;
	border-radius: 5px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.quality-tag.hd720 {
	background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
}

.quality-tag.hd1080 {
	background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
    color:#000;
}

.rating-tag {
	background: rgba(255, 193, 7, 0.9);
	color: #000;
	padding: 5px 10px;
	border-radius: 5px;
	font-size: 11px;
	font-weight: 600;
}

.overlay-actions {
	display: flex;
	justify-content: center;
	gap: 15px;
	padding-bottom: 20px;
}

.play-btn,
.trailer-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 18px;
	transition: all 0.3s ease;
	text-decoration: none;
}

.play-btn {
	background: #e50914;
}

.play-btn:hover {
	transform: scale(1.2);
	box-shadow: 0 5px 20px rgba(229, 9, 20, 0.6);
}

.trailer-btn {
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
}

.trailer-btn:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: scale(1.2);
}

.movie-info {
	padding: 15px;
}

.movie-title {
	font-size: 15px;
	font-weight: 600;
	color: #ffffff;
	margin: 0 0 5px 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.movie-year {
	font-size: 13px;
	color: #888;
	margin: 0;
}

/* Categories Section */
.categories-section {
	padding: 20px 0;
	background: #141414;
}

.categories-section .container-fluid {
	max-width: 100%;
	padding: 0 20px;
}

.modern-tabs {
	background: #1f1f1f;
	border: none;
	border-radius: 12px;
	padding: 10px;
	display: flex;
	gap: 10px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.modern-tabs .nav-item {
	flex: 1;
	min-width: 120px;
}

.modern-tabs .nav-link {
	background: transparent;
	border: none;
	color: #888;
	font-weight: 600;
	padding: 15px 20px;
	border-radius: 8px;
	transition: all 0.3s ease;
	text-align: center;
}

.modern-tabs .nav-link:hover {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.05);
}

.modern-tabs .nav-link.active {
	background: #e50914;
	color: #ffffff;
}

/* Tab Content - Fix visibility issues */
.categories-tabs .tab-content {
	min-height: 400px;
	position: relative;
}

.categories-tabs .tab-pane {
	display: none;
}

.categories-tabs .tab-pane.active {
	display: block !important;
	opacity: 1 !important;
	visibility: visible !important;
}

/* Ensure images load in inactive tabs */
.categories-tabs .tab-pane img {
	display: block !important;
	opacity: 1 !important;
	visibility: visible !important;
}

/* Mobile tabs responsiveness */
@media (max-width: 768px) {
	.modern-tabs {
		overflow-x: auto;
		overflow-y: hidden;
		flex-wrap: nowrap;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}
	
	.modern-tabs::-webkit-scrollbar {
		display: none;
	}
	
	.modern-tabs .nav-item {
		flex: 0 0 auto;
	}
	
	.modern-tabs .nav-link {
		padding: 12px 20px;
		font-size: 14px;
		white-space: nowrap;
	}
}

.movies-grid {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}

.movies-grid > div[class*="col-"] {
	padding: 0 10px;
	margin-bottom: 20px;
}

/* Ensure consistent card sizing on all screens */
.movies-grid .movie-card {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.movies-grid .movie-poster {
	width: 100%;
	flex-shrink: 0;
}

.movies-grid .movie-info {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

/* Responsive Grid System - Force consistent sizing */
/* Extra small devices (phones, less than 576px) - 2 cards per row */
@media (max-width: 575.98px) {
	.movies-grid > [class*="col-"] {
		width: 50% !important;
		max-width: 50% !important;
		flex: 0 0 50% !important;
	}
}

/* Small devices (landscape phones, 576px and up) - 3 cards per row */
@media (min-width: 576px) and (max-width: 767.98px) {
	.movies-grid > [class*="col-"] {
		width: 33.333333% !important;
		max-width: 33.333333% !important;
		flex: 0 0 33.333333% !important;
	}
}

/* Medium devices (tablets, 768px and up) - 4 cards per row */
@media (min-width: 768px) and (max-width: 991.98px) {
	.movies-grid > [class*="col-"] {
		width: 25% !important;
		max-width: 25% !important;
		flex: 0 0 25% !important;
	}
}

/* Large devices (desktops, 992px and up) - 5 cards per row */
@media (min-width: 992px) and (max-width: 1199.98px) {
	.movies-grid > [class*="col-"] {
		width: 20% !important;
		max-width: 20% !important;
		flex: 0 0 20% !important;
	}
}

/* Extra large devices (large desktops, 1200px and up) - 6 cards per row */
@media (min-width: 1200px) and (max-width: 1399.98px) {
	.movies-grid > [class*="col-"] {
		width: 16.666667% !important;
		max-width: 16.666667% !important;
		flex: 0 0 16.666667% !important;
	}
}

/* Extra extra large devices (1400px and up) - 7 cards per row */
@media (min-width: 1400px) {
	.movies-grid > [class*="col-"] {
		width: 14.285714% !important;
		max-width: 14.285714% !important;
		flex: 0 0 14.285714% !important;
	}
}

/* Latest Section */
.latest-section {
	background: #0a0a0a;
}

.latest-section .movies-grid {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}

.latest-section .movies-grid > div[class*="col-"] {
	padding: 0 10px;
	margin-bottom: 20px;
}

/* Modern Modal */
.modern-modal .modal-content {
	background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.modern-modal .modal-body {
	position: relative;
	text-align: center;
}

.modern-modal .close {
	position: absolute;
	top: -20px;
	right: -20px;
	width: 40px;
	height: 40px;
	background: #e50914;
	border-radius: 50%;
	border: none;
	color: #ffffff;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	opacity: 1;
}

.modern-modal .close:hover {
	transform: scale(1.1);
	background: #ff1f29;
}

.modal-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #e50914 0%, #b20710 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 40px;
	color: #ffffff;
}

.modal-title {
	font-size: 24px;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 15px;
}

.modal-text {
	color: #b3b3b3;
	line-height: 1.8;
	margin-bottom: 25px;
}

.modal-link {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 25px;
}

.modal-link h6 {
	color: #e50914;
	font-weight: 600;
	margin-bottom: 10px;
}

.modal-link a {
	color: #00bcd4;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

.modal-link a:hover {
	color: #00e8ff;
}

.modal-footer-text {
	color: #ffffff;
	font-size: 20px;
	font-weight: 600;
	margin: 0;
}

/* ToTop Button */
.modern-totop {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: #e50914;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 20px;
	text-decoration: none;
	box-shadow: 0 5px 20px rgba(229, 9, 20, 0.4);
	transition: all 0.3s ease;
	z-index: 1000;
}

.modern-totop:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(229, 9, 20, 0.6);
	color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1200px) {
	.hero-title {
		font-size: 3rem;
	}
	
	.content-swiper {
		padding: 0 50px;
	}
}

@media (max-width: 992px) {
	.hero-title {
		font-size: 2.5rem;
	}
	
	.hero-description {
		font-size: 16px;
	}
	
	.hero-poster {
		margin-top: 30px;
	}
	
	.hero-poster img {
		max-width: 300px;
	}
	
	.section-title {
		font-size: 28px;
	}
	
	.content-swiper {
		padding: 0 40px;
	}
}

@media (max-width: 768px) {
	.hero-slider-section {
		height: auto;
		min-height: 500px;
	}
	
	.hero-title {
		font-size: 2rem;
	}
	
	.hero-description {
		font-size: 14px;
		margin-bottom: 20px;
	}
	
	.btn {
		padding: 12px 25px;
		font-size: 14px;
	}
	
	.hero-poster img {
		max-width: 250px;
	}
	
	.hero-nav-prev,
	.hero-nav-next {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}
	
	.hero-nav-prev {
		left: 15px;
	}
	
	.hero-nav-next {
		right: 15px;
	}
	
	.search-input {
		padding: 15px 50px 15px 50px;
		font-size: 14px;
	}
	
	.search-btn {
		padding: 12px 25px;
		font-size: 14px;
	}
	
	.section-title {
		font-size: 24px;
	}
	
	.stats-grid {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
		gap: 15px;
	}
	
	.stat-card {
		padding: 20px;
		flex-direction: column;
		text-align: center;
	}
	
	.stat-icon {
		width: 50px;
		height: 50px;
		font-size: 24px;
	}
	
	.stat-info h3 {
		font-size: 24px;
	}
	
	.content-swiper {
		padding: 0 30px;
	}
	
	.content-prev,
	.content-next {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}
	
	.modern-tabs {
		padding: 8px;
	}
	
	.modern-tabs .nav-link {
		padding: 12px 15px;
		font-size: 14px;
	}
}

@media (max-width: 576px) {
	.hero-title {
		font-size: 1.5rem;
	}
	
	.hero-meta {
		gap: 8px;
	}
	
	.quality-badge,
	.rating-badge,
	.year-badge {
		padding: 5px 10px;
		font-size: 11px;
	}
	
	.hero-actions {
		flex-direction: column;
	}
	
	.btn {
		width: 100%;
		justify-content: center;
	}
	
	.hero-poster {
		padding: 10px;
	}
	
	.hero-poster img {
		max-width: 200px;
	}
	
	.search-input-wrapper {
		flex-direction: column;
		border-radius: 15px;
	}
	
	.search-input {
		padding: 15px 20px;
	}
	
	.search-icon {
		display: none;
	}
	
	.search-btn {
		width: 100%;
		border-radius: 10px;
	}
	
	.section-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}
	
	.section-title {
		font-size: 20px;
	}
	
	.stats-grid {
		grid-template-columns: 1fr;
	}
	
	.modern-tabs {
		flex-direction: column;
	}
	
	.modern-tabs .nav-item {
		width: 100%;
	}
	
	.content-section,
	.categories-section,
	.latest-section {
		padding: 40px 0;
	}
	
	.modern-modal .modal-content {
		padding: 30px 20px;
	}
}