:root {
	--primary: #F29F05;
	--primary-hover: #E69504;
	--bg: #FFFBEB;
	--surface: #FFFFFF;
	--text: #3D221F;
	--text-light: #512E24;
	--shadow: rgba(0, 0, 0, 0.1);
	--border: #DDCBB8;
	--nav-bg: rgba(255, 255, 255, 0.95);
}

* {
	box-sizing: border-box;
	scroll-behavior: smooth;
}

body {
	background-color: var(--bg);
	color: var(--text);
	font-family: 'Inter', sans-serif;
	margin: 0;
	line-height: 1.6;
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: auto;
	padding: 0 20px;
}

/* --- Sticky Navbar --- */
.navbar {
	position: fixed;
	top: -100px;
	left: 0;
	width: 100%;
	background: var(--nav-bg);
	backdrop-filter: blur(15px);
	z-index: 1000;
	box-shadow: 0 2px 20px var(--shadow);
	transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border-bottom: 1px solid var(--border);
}

.navbar.sticky {
	top: 0;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--text);
	font-weight: 900;
	font-size: 1.2rem;
	letter-spacing: -0.5px;
}

.nav-logo span {
	color: var(--primary);
}

.nav-links {
	display: flex;
	gap: 30px;
}

.nav-links a {
	text-decoration: none;
	color: var(--text-light);
	font-weight: 700;
	font-size: 0.9rem;
	text-transform: uppercase;
	transition: color 0.3s;
	position: relative;
}

.nav-links a:hover,
.nav-links a.active {
	color: var(--primary);
}

.nav-links a.active::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--primary);
	border-radius: 2px;
}

/* --- Mobile Menu Toggle --- */
.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	z-index: 1001;
}

.menu-toggle.active span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

.menu-toggle span {
	width: 30px;
	height: 3px;
	background: var(--text);
	border-radius: 3px;
	transition: 0.3s;
}

@media (max-width: 1024px) {
	.nav-links {
		display: none;
	}

	.menu-toggle {
		display: flex;
	}
}

/* --- Header --- */
.hero {
	position: relative;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 21 / 9;
	min-height: 230px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #000;
}

@media (max-width: 768px) {
	section.reveal-animation {
		opacity: 1 !important;
		transform: none !important;
	}
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #000;
	z-index: 1;
}

.heroSlider {
	width: 100%;
	height: 100%;
}

.heroSlider .swiper-slide {
	overflow: hidden;
	background: #000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-slide-img {
	width: 100%;
	height: 100%;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transition: transform 8000ms ease;
	transform: scale(1);
}

.swiper-slide-active .hero-slide-img {
	animation: heroZoom 10s infinite alternate ease-in-out;
}

@keyframes heroZoom {
	from {
		transform: scale(1);
	}

	to {
		transform: scale(1.1);
	}
}

.hero-nav {
	color: var(--primary) !important;
}

.hero-nav.swiper-button-prev {
	left: 80px !important;
}

.hero-nav.swiper-button-next {
	right: 80px !important;
}

.hero-dots .swiper-pagination-bullet {
	background: #fff !important;
	opacity: 0.5;
}

.hero-dots .swiper-pagination-bullet-active {
	background: var(--primary) !important;
	opacity: 1;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, transparent 60%, var(--bg) 100%);
	z-index: 2;
	pointer-events: none;
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 800px;
	padding: 50px;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	border-radius: 40px;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.4);
	transform: translateY(30px);
	opacity: 0;
	animation: fadeInUp 1s forwards cubic-bezier(0.23, 1, 0.32, 1);
}

/* --- Sections & Animations --- */
section {
	padding: 20px 0;
	scroll-margin-top: 80px;
	opacity: 1;
	/* Default to visible */
	transform: translateY(0);
	transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

section.reveal-animation {
	opacity: 0;
	transform: translateY(40px);
}

section.revealed {
	opacity: 1;
	transform: translateY(0);
}

h2 {
	color: var(--primary);
	font-size: 2.2rem;
	margin-top: 0;
	margin-bottom: 40px;
	border-bottom: 3px solid var(--border);
	padding-bottom: 15px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: inline-block;
}

/* --- Media Elements --- */
.video-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 25px;
}

