 /* Base de la terminal */
        body {
            background-color: #0a0a0a;
            color: #4af626; /* Verde fósforo clásico */
            font-family: 'Courier New', Courier, monospace;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            overflow: hidden;
            text-shadow: 0 0 5px #4af626;
        }

        /* Contenedor principal con efecto de curvatura */
        .monitor {
            width: 80%;
            max-width: 800px;
            height: 80vh;
            padding: 40px;
            background: #050505;
            border: 20px solid #222;
            border-radius: 30px;
            position: relative;
            box-shadow: inset 0 0 100px rgba(0,0,0,0.8), 0 0 50px rgba(74, 246, 38, 0.1);
            overflow: hidden;
        }

        /* Efecto de líneas de escaneo (Scanlines) */
        .monitor::before {
            content: " ";
            /*display: block;*/
            position: absolute;
            top: 0; left: 0; bottom: 0; right: 0;
            background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), 
                        linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
            background-size: 100% 4px, 3px 100%;
            z-index: 2;
            pointer-events: none;
        }

        /* Animación de parpadeo de pantalla */
        .content {
            animation: flicker 0.15s infinite;
            position: relative;
            z-index: 1;
            height: 100%;          /* Ocupa todo el alto del monitor */
            overflow-y: auto;      /* Activa el scroll vertical */
            padding-right: 10px;   /* Espacio para que el texto no toque el borde */
            padding-bottom: 80px;
            padding: 20px;
            scrollbar-width: thin; /* Para Firefox */
            scrollbar-color: var(--phosphor-color) transparent;
            flex-grow: 1;
            overflow-y: auto;
        }
        
        /* 2. Estilo retro para la barra de desplazamiento (Chrome, Edge, Safari) */
        .content::-webkit-scrollbar {
            width: 8px;
        }
        
        .content::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.2);
        }
        
        .content::-webkit-scrollbar-thumb {
            background-color: var(--phosphor-color);
            border-radius: 0px;
            /* Efecto de resplandor en la barra */
            box-shadow: 0 0 5px var(--phosphor-color);
        }

        @keyframes flicker {
            0% { opacity: 0.98; }
            50% { opacity: 1; }
            100% { opacity: 0.99; }
        }

        /* Estilos de texto específicos del Manual */
        .header { display: flex; justify-content: space-between; margin-bottom: 20px; }
        .section-title { font-weight: bold; margin-top: 20px; text-transform: uppercase; }
        .indent { margin-left: 40px; }
        
        .footer-bar {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            background-color: #4af626;
            color: #050505;
            position: absolute;
            bottom: 20px;
            width: calc(100% - 100px);
            text-shadow: none;
            font-weight: bold;
            
            z-index: 100;
            
        }

        /* Cursor parpadeante */
        .cursor {
            display: inline-block;
            width: 10px;
            height: 18px;
            background-color: #4af626;
            animation: blink 1s step-end infinite;
            vertical-align: middle;
        }

        @keyframes blink {
            50% { opacity: 0; }
        }
        a {color:var(--links)}
        
        .paragraph {
            margin-bottom: 20px; /* Esto crea el espacio visual entre párrafos */
            display: block;
            line-height: 1.6;
        }