body{font-family:Arial,sans-serif;background-color:#f4f4f4;margin:0;padding:0;display:flex;justify-content:center;align-items:center;height:100vh;flex-direction:column}.player-box{border:2px solid #ccc;padding:10px;margin:10px;display:inline-block;text-align:center;border-radius:10px;width:150px;transition:all .3s ease-in-out;box-sizing:border-box}.player-box.highlight{border-color:#f39c12;box-shadow:0 0 10px #f39c1299}.player-box.eliminated{border:2px solid red;box-shadow:0 0 10px #f009}.life-bars{display:flex;justify-content:space-between}.life-bar{width:30px;height:10px;border-radius:5px;margin-top:5px;background-color:#e74c3c}.life-bar.alive{background-color:#2ecc71}.life-bar.dead{background-color:#e74c3c}button{background-color:#3498db;color:#fff;padding:10px 20px;margin:5px;border:none;border-radius:5px;cursor:pointer;transition:background-color .3s}button:hover{background-color:#2980b9}button:disabled{background-color:#bdc3c7;cursor:not-allowed}.question-section{margin-top:20px;text-align:center}.player-lives{display:flex;flex-wrap:wrap;justify-content:center}.winner-popup{position:fixed;top:0;left:0;width:100%;height:100%;background-color:#00000080;display:flex;justify-content:center;align-items:center;z-index:9999}.winner-popup h3{background:#fff;padding:20px;border-radius:10px;font-size:24px;text-align:center;color:#000}.winner-popup button{margin-top:10px;padding:10px 20px;border:none;background-color:#4caf50;color:#fff;cursor:pointer;border-radius:5px}.winner-popup button:hover{background-color:#45a049}@media (max-width: 600px){.player-box{width:120px}.life-bar{width:25px}button{padding:8px 15px}.player-lives{flex-direction:column}.question-section{margin-top:15px}}body.light{background-color:#ecf0f1;color:#2c3e50}body.light .player-box{background-color:#fff;border-color:#ccc}body.light .player-box.eliminated{border-color:red;background-color:#f2f2f2}body.dark{background-color:#121212;color:#fff}body.dark .player-box{background-color:#1e1e1e;border-color:#555}body.dark .player-box.eliminated{border-color:red;background-color:#333}body.retro{background-color:linen;color:#222;font-family:Courier New,monospace}body.retro .player-box{background-color:#fff8dc;border:2px dashed #000}body.retro .player-box.eliminated{border:2px dashed #ff6347;box-shadow:0 0 10px #ff634799}body.retro button{background-color:#fc0;color:#000}body.party{background:linear-gradient(to right,#ff0080,#ff8c00,#40e0d0);color:#fff;font-family:Comic Sans MS,cursive}body.party .player-box{background-color:#fff3;border:2px solid #fff;-webkit-backdrop-filter:blur(5px);backdrop-filter:blur(5px)}body.party .player-box.eliminated{border:2px solid #ff00ff;box-shadow:0 0 10px #f0f9}body.party button{background-color:#fff;color:#ff0080}