.video-card {
	background: var(--surface);
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--border);
	box-shadow: 0 8px 25px var(--shadow);
	transition: all 0.4s ease;
}

.video-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(242, 159, 5, 0.2);
}

.video-card iframe {
	width: 100%;
	aspect-ratio: 16/9;
	border: none;
}

.video-info {
	padding: 5px 20px 10px 20px;
}

.video-info h3 {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 800;
}

/* --- Cast & Crew --- */
.cast-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 25px;
}

.cast-card {
	background: var(--surface);
	border-radius: 18px;
	padding: 25px;
	text-align: center;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border: 1px solid var(--border);
	box-shadow: 0 6px 15px var(--shadow);
}

.cast-card:hover {
	transform: scale(1.05);
	border-color: var(--primary);
	box-shadow: 0 12px 35px rgba(242, 159, 5, 0.25);
}

.cast-thumb {
	width: 100%;
	height: auto;
	aspect-ratio: 3/4;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 15px;
	background: #eee;
}

.cast-card h3 {
	color: var(--primary);
	margin: 10px 0 5px;
	font-size: 1.2rem;
	font-weight: 800;
	margin: 0px;
	padding: 0px;

}

.cast-card p {
	padding: 0px;
	margin: 0px;
}

.crew-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.crew-item {
	background: var(--surface);
	padding: 25px;
	border-radius: 16px;
	border: 1px solid var(--border);
	box-shadow: 0 5px 15px var(--shadow);
}

.crew-item span {
	color: var(--primary);
	text-transform: uppercase;
	font-size: 0.8rem;
	display: block;
	letter-spacing: 2.5px;
	font-weight: 800;
	margin-bottom: 8px;
}

/* --- News Grid --- */
.news-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 25px;
}

.news-item {
	background: var(--surface);
	padding: 30px;
	border-radius: 18px;
	border: 1px solid var(--border);
	box-shadow: 0 5px 20px var(--shadow);
	border-left: 6px solid var(--primary);
	transition: all 0.4s ease;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-decoration: none;
	color: inherit;
}

.news-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(242, 159, 5, 0.2);
}

.tag {
	background: var(--primary);
	color: #FFF;
	padding: 5px 15px;
	border-radius: 25px;
	font-weight: 800;
	font-size: 0.7rem;
	text-transform: uppercase;
	align-self: flex-start;
	margin-bottom: 15px;
}

/* --- Instagram Reels --- */

#insta-reels h2 {
	margin-bottom: 30px;
}

.reels-carousel {
	padding: 20px 0 60px;
}

.reel-card {
	background: var(--surface);
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid var(--border);
	box-shadow: 0 8px 25px var(--shadow);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reel-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 15px 40px rgba(242, 159, 5, 0.25);
	border-color: var(--primary);
}

.reel-media {
	aspect-ratio: 9/16;
	background: #000;
	position: relative;
	overflow: hidden;
}

.reel-media iframe {
	width: 100%;
	height: 100%;
	border: none;
}

.reel-info {
	padding: 15px 20px;
	text-align: center;
}

.reel-info h3 {
	margin: 0;
	font-size: 1rem;
	font-weight: 800;
	color: var(--text);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

#insta-reels .swiper-button-next,
#insta-reels .swiper-button-prev {
	color: var(--primary);
	background: var(--surface);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	box-shadow: 0 5px 15px var(--shadow);
	border: 1px solid var(--border);
}

#insta-reels .swiper-button-next::after,
#insta-reels .swiper-button-prev::after {
	font-size: 1.2rem;
	font-weight: 900;
}

#insta-reels .swiper-pagination-bullet {
	background: var(--text-light);
	opacity: 0.3;
}

#insta-reels .swiper-pagination-bullet-active {
	background: var(--primary);
	opacity: 1;
	width: 25px;
	border-radius: 5px;
}

/* --- Gallery & Lightbox --- */
.slideshow-container {
	position: relative;
	overflow: hidden;
	border-radius: 24px;
	background: #000;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.slides-wrapper {
	display: flex;
	transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
	height: 600px;
}

