@import"https://fonts.googleapis.com/css2?family=VT323&display=swap";*{box-sizing:border-box}html{font-family:VT323,monospace;line-height:1.5;color:#dedede;font-synthesis:none;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-text-size-adjust:100%;height:100%}body{margin:0;padding:2rem;background-color:#000;background-image:radial-gradient(#2d2d2d 15%,transparent 16%);background-size:30px 30px;min-height:100vh}header{margin:2rem 0;text-align:center;animation:slideDown .5s ease-out}header img{width:5rem;height:5rem;image-rendering:pixelated;animation:wobble 2s infinite ease-in-out}header h1{font-family:VT323,monospace;font-weight:700;font-size:4rem;letter-spacing:.2rem;margin:0;text-transform:uppercase;color:#ff0;text-shadow:4px 4px 0px #2121de}#start-screen{text-align:center;margin-top:4rem;animation:fadeIn 1s}#start-screen h2{color:#ffb8ae;font-size:2rem;margin-bottom:2rem;text-transform:uppercase;animation:blink 1.5s infinite}#start-screen button{font-family:VT323,monospace;font-size:2.5rem;padding:.5rem 3rem;border:4px double #2121de;background:#000;color:#ff0;cursor:pointer;text-transform:uppercase;transition:all .2s}#start-screen button:hover{background:#2121de;color:#fff;transform:scale(1.1)}#quiz{max-width:50rem;margin:auto;padding:2rem;background:#000000;border:6px double #2121de;border-radius:10px;box-shadow:0 0 15px #2121de66,inset 0 0 20px #2121de33;text-align:center;animation:zoomIn .3s ease-out}#question progress{width:100%;height:1.5rem;border-radius:0;background:#111;border:2px solid #2121de;margin:0}#question progress::-webkit-progress-bar{background:#111;border-radius:0}#question progress::-webkit-progress-value{background:#2121de;border-radius:0;transition:all .2s ease;box-shadow:0 0 5px #2121de}#question progress.answered::-webkit-progress-value{background:#ffff00;box-shadow:0 0 10px #ff0}#question progress.correct::-webkit-progress-value{background:#00ff00;box-shadow:0 0 10px #0f0}#question progress.wrong::-webkit-progress-value{background:#ff0000;box-shadow:0 0 10px red}#question h2{font-family:VT323,monospace;font-size:2.5rem;font-weight:400;margin:1.5rem 0 2.5rem;color:#fff;text-transform:uppercase}#answers{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;align-items:center;gap:1rem}.answer{width:100%}.answer button{display:inline-block;width:100%;font-family:VT323,monospace;font-size:1.8rem;padding:.8rem 2rem;border:2px solid #2121de;border-radius:8px;background:#000;color:#dedede;cursor:pointer;transition:all .1s;text-transform:uppercase}.answer button:hover:not(:disabled){background:#2121de;color:#fff;box-shadow:0 0 10px #2121de}.answer button:disabled{cursor:not-allowed;opacity:.5;border-color:#555;color:#555}.answer button.selected{background:#ffff00;color:#000;border-color:#ff0}.answer button.correct{background:#000;color:#0f0;border-color:#0f0;box-shadow:inset 0 0 10px #0f0;text-shadow:0 0 5px #00ff00}.answer button.wrong{background:#000;color:red;border-color:red;box-shadow:inset 0 0 10px red;text-shadow:0 0 5px #ff0000}#summary{max-width:40rem;margin:2rem auto;padding:2rem;background:#000;border:6px double #ffb8ae;border-radius:10px;box-shadow:0 0 20px #ffb8ae4d;animation:slideUp .5s ease-out;color:#fff;text-align:center}#summary img{display:block;width:6rem;height:6rem;object-fit:contain;margin:0 auto 1rem;padding:.5rem;border:2px solid #ffff00;border-radius:50%;background:#000}#summary h2{font-family:VT323,monospace;font-size:3.5rem;margin:0;text-transform:uppercase;color:#ff0}#summary button{margin-top:2rem;font-family:VT323,monospace;font-size:2rem;padding:.5rem 3rem;background:#000;color:#0f0;border:2px dashed #00ff00;cursor:pointer;text-transform:uppercase;animation:blink 2s infinite}#summary button:hover{background:#00ff00;color:#000;animation:none}#summary-stats{display:flex;gap:1rem;width:100%;margin:2rem auto;padding-bottom:2rem;border-bottom:2px solid #333;justify-content:center}#summary-stats p{flex:1;display:flex;flex-direction:column;margin:0}#summary-stats .number{font-family:VT323,monospace;font-size:3.5rem;color:#fff}#summary-stats p:nth-child(1) .number{color:#555}#summary-stats p:nth-child(2) .number{color:#0f0}#summary-stats p:nth-child(3) .number{color:red}#summary-stats .text{font-family:VT323,monospace;text-transform:uppercase;font-size:1rem;color:#aaa;margin-top:-.5rem}#summary ol{list-style:none;padding:0;margin:2rem 0}#summary li{margin:1.5rem 0;border-bottom:1px dashed #333;padding-bottom:1rem}#summary h3{font-family:VT323,monospace;font-size:1.5rem;margin:0 auto .5rem;display:flex;justify-content:center;align-items:center;background:#2121de;color:#fff;width:2.5rem;height:2.5rem;border-radius:50%}#summary .question{margin:.5rem 0;font-size:1.5rem;color:#fff}#summary .user-answer{font-family:VT323,monospace;font-size:1.5rem}#summary .user-answer.correct{color:#0f0}#summary .user-answer.wrong{color:red}#summary .user-answer.skipped{color:#555}@keyframes slideDown{0%{transform:translateY(-50px);opacity:0}to{transform:translateY(0);opacity:1}}@keyframes zoomIn{0%{transform:scale(.8);opacity:0}to{transform:scale(1);opacity:1}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes wobble{0%{transform:rotate(0)}25%{transform:rotate(-5deg)}75%{transform:rotate(5deg)}to{transform:rotate(0)}}@keyframes blink{0%,to{opacity:1}50%{opacity:.5}}@media (max-width: 600px){body{padding:1rem}header h1{font-size:3rem}header img{width:3.5rem;height:3.5rem}#summary img{width:4rem;height:4rem}#quiz{padding:1.5rem 1rem;border-width:4px}#question h2{font-size:1.8rem}.answer button{padding:.8rem;font-size:1.4rem}#summary-stats{flex-direction:column;gap:2rem}}
