:root {
    --bg: #0a0a0a;
    --text: #e0e0e0;
    --accent: #dc143c; 
    --sidebar-bg: #151515;
}

body.light-mode {
    --bg: #f5f5f5;
    --text: #1a1a1a;
    --sidebar-bg: #e0e0e0;
    --accent: #900d28;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    transition: all 0.3s ease;
}

/* PRUEBA CAMBIANDO 'Metal Mania' por 'Creepster', 'Nosifer' o 'Pirata One' */
.main-title, h2 {
    font-family: 'Metal Mania', cursive; 
    color: var(--accent);
    text-shadow: 2px 2px 10px rgba(220, 20, 60, 0.4);
}

.main-title {
    font-size: 4rem;
    margin: 10px 0;
    text-align: center;
}

header {
    padding: 20px;
    border-bottom: 2px solid var(--accent);
}

.toggles {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

button {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 5px 15px;
    cursor: pointer;
}

.container { display: flex; min-height: 85vh; }

.sidebar {
    width: 220px;
    background-color: var(--sidebar-bg);
    padding: 20px;
    border-right: 1px solid var(--accent);
}

.sidebar ul { list-style: none; padding: 0; }
.sidebar li {
    padding: 15px 10px;
    cursor: pointer;
    border-bottom: 1px solid #333;
    transition: 0.2s;
}
.sidebar li:hover { color: var(--accent); padding-left: 20px; }

main { padding: 40px; flex-grow: 1; line-height: 1.6; }
main ul { list-style: none; padding: 0; }
main li { margin-bottom: 10px; }