.slide {
	min-width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	cursor: zoom-in;
	padding: 0;
	/* Removed padding to allow image to fill more */
}

.slide figure {
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
	position: relative;
	overflow: hidden;
}

.slide picture {
	display: contents;
}

.slide img {
	max-width: 95%;
	max-height: 95%;
	width: auto;
	height: auto;
	object-fit: contain;
	/* Ensures the full image is visible with letterboxing if needed */
	transition: transform 0.5s ease;
}

.slide figcaption {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	color: #fff;
	padding: 40px 20px 20px;
	font-size: 1rem;
	font-weight: 600;
	text-align: center;
	opacity: 0.9;
	transition: opacity 0.3s ease;
}

.slide:hover figcaption {
	opacity: 1;
}

/* CENTERED NAVIGATION BUTTONS */
.nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	padding: 20px 15px;
	font-size: 24px;
	cursor: pointer;
	transition: 0.3s;
	backdrop-filter: blur(10px);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.prev {
	left: 20px;
}

.next {
	right: 20px;
}

.nav-btn:hover {
	background: var(--primary);
	border-color: var(--primary);
}

.dot-container .dot.active {
	background-color: var(--primary);
	width: 30px;
	border-radius: 5px;
}

.lightbox {
	display: none;
	position: fixed;
	z-index: 2000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.98);
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(10px);
}

.lightbox-content {
	max-width: 90%;
	max-height: 85%;
	border-radius: 12px;
	box-shadow: 0 0 50px rgba(242, 159, 5, 0.4);
	border: 2px solid rgba(255, 255, 255, 0.1);
}

.close-btn {
	position: absolute;
	top: 30px;
	right: 40px;
	background: none;
	border: none;
	color: #fff;
	font-size: 50px;
	cursor: pointer;
	line-height: 1;
	z-index: 2011;
}

.lightbox-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	font-size: 30px;
	padding: 20px;
	cursor: pointer;
	border-radius: 50%;
	transition: all 0.3s ease;
	z-index: 2010;
	backdrop-filter: blur(5px);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
}

.lightbox-btn:hover {
	background: var(--primary);
	border-color: var(--primary);
	transform: translateY(-50%) scale(1.1);
}

.lightbox-btn.prev {
	left: 40px;
}

.lightbox-btn.next {
	right: 40px;
}

@media (max-width: 768px) {
	.lightbox-btn {
		width: 50px;
		height: 50px;
		font-size: 20px;
		padding: 0;
	}

	.lightbox-btn.prev {
		left: 10px;
	}

	.lightbox-btn.next {
		right: 10px;
	}

	.close-btn {
		top: 20px;
		right: 20px;
		font-size: 40px;
	}
}

/* --- Press Archive --- */
.tabs-nav {
	display: flex;
	gap: 12px;
	margin-bottom: 35px;
	overflow-x: auto;
	padding: 8px 4px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	/* Hide scrollbar for clean look */
}

.tabs-nav::-webkit-scrollbar {
	display: none;
}

.tab-btn {
	background: var(--surface);
	border: 1.5px solid var(--border);
	padding: 12px 24px;
	border-radius: 50px;
	cursor: pointer;
	font-weight: 700;
	white-space: nowrap;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	color: var(--text-light);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
	font-size: 0.95rem;
}

.tab-btn.active {
	background: var(--primary);
	color: #fff;
	border-color: var(--primary);
	box-shadow: 0 8px 20px rgba(242, 159, 5, 0.3);
	transform: translateY(-2px);
}

.tab-btn:hover:not(.active) {
	border-color: var(--primary);
	color: var(--primary);
	background: rgba(242, 159, 5, 0.05);
}

.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
	animation: slideUpFade 0.5s ease forwards;
}

