@font-face {
  font-family: 'Dogica-Pixel';
    src:  url('fonts/Dogica-Pixel.ttf.woff') format('woff'),
    url('fonts/dogica-pixel.ttf.svg#Dogica-Pixel') format('svg'),
    url('fonts/dogica-pixel.ttf.eot'),
    url('fonts/dogica-pixel.ttf.woff') format('embedded-opentype'); 
    font-weight: normal;
    font-style: normal;
}
body {
	margin: 0; 
	padding: 0;
	background: #021514;   
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-color: #8A2BE2;
	--secondary-color: #4B0082;
	--accent-color: #FF1493;
	--bg-dark: #1a0f1a;
	--bg-darker: #0f0a0f;
	--text-light: #f5f5f5;
	--text-glow: #61dafb;
	--gradient-primary: linear-gradient(135deg, #8A2BE2, #61dafb, #FF1493);
	--gradient-dark: linear-gradient(180deg, rgba(26,15,26,0.9), rgba(15,10,15,0.7));
}

body {
	font-family: 'Cormorant Garamond', serif;
	background-color: var(--bg-dark);
	background-image: 
		radial-gradient(circle at 20% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(97, 218, 251, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 40% 80%, rgba(255, 20, 147, 0.1) 0%, transparent 50%);
	color: var(--text-light);
	/* overflow-x: hidden; */
	line-height: 1.6;
	scroll-behavior: smooth;
}

/* Heading Styles - All headings use Dogica-Pixel font */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Dogica-Pixel', 'Cinzel', serif;
	font-weight: 400;
	text-shadow: 0 0 10px rgba(138, 43, 226, 0.4);
}

/* Parallax Container */
.parallax-container {
	min-height: 100vh !important;
	overflow-x: hidden;
	overflow-y: auto;
	perspective: 1px;
}

/* Glowing Text Effects */
.glow-text {
	text-shadow: 0 0 15px var(--text-glow), 0 0 25px var(--text-glow), 0 0 35px rgba(97, 218, 251, 0.5);
}

.neon-border {
	border: 2px solid var(--primary-color);
	box-shadow: 0 0 15px rgba(138, 43, 226, 0.6), inset 0 0 15px rgba(138, 43, 226, 0.1);
}

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 1rem 0;
	transition: all 0.3s ease;
	height: 100px;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 2rem;
}

.logo {
	font-family: 'Cinzel', serif;
	font-size: 1.8rem;
	font-weight: 700;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-links a {
	color: var(--text-light);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
	font-family: 'Dogica-Pixel', 'Cinzel', serif;
	text-transform: uppercase;
}

.nav-links a:hover {
	color: var(--primary-color);
	text-shadow: 0 0 10px var(--primary-color);
}

/* Burger Menu */
.burger-menu {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 8px;
	z-index: 1001;
}

.burger-menu span {
	width: 25px;
	height: 3px;
	background: var(--text-light);
	margin: 3px 0;
	transition: all 0.3s ease;
	border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
	opacity: 0;
}

.burger-menu.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
	.nav-container {
		padding: 0 1rem;
	}
	
	.burger-menu {
		display: flex;
	}
	
	.nav-links {
		position: fixed;
		top: 100px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 100px);
		background: rgba(0, 0, 0, 0.95);
		backdrop-filter: blur(10px);
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		gap: 1rem;
		padding-top: 3rem;
		transition: left 0.3s ease;
		z-index: 999;
		list-style: none;
		margin: 0;
		padding-left: 0;
	}
	
	.nav-links.active {
		left: 0;
		display: flex;
	}
	
	.nav-links li {
		width: 80%;
	}
	
	.nav-links a {
		font-size: 1.4rem;
		padding: 1.5rem 2rem;
		border-bottom: 1px solid rgba(138, 43, 226, 0.3);
		width: 100%;
		text-align: center;
		display: block;
		color: var(--text-light);
		text-decoration: none;
		transition: all 0.3s ease;
		border-radius: 10px;
		margin-bottom: 0.5rem;
	}
	
	.nav-links a:hover {
		background: rgba(138, 43, 226, 0.3);
		border-color: rgba(138, 43, 226, 0.8);
		color: var(--primary-color);
		text-shadow: 0 0 10px var(--primary-color);
		transform: translateY(-2px);
	}
}

