/* --- ESTILOS GENERALES (estilos.css) --- */
@import url('https://fonts.googleapis.com/css2?family=Creepster&family=Roboto:wght@300;400;700&display=swap');

:root {
    --rojo-sangre: #8b0000;
    --rojo-vivo: #ff0000;
    --negro-profundo: #0a0a0a;
    --gris-oscuro: #1a1a1a;
    --gris-claro: #222;
    --blanco-hueso: #e0e0e0;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--negro-profundo);
    color: var(--blanco-hueso);
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- Header y Navegación --- */
header {
    background: linear-gradient(to bottom, #000, var(--gris-oscuro));
    padding: 1.5rem 1rem;
    text-align: center;
    border-bottom: 3px solid var(--rojo-sangre);
    position: relative;
}

h1 {
    font-family: 'Creepster', cursive;
    color: var(--rojo-sangre);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 2.5rem;
    margin: 0;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
}

h1 a {
    text-decoration: none;
    color: var(--rojo-sangre);
}

h1 span {
    color: var(--blanco-hueso);
}

nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 1.5rem;
}

/* Botones del menú */
nav a {
    color: var(--rojo-sangre);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 8px 15px;
    border: 1px solid var(--rojo-sangre);
    border-radius: 4px;
    transition: all 0.3s ease;
    background: rgba(0,0,0,0.5);
}

nav a:hover, nav a.activo {
    background: var(--rojo-sangre);
    color: var(--blanco-hueso);
    box-shadow: 0 0 10px var(--rojo-sangre);
}

/* --- Contenedor Principal --- */
.container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 20px;
    flex: 1; /* Esto empuja el footer hacia abajo */
}

/* --- Tarjetas y Títulos --- */
.page-title {
    font-family: 'Creepster', cursive;
    color: var(--rojo-sangre);
    font-size: 2.5rem;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.content-card {
    background: var(--gris-oscuro);
    padding: 2rem;
    border-left: 5px solid var(--rojo-sangre);
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.7);
}

p {
    margin-bottom: 1.2rem;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.8rem;
    border-top: 1px solid #333;
    color: #666;
    background: #000;
    margin-top: auto;
}