@keyframes slideUpFade {
	from {
		opacity: 0;
		transform: translateY(15px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.links-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 15px;
}

.press-link-card {
	background: var(--surface);
	border: 1.5px solid var(--border);
	padding: 10px 24px;
	border-radius: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	text-decoration: none;
	color: var(--text);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
}

.press-link-card:hover {
	transform: translateY(-8px) scale(1.02);
	border-color: var(--primary);
	box-shadow: 0 15px 45px rgba(242, 159, 5, 0.12);
}

.press-link-card:hover::before {
	opacity: 1;
}

.link-data {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.article-title {
	font-weight: 800;
	font-size: 1.2rem;
	color: var(--text);
	line-height: 1.4;
}

.pub-name {
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--text-light);
	text-transform: uppercase;
	letter-spacing: 1px;
	opacity: 0.7;
	display: inline-block;
	margin-left: 8px;
}

.visit-label {
	font-weight: 800;
	color: var(--text-light);
	font-size: 0.9rem;
	white-space: nowrap;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	padding: 8px 16px;
	border-radius: 12px;
	background: rgba(0, 0, 0, 0.04);
}

.visit-label::after {
	content: '→';
	margin-left: 8px;
	transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	font-size: 1.1rem;
}

.press-link-card:hover .visit-label {
	color: var(--primary);
	background: rgba(242, 159, 5, 0.1);
}

.press-link-card:hover .visit-label::after {
	transform: translateX(5px);
}

/* --- Animations --- */
@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes kenBurns {
	from {
		transform: scale(1.0);
	}

	to {
		transform: scale(1.15);
	}
}

/* Mobile Overrides */
@media (max-width: 768px) {
	.nav-links {
		display: none;
	}

	h2 {
		font-size: 1.8rem;
	}

	.hero-content {
		padding: 30px;
		border-radius: 20px;
	}

	.slides-wrapper {
		height: 400px;
	}
	.hero-dots {
		bottom: 0px !important;
	}
}

/* --- Footer --- */
footer {
	text-align: center;
	padding: 40px 20px;
	background: var(--surface);
	border-top: 1px solid var(--border);
	margin-top: 100px;
}

footer p {
	color: var(--text-light);
	font-weight: 500;
	margin: 5px 0;
}

/* --- Bottom UI Components --- */
#backToTop {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: var(--primary);
	color: #fff;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 25px rgba(242, 159, 5, 0.4);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease;
}

#backToTop.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

#backToTop:hover {
	background: var(--primary-hover);
	transform: scale(1.1);
}

.social-share {
	position: fixed;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 15px;
	z-index: 999;
}

.share-btn {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: var(--surface);
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px var(--shadow);
	text-decoration: none;
	color: var(--text);
}

.share-btn[title="Share on WhatsApp"]:hover {
	border-color: #25D366;
	color: #25D366;
}

.share-btn[title="Share on X"]:hover {
	border-color: #000;
	color: #000;
}

.share-btn[title="Share on Facebook"]:hover {
	border-color: #1877F2;
	color: #1877F2;
}