/* Hero Section with Video Background */
.hero-section {
	position: relative;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.video-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
}

.video-background iframe,
.video-background video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--gradient-dark);
	z-index: -1;
}

.hero-content {
	text-align: center;
	z-index: 1;
	max-width: 800px;
	padding: 0 2rem;
}

.hero-title {
	font-family: 'Dogica-Pixel', 'Cinzel', serif;
	font-size: 4rem;
	font-weight: 700;
	margin-bottom: 1rem;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: titleGlow 3s ease-in-out infinite alternate;
	text-shadow: 0 0 30px rgba(97, 218, 251, 0.6);
}

.hero-subtitle {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.cta-button {
	display: inline-block;
	padding: 1rem 2rem;
	background: transparent;
	border: 2px solid var(--primary-color);
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.cta-button:hover {
	background: var(--primary-color);
	color: var(--bg-dark);
	box-shadow: 0 0 30px var(--primary-color);
}

.cta-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.cta-button:hover::before {
	left: 100%;
}

/* Movie Details Section */
.movie-details {
	padding: 5rem 0;
	background: linear-gradient(135deg, var(--bg-darker), var(--bg-dark));
	position: relative;
}
.milestone-details{
	padding-top:5rem;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.section-title {
	font-family: 'Dogica-Pixel', 'Cinzel', serif;
	font-size: 3rem;
	text-align: center;
	margin-bottom: 3rem;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
}

.movie-info {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 3rem;
	align-items: center;
	margin-bottom: 5rem;
}

.movie-poster {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}

.movie-poster img {
	width: 100%;
	height: auto;
	transition: transform 0.3s ease;
}

.movie-poster:hover img {
	transform: scale(1.05);
}

/* Video Overlay and Button */
.video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
	transition: opacity 0.3s ease;
	border-radius: 10px;
	pointer-events: auto;
	z-index: 10;
}

.movie-poster:hover .video-overlay {
	opacity: 1;
}

.view-video-btn {
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: var(--text-light);
	border: none;
	padding: 1rem 2rem;
	border-radius: 25px;
	font-family: 'Dogica Pixel', 'Cinzel', serif;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.view-video-btn:hover {
	transform: scale(1.05);
	box-shadow: 0 0 30px rgba(138, 43, 226, 0.6);
	background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.view-video-btn i {
	margin-right: 0.5rem;
}

.movie-poster::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--gradient-primary);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.movie-poster:hover::after {
	opacity: 0.1;
}

.movie-text h2 {
	font-family: 'Dogica-Pixel', 'Cinzel', serif;
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: var(--primary-color);
	text-shadow: 0 0 15px rgba(138, 43, 226, 0.4);
}

.movie-text p {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	opacity: 0.9;
	font-family: 'helvetica', serif;
    letter-spacing: 2px;
}

.movie-stats {
	display: flex;
	gap: 2rem;
	margin-top: 2rem;
}

.stat-item {
	text-align: center;
	padding: 1rem;
	background: rgba(97, 218, 251, 0.1);
	border-radius: 10px;
	border: 1px solid var(--primary-color);
}

.stat-value {
	font-family: 'Cinzel', serif;
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--accent-color);
	text-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

.stat-label {
	font-size: 0.9rem;
	opacity: 0.8;
}

/* Characters Carousel */
.characters-section {
	padding: 5rem 0;
	background: var(--bg-dark);
	position: relative;
}

/* Center the carousel within its container on all viewports */
.characters-section .carousel {
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
}

/* Carousel arrows wrapper and buttons */
.carousel-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.carousel-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.35);
	border: 2px solid var(--primary-color);
	color: var(--text-light);
	z-index: 5;
	box-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
	backdrop-filter: blur(4px);
}

.carousel-arrow.left { left: -28px; }
.carousel-arrow.right { right: -28px; }

.carousel-arrow:hover {
	background: linear-gradient(135deg, rgba(138,43,226,0.6), rgba(97,218,251,0.4));
	transform: translateY(-50%) scale(1.05);
}

.carousel-arrow i {
	font-size: 1.25rem;
}



/* Features Section */
.carousel-btn {
	background: transparent;
	border: 2px solid var(--primary-color);
	color: var(--primary-color);
	padding: 1rem;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 1.2rem;
}

.carousel-btn:hover {
	background: var(--primary-color);
	color: var(--bg-dark);
	box-shadow: 0 0 20px var(--primary-color);
}

/* Video Showcase Section */
.video-showcase-section {
	padding: 5rem 0;
	background: var(--bg-dark);
	position: relative;
}

.video-showcase-container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 2rem;
	margin-top: 4rem;
}

