: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; }
.typewriter { font-family: 'Special Elite', cursive; }

.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 Principal Estilo Cuadro */
.story-canvas {
	background: white;
	border-radius: 2px;
	box-shadow: 0 30px 60px rgba(0,0,0,0.15);
	border: 1px solid #ddd;
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
}

.story-header-image {
	width: 100%;
	height: 500px;
	object-fit: cover;
	border-bottom: 8px solid var(--dark-bg);
}

.drop-cap::first-letter {
	font-family: 'Oswald', sans-serif;
	float: left;
	font-size: 5rem;
	line-height: 0.8;
	padding-right: 12px;
	color: var(--logo-pink);
	font-weight: bold;
}

/* Estilo de Imágenes en el texto */
.inline-photo {
	background: white;
	padding: 10px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.1);
	border: 1px solid #eee;
	margin-bottom: 2.5rem;
	transition: transform 0.3s ease;
}

.inline-photo:hover {
	transform: scale(1.02) rotate(1deg);
}

.photo-caption {
	font-family: 'Special Elite', cursive;
	font-size: 0.75rem;
	color: #666;
	margin-top: 10px;
	text-align: center;
	border-top: 1px dashed #ddd;
	padding-top: 8px;
}

.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);
}

.divider {
	height: 1px;
	background: linear-gradient(90deg, transparent, #ddd, transparent);
	margin: 3rem 0;
}

.sidebar-label {
	writing-mode: vertical-rl;
	text-transform: uppercase;
	letter-spacing: 0.5em;
	font-size: 0.65rem;
	font-weight: bold;
	color: #ccc;
	position: absolute;
	left: -40px;
	top: 150px;
}

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

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

.story-botonera {
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
}

/* Botón Flotante */
#btn-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: var(--dark-bg);
	color: var(--logo-cyan);
	border: 2px solid var(--logo-cyan);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 1000;
	transition: all 0.3s ease;
	opacity: 0;
	visibility: hidden;
	box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

#btn-top.visible {
	opacity: 1;
	visibility: visible;
}

#btn-top:hover {
	background: var(--logo-cyan);
	color: var(--dark-bg);
	transform: translateY(-5px);
}

.btn-custom {
	background: var(--dark-bg);
	color: white;
	border: 1px solid var(--logo-cyan);
	transition: all 0.3s;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 24px;
}

.btn-custom:hover {
	background: var(--logo-cyan);
	color: var(--dark-bg);
	box-shadow: 0 0 15px var(--logo-cyan);
}

strong { color: #000; font-weight: 700; }