/* Final Production Mobile Overrides */
@media (max-width: 992px) {
	.nav-links {
		position: fixed;
		top: 0;
		right: -100%;
		width: 280px;
		height: 100vh;
		background: var(--surface);
		flex-direction: column !important;
		display: flex !important;
		padding: 100px 40px 60px;
		transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
		z-index: 2000;
		gap: 25px;
		overflow-y: auto;
		overscroll-behavior: contain;
		will-change: transform;
		-webkit-overflow-scrolling: touch;
	}

	.nav-links::-webkit-scrollbar {
		width: 5px;
	}

	.nav-links::-webkit-scrollbar-thumb {
		background: var(--primary);
		border-radius: 10px;
	}

	.nav-links.active {
		right: 0 !important;
	}

	.nav-links a {
		font-size: 1.1rem;
		display: block;
	}

	.tab-content.active {
		display: block !important;
		opacity: 1 !important;
	}

	.hero-content {
		opacity: 1 !important;
		transform: none !important;
		animation: none !important;
	}

	section.reveal-animation {
		opacity: 1 !important;
		transform: none !important;
		visibility: visible !important;
	}

	.cast-grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 15px;
		margin-bottom: 30px;
	}

	.news-grid,
	.video-grid,
	.links-grid {
		grid-template-columns: 1fr !important;
	}

	.tabs-nav {
		display: flex !important;
		overflow-x: auto;
		padding-bottom: 15px;
		margin-bottom: 20px;
		justify-content: flex-start;
		gap: 10px;
		-webkit-overflow-scrolling: touch;
	}

	/* Orientation-based Social Share Positioning */
	@media (orientation: portrait) {
		.social-share {
			left: 0;
			top: auto;
			bottom: 0;
			width: 100%;
			flex-direction: row;
			justify-content: center;
			background: var(--nav-bg);
			backdrop-filter: blur(10px);
			padding: 12px 10px;
			border-top: 1px solid var(--border);
			transform: none;
			gap: 20px;
			z-index: 2001;
		}

		.share-btn {
			width: 44px;
			height: 44px;
		}
	}

	@media (orientation: landscape) {
		.social-share {
			left: 20px;
			top: 50%;
			bottom: auto;
			width: auto;
			flex-direction: column;
			justify-content: center;
			background: none;
			backdrop-filter: none;
			padding: 0;
			border-top: none;
			transform: translateY(-50%);
			gap: 15px;
			z-index: 2001;
		}

		.share-btn {
			width: 45px;
			height: 45px;
			background: var(--surface);
			border: 1px solid var(--border);
			color: var(--text);
			box-shadow: 0 5px 15px var(--shadow);
		}
	}

	h2 {
		display: block;
		text-align: center;
		font-size: 1.8rem;
		margin-bottom: 30px;
	}

	.cast-grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 12px;
		padding: 0 5px;
	}

	.cast-card {
		padding: 15px 10px;
	}

	.cast-card h3 {
		font-size: 1.1rem;
	}

	.cast-card p {
		font-size: 0.9rem;
	}
}

#backToTop {
	bottom: 85px;
	right: 15px;
	width: 45px;
	height: 45px;
	z-index: 2002;
}

@media (max-width: 480px) {
	.hero-bg {
		background-position: center;
	}

	.hero-content {
		padding: 25px;
		max-width: 90%;
	}

	.cast-grid {
		grid-template-columns: 1fr !important;
	}

	h1 {
		font-size: 1.8rem !important;
	}

	/* Hero Mobile Layout Fixes */
	.hero-nav.swiper-button-prev {
		left: 15px !important;
	}

	.hero-nav.swiper-button-next {
		right: 15px !important;
	}

	.hero-dots {
		bottom: 0px !important;
	}

	.hero-dots .swiper-pagination-bullet {
		width: 8px !important;
		height: 8px !important;
	}

	.hero-dots .swiper-pagination-bullet-active {
		width: 20px !important;
	}
}

/* --- Breadcrumbs --- */
.breadcrumb-container {
	padding: 15px 0;
	margin-top: 20px;
}

.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
	list-style: none;
	align-items: center;
	font-size: 0.9rem;
}

.breadcrumb-item {
	display: flex;
	align-items: center;
	color: var(--text-light);
}

.breadcrumb-item a {
	color: var(--text-light);
	text-decoration: none;
	transition: color 0.3s;
	font-weight: 500;
}

.breadcrumb-item a:hover {
	color: var(--primary);
	text-decoration: underline;
}

.breadcrumb-item.active {
	color: var(--text);
	font-weight: 700;
}

.breadcrumb-item+.breadcrumb-item::before {
	content: ">";
	display: inline-block;
	padding: 0 8px;
	color: var(--border);
	font-size: 0.8em;
}

.hero-tinga-btn {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	background: #00bcd4;
	color: white;
	padding: 14px 35px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 900;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	text-transform: uppercase;
	letter-spacing: 1px;
	display: flex;
	align-items: center;
	gap: 12px;
	white-space: nowrap;
	transition: all 0.3s ease;
}

.hero-tinga-btn:hover {
	transform: translateX(-50%) translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 188, 212, 0.4);
}

@media (max-width: 768px) {
	.hero-tinga-btn {
		bottom: 20px;
		padding: 8px 18px;
		font-size: 0.75rem;
		gap: 6px;
		letter-spacing: 0.5px;
	}
}