:root {
	--logo-red: #d32f2f;
	--logo-orange: #ff9800;
	--logo-cyan: #00e5ff;
	--logo-pink: #ff00ff;
	--dark-bg: #0a0a0c;
}

body {
	background-color: #f0f2f5;
	background-image: radial-gradient(circle at 50% 50%, #ffffff 0%, #e5e7eb 100%);
	font-family: 'Roboto', sans-serif;
	color: #1a1a1a;
	overflow-x: hidden;
}

.vintage-font { font-family: 'Oswald', sans-serif; text-transform: uppercase; }

.header-mini {
	background: var(--dark-bg);
	border-bottom: 4px solid var(--logo-pink);
	box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
}

.neon-text-cyan {
	color: var(--logo-cyan);
	text-shadow: 0 0 10px var(--logo-cyan);
}

/* Contenedor del Carrusel */
.swiper {
	width: 100%;
	padding-top: 60px;
	padding-bottom: 100px;
}

.swiper-slide {
	background-position: center;
	background-size: cover;
	width: 320px !important; /* Ancho base para móviles */
	height: auto;
	filter: blur(1px) grayscale(20%);
	transition: all 0.5s ease;
}

@media (min-width: 768px) {
	.swiper-slide {
		width: 550px !important; /* Ancho para escritorio */
	}
}

.swiper-slide-active {
	filter: blur(0) grayscale(0);
}

/* Estilo del Cuadro Físico */
.poster-card {
	background: white;
	border-radius: 2px;
	box-shadow: 0 30px 60px rgba(0,0,0,0.4);
	border: 12px solid #111; /* Marco negro elegante */
	outline: 1px solid #333;
	overflow: hidden;
	width: 100%;
	transition: transform 0.3s ease;
}

.canvas-frame {
	position: relative;
	background: #000;
	height: 400px;
	overflow: hidden;
}

@media (min-width: 768px) {
	.canvas-frame {
		height: 650px;
	}
}

.canvas-frame img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	transition: transform 0.8s ease;
}

.swiper-slide-active .canvas-frame img {
	transform: scale(1.05);
}

.btn-custom {
	background: var(--dark-bg);
	color: white;
	border: 1px solid var(--logo-pink);
	transition: all 0.3s;
}

.btn-custom:hover {
	background: var(--logo-pink);
	box-shadow: 0 0 15px var(--logo-pink);
}

.badge-new {
	background: linear-gradient(90deg, var(--logo-cyan), var(--logo-pink));
	color: white;
	padding: 4px 12px;
	font-size: 0.7rem;
	font-weight: bold;
	border-radius: 4px;
	letter-spacing: 1px;
}

/* Navegación Personalizada */
.swiper-button-next, .swiper-button-prev {
	color: white;
	background: var(--dark-bg);
	width: 45px;
	height: 45px;
	border-radius: 50%;
	border: 2px solid var(--logo-cyan);
	transition: all 0.3s;
}

.swiper-button-next:after, .swiper-button-prev:after {
	font-size: 18px;
	font-weight: bold;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
	background: var(--logo-cyan);
	color: black;
}

.swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: #ccc;
	opacity: 1;
}

.swiper-pagination-bullet-active {
	background: var(--logo-pink);
	width: 30px;
	border-radius: 10px;
}

/* Overlay de información en hover */
.info-overlay {
	background: white;
	transform: translateY(0);
	transition: all 0.4s ease;
}

.footer {
	background: var(--dark-bg);
	border-top: 5px solid var(--logo-red);
}