.video-showcase-wrapper {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	background: rgba(138, 43, 226, 0.05);
	backdrop-filter: blur(5px);
	border: 2px solid transparent;
	background-clip: padding-box;
	transition: all 0.3s ease;
}

.video-showcase-wrapper:hover {
	transform: translateY(-5px);
	box-shadow: 
		0 20px 40px rgba(138, 43, 226, 0.3),
		0 0 50px rgba(97, 218, 251, 0.2);
}

.video-showcase-wrapper video {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 13px;
	transition: all 0.3s ease;
}

.video-showcase-wrapper:hover video {
	filter: brightness(1.1) contrast(1.05);
}

/* Features Section */
.features-section {
	padding: 5rem 0;
	background: linear-gradient(135deg, var(--bg-dark), var(--bg-darker));
	position: relative;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.feature-card {
	background: rgba(138, 43, 226, 0.05);
	padding: 2rem;
	border-radius: 15px;
	border: 1px solid var(--primary-color);
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(5px);
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(138, 43, 226, 0.2);
}

.feature-icon {
	font-size: 3rem;
	color: var(--accent-color);
	margin-bottom: 1rem;
}

.feature-title {
	font-family: 'Dogica-Pixel', 'Cinzel', serif;
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: var(--primary-color);
	text-shadow: 0 0 10px rgba(138, 43, 226, 0.4);
}

.feature-description {
	opacity: 0.8;
	line-height: 1.6;
}

/* Footer */
.footer {
	background: var(--bg-darker);
	padding: 3rem 0 1rem;
	text-align: center;
	border-top: 1px solid var(--primary-color);
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 2rem;
}

.social-links a {
	color: var(--primary-color);
	font-size: 1.5rem;
	transition: all 0.3s ease;
}

.social-links a:hover {
	color: var(--accent-color);
	text-shadow: 0 0 10px var(--accent-color);
}
/* Scroll Animations */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
	background: var(--primary-color);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--secondary-color);
}

/* Animated Starfield Background */
#starfield {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -100;
	pointer-events: none;
}

/* Video Modal Styles */
.video-modal {
	display: none;
	position: fixed;
	z-index: 2000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(10px);
	animation: fadeIn 0.3s ease-in-out;
}

/* Center the download modal without transform and disable animations */
#downloadModal {
	/* Do not force display here to allow JS to control visibility */
	align-items: center;
	justify-content: center;
	animation: none;
}

/* Visible state for download modal */
#downloadModal.open {
	display: flex;
}

.video-modal-content {
	position: relative;
	margin: 2% auto;
	padding: 0;
	width: 90%;
	max-width: 450px;
	aspect-ratio: 9/16;
	max-height: 90vh;
	background: linear-gradient(135deg, var(--bg-darker), var(--bg-dark));
	border-radius: 15px;
	border: 2px solid var(--primary-color);
	box-shadow: 0 0 40px rgba(138, 43, 226, 0.5);
	overflow: hidden;
	animation: modalSlideIn 0.4s ease-out;
	display: flex;
	flex-direction: column;
}

/* Movie Modal - Landscape 16:9 */
.movie-modal-content {
	width: 95%;
	max-width: 1200px;
	aspect-ratio: 16/9;
	max-height: 85vh;
}

.video-modal-header {
	background: var(--gradient-primary);
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid var(--primary-color);
}

.character-modal-title {
	font-family: 'Dogica-Pixel', 'Cinzel', serif;
	font-size: 0.8rem;
	color: var(--text-light);
	margin: 0;
	text-shadow: 0 0 10px rgba(138, 43, 226, 0.6);
}

.video-close {
	color: var(--text-light);
	font-size: 2rem;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	background: transparent;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.video-close:hover,
.video-close:focus {
	color: var(--accent-color);
	background: rgba(255, 20, 147, 0.2);
	text-shadow: 0 0 10px var(--accent-color);
	transform: scale(1.1);
}

.video-container {
	position: relative;
	width: 100%;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bg-dark);
	padding: 1rem;
}

/* Download/Creative Pack Modal (content sizing override) */
.download-modal-content {
	max-width: 520px;
	width: 92%;
	aspect-ratio: auto;
	max-height: 90vh;
	margin: 0 auto;
	position: relative;
	top: auto;
	left: auto;
	animation: none;
	transition: none;
}

.modal-body {
	padding: 1.5rem 1.5rem 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.modal-description {
	font-size: 1rem;
	line-height: 1.6;
	opacity: 0.9;
}

.modal-actions {
	display: flex;
	justify-content: center;
}

.download-btn {
	display: inline-block;
	min-width: 220px;
	text-align: center;
	padding: 0.9rem 1.5rem;
	border-radius: 999px;
	font-family: 'Dogica-Pixel', 'Cinzel', serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.95rem;
	color: var(--text-light);
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	border: 2px solid transparent;
	box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
	text-decoration: none;
	transition: all 0.25s ease;
}

.download-btn:hover {
	transform: translateY(-2px) scale(1.02);
	box-shadow: 0 0 30px rgba(138, 43, 226, 0.6);
	background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

@media (max-width: 768px) {
	.download-modal-content {
		width: 94% !important;
        max-width: 420px !important;
        height: 200px;
	}
}

.video-container video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(97, 218, 251, 0.3);
}

/* Modal Animations */
@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes modalSlideIn {
	from {
		opacity: 0;
		transform: translateY(-50px) scale(0.8);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* Responsive Modal */
@media (max-width: 768px) {
	.video-modal-content {
		width: 95%;
		max-width: 350px;
		margin: 5% auto;
		aspect-ratio: 9/16;
		max-height: 85vh;
	}

	.movie-modal-content {
		width: 98%;
		max-width: none;
		margin: 3% auto;
		aspect-ratio: 16/9;
		max-height: 80vh;
	}
	
	.video-modal-header {
		padding: 1rem;
	}
	
	.character-modal-title {
		font-size: 1.2rem;
	}
	
	.video-container {
		padding: 0.5rem;
	}
}
.carousel{
    min-height: 600px; 
    perspective: 400px;
	margin-top: 3rem;
	position: relative;
	overflow: visible;
	display: flex;
	align-items: center;
	justify-content: center;
}
.carousel .carousel-item {
	width: 400px;
	min-height: 500px;
	box-shadow: 0 0 40px #8A2BE2, 0 0 40px #61dafb, 0 0 40px #FF1493;
	animation: animate 2s infinite alternate;
	border-radius: 15px;
	background-color: #898989;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: all 0.3s ease;
	/* position: relative; */
	overflow: hidden;
	margin: 0 auto;
}

.carousel .carousel-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(97, 218, 251, 0.2), rgba(255, 20, 147, 0.2));
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
}

.carousel .carousel-item:hover::before {
	opacity: 1;
}

.carousel .carousel-item:hover {
	transform: scale(1.05);
	box-shadow: 0 0 60px #8A2BE2, 0 0 60px #61dafb, 0 0 60px #FF1493;
}

/* Add click indicator */
.carousel .carousel-item::after {
	content: '▶';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 3rem;
	color: var(--text-light);
	opacity: 0;
	transition: all 0.3s ease;
	z-index: 2;
	text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.carousel .carousel-item:hover::after {
	opacity: 0.9;
	transform: translate(-50%, -50%) scale(1.2);
}
.carousel .carousel-item>img {
    border-radius: 10px;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	z-index: 1;
}

@keyframes animate {
    0% {
      box-shadow: 0 0 40px #8A2BE2, 0 0 40px #61dafb, 0 0 40px #FF1493;
    }
    50% {
      box-shadow: 0 0 60px #4B0082, 0 0 60px #00BFFF, 0 0 60px #FF69B4;
    }
    100% {
      box-shadow: 0 0 50px #9932CC, 0 0 50px #87CEEB, 0 0 50px #DA70D6;
    }
  }
/* Animations */
@keyframes titleGlow {
	0% { filter: drop-shadow(0 0 15px var(--primary-color)); }
	100% { filter: drop-shadow(0 0 25px var(--secondary-color)); }
}

@keyframes float {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-20px); }
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero-section {
		min-height: 100vh;
		height: auto;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.2rem;
	}

	.movie-info {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.movie-stats {
		justify-content: center;
		flex-wrap: wrap;
	}

	.view-video-btn {
		padding: 0.8rem 1.5rem;
		font-size: 0.9rem;
	}

	.video-overlay {
		opacity: 1;
		background: rgba(0, 0, 0, 0.5);
	}

	.carousel {
		min-height: auto;
		margin-top: 2rem;
		padding: 0 2rem;
		perspective: 300px;
		width: 100%;
		overflow: hidden;
	}

	/* Mobile: Hide side items and show only active item */
	.carousel .carousel-item {
		width: 100%;
		max-width: 280px;
		min-height: 350px;
		margin: 0 auto;
		display: flex !important;
		justify-content: center;
		align-items: center;
	}
	
	/* Ensure carousel wrapper centers content on mobile */
	.carousel-wrapper {
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		width: 100%;
		max-width: 320px;
		margin: 0 auto;
	}

	/* Adjust arrows for mobile */
	.carousel-arrow.left { 
		left: -15px; 
		z-index: 10;
		position: absolute;
	}
	
	.carousel-arrow.right { 
		right: -15px; 
		z-index: 10;
		position: absolute;
	}

	.carousel-arrow {
		width: 44px;
		height: 44px;
		background: rgba(0, 0, 0, 0.8);
		border: 2px solid var(--primary-color);
		top: 50%;
		transform: translateY(-50%);
	}
	
	/* Make sure carousel images fill the container properly */
	.carousel .carousel-item img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		border-radius: 8px;
	}

	.carousel .carousel-item>img {
		border-radius: 8px;
	}

	.characters-section {
		padding: 3rem 0;
	}

	.section-title {
		font-size: 2rem;
		margin-bottom: 2rem;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	/* Reduce section padding on mobile */
	.movie-details,
	.characters-section,
	.video-showcase-section,
	.features-section {
		padding: 3rem 0;
	}
	
	.video-showcase-container {
		padding: 0 1rem;
	}
	
	.video-showcase-wrapper {
		border-radius: 10px;
	}
	
	.video-showcase-wrapper video {
		border-radius: 8px;
	}
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
	.characters-section {
		padding: 2rem 0;
	}
	
	.video-showcase-section {
		padding: 2rem 0;
	}
	
	.video-showcase-container {
		padding: 0 0.5rem;
	}

	.section-title {
		font-size: 1.8rem;
		margin-bottom: 1.5rem;
		padding: 0 1rem;
	}

	.carousel {
		margin-top: 1.5rem;
		padding: 0 0.5rem;
		min-height: auto;
		perspective: 250px;
	}

	.carousel .carousel-item {
		width: 250px;
		min-height: 320px;
		animation: none;
	}

	.carousel .carousel-item>img {
		border-radius: 6px;
	}

	.container {
		padding: 0 1rem;
	}

	.movie-modal-content {
		width: 99%;
		margin: 2% auto;
		aspect-ratio: 16/9;
		max-height: 75vh;
	}

	/* Adjust carousel animations for smaller screens */
	.carousel .carousel-item:hover {
		transform: scale(1.02);
	}
}

/* Large tablets and small desktops */
@media (max-width: 1024px) and (min-width: 769px) {
	.carousel .carousel-item {
		width: 350px;
		min-height: 450px;
	}

	.characters-section {
		padding: 4rem 0;
	}
}


