   /* Paleta de colores para que combine con lo rojo y lo dorado */
:root {
    --azul-chido: #1a73e8;
    --amarillo-pro: #ffcc00;
    --fondo-oscuro: #121212; /* Para que no canse la vista */
    --gris-seccion: #1e1e1e;
}

/* El cursor de espada que ya tenías (no lo quité porque está genial) */
* {
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'><path d='M16 4 L19 11 L16 24 L13 11 Z' fill='silver' stroke='black' stroke-width='1'/><path d='M11 24 L21 24 L21 26 L11 26 Z' fill='peru'/><rect x='14' y='26' width='4' height='5' fill='black'/></svg>") 16 4, auto !important;
    box-sizing: border-box;
}

body {
    background-color: var(--fondo-oscuro);
    color: #eeeeee;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* El titulo de arriba grandote */
.top-bar {
    background-color: #000;
    color: var(--amarillo-pro);
    padding: 40px;
    text-align: center;
    font-size: 45px;
    font-weight: bold;
    border-bottom: 3px solid var(--azul-chido);
    text-shadow: 2px 2px #000, 0 0 10px #ffcc00;
}

/* La barra donde están los botones del menú */
.navbar {
    background-color: #222;
    padding: 10px;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid #444;
}

.nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-btn {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    font-weight: bold;
    display: inline-block;
    transition: 0.2s;
}

.menu-btn:hover {
    color: var(--amarillo-pro);
    background-color: #333;
    border-radius: 5px;
}

/* Cuadros de las secciones */
.section {
    background-color: var(--gris-seccion);
    margin: 30px auto;
    padding: 25px;
    max-width: 900px;
    border-radius: 12px;
    border: 1px solid #333;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.5);
}

h2 {
    color: var(--amarillo-pro);
    font-size: 28px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--azul-chido);
    display: inline-block;
}

h3 {
    color: var(--azul-chido);
}

/* Cuando pasas el mouse por las cajas de juegos */
.section:hover {
    border-color: var(--amarillo-pro);
    transform: scale(1.01);
    transition: 0.3s;
}

/* El estilo que pediste para resaltar cosas */
.seccion-activa {
    background-color: #252525 !important;
    border-left: 8px solid var(--amarillo-pro) !important;
    padding-left: 30px !important;
}

.resaltar-texto {
    color: #ffcc00;
    background-color: rgba(255, 204, 0, 0.1);
    padding: 2px 5px;
    border-radius: 3px;
}

/* Botón para subir rápido */
.scroll-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--azul-chido);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 0 10px #000;
}

.scroll-top-btn:hover {
    background-color: var(--amarillo-pro);
    color: black;
}

/* Estrellitas o puntos amarillos que siguen al mouse */
.particula-amarilla {
    position: absolute;
    width: 7px;
    height: 7px;
    background-color: #ffcc00;
    border-radius: 50%;
    pointer-events: none;
    box-shadow: 0 0 5px #ffcc00;
}