:root {
	--logo-red: #d32f2f;
	--logo-orange: #ff9800;
	--logo-cyan: #00e5ff;
	--logo-pink: #ff00ff;
	--chrome-silver: #bdc3c7;
	--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;
	min-h-screen;
	display: flex;
	flex-direction: column;
}

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

/* Header con estética basada en el logo */
.header-main {
	background: var(--dark-bg);
	border-bottom: 4px solid var(--logo-cyan);
	box-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
	position: relative;
	overflow: hidden;
}

/* Iluminación de Neón Intensa y Redonda */
.logo-glow-container {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2.5rem 0;
	z-index: 5;
}

.neon-aura {
	position: absolute;
	width: 320px;
	height: 320px;
	background: radial-gradient(circle, 
		rgba(0, 229, 255, 0.8) 0%, 
		rgba(255, 0, 255, 0.5) 40%, 
		rgba(211, 47, 47, 0.2) 60%,
		transparent 75%);
	filter: blur(35px);
	border-radius: 50%;
	z-index: 1;
	animation: pulse-neon-intense 3s infinite ease-in-out;
}

@keyframes pulse-neon-intense {
	0%, 100% { 
		transform: scale(1); 
		opacity: 0.7; 
		filter: blur(35px);
	}
	50% { 
		transform: scale(1.15); 
		opacity: 1; 
		filter: blur(25px);
	}
}

.logo-img {
	filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
	transition: transform 0.3s ease;
}

.logo-img:hover {
	transform: scale(1.05);
}

@keyframes scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

.carousel-container {
	overflow: hidden;
	white-space: nowrap;
	display: flex;
	align-items: center;
	mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
	z-index: 10;
}

.carousel-track {
	display: flex;
	gap: 2.5rem;
	animation: scroll 25s linear infinite;
	width: max-content;
}

.brand-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.5);
	font-family: 'Oswald', sans-serif;
	font-size: 1.3rem;
	font-weight: bold;
	letter-spacing: 2px;
	transition: all 0.3s;
}

.brand-item:hover {
	color: var(--logo-cyan);
	text-shadow: 0 0 15px var(--logo-cyan), 0 0 30px var(--logo-pink);
	transform: translateY(-2px);
}

.header-grid {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 1.5rem;
	width: 100%;
	position: relative;
}

@media (max-width: 1024px) {
	.header-grid {
		grid-template-columns: 1fr;
	}
	.carousel-side { display: none; }
}

.nav-link {
	color: white;
	transition: all 0.3s ease;
	position: relative;
	z-index: 20;
	font-weight: 600;
}

.nav-link:hover {
	color: var(--logo-cyan);
	text-shadow: 0 0 12px var(--logo-cyan);
}

.toy-card {
	background: white;
	border: 1px solid var(--chrome-silver);
	border-radius: 8px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
}

.toy-card:hover {
	transform: scale(1.03);
	border-color: var(--logo-orange);
	box-shadow: 0 15px 35px rgba(211, 47, 47, 0.15);
}

.price-badge {
	background: linear-gradient(135deg, var(--logo-red), var(--logo-orange));
	color: white;
	padding: 4px 12px;
	font-family: 'Special Elite', cursive;
	clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.btn-action {
	background: var(--dark-bg);
	color: var(--logo-cyan);
	border: 1px solid var(--logo-cyan);
	padding: 8px 20px;
	font-size: 0.85rem;
	font-weight: bold;
	letter-spacing: 1px;
	transition: all 0.3s;
}

.btn-action:hover {
	background: var(--logo-cyan);
	color: black;
	box-shadow: 0 0 20px var(--logo-cyan);
}

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