
        body {
            font-family: monospace;
            background-color: #121212;
            color: #e0e0e0;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-top: 50px;
        }

        /* Lista de barras de progreso multijugador */
        #players-container {
            width: 100%;
            max-width: 600px;
            margin-bottom: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .player-row {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .player-info {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            color: #aaa;
        }

        .track {
            width: 100%;
            height: 10px;
            background-color: #2a2a2a;
            border-radius: 5px;
            overflow: hidden;
        }

        .bar {
            height: 100%;
            width: 0%;
            background-color: #6366f1; /* Color azul / violeta moderno */
            transition: width 0.15s ease-out; /* Transición fluida */
        }

        .bar.me {
            background-color: #10b981; /* Verde para tu propia barra */
        }

        /* Estilos del texto */
        #quote-display {
            font-size: 1.4rem;
            max-width: 600px;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        #text-enter {
            font-size: 1.1rem;
            padding: 10px;
            width: 300px;
            background: #222;
            color: white;
            border: 1px solid #444;
            border-radius: 5px;
            margin-bottom: 20px;
        }

        .correct { color: #10b981; }
        .incorrect { color: #ef4444; background: rgba(239, 68, 68, 0.2); }
