*{margin:0;padding:0;box-sizing:border-box}body{font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif;background:#121212;min-height:100vh;display:flex;justify-content:center;align-items:center;color:#fff}#app{width:100%;height:100%}.screen{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background:#121212;animation:fadeIn .3s ease-in;overflow-y:auto}.screen.active{display:flex;justify-content:center;align-items:flex-start;padding:40px 0}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.container{background:#1e1e1e;border-radius:15px;box-shadow:0 10px 40px #00000080;padding:40px;max-width:600px;width:90%;text-align:center;color:#eee;border:1px solid #333;margin-top:auto;margin-bottom:auto}.game-container{background:#1e1e1e;border-radius:15px;box-shadow:0 10px 40px #00000080;padding:30px;max-width:700px;width:95%;text-align:center;color:#eee;border:1px solid #333;margin-top:auto;margin-bottom:auto}h1{color:#ff914d;margin-bottom:30px;font-size:2.5em;text-transform:uppercase;letter-spacing:2px}h2{color:#ff914d;margin-bottom:15px;font-size:1.8em}p{color:#666;margin:10px 0;font-size:1.1em}.overlay{position:absolute;top:0;left:0;right:0;bottom:0;background:#ffffffe6;display:flex;justify-content:center;align-items:center;z-index:100;border-radius:10px;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px)}.overlay.hidden{display:none}.overlay-content{background:#fff;padding:30px;border-radius:15px;box-shadow:0 10px 30px #00000026;text-align:center;border:2px solid #667eea;max-width:90%;width:350px}.overlay-content h2{margin-top:0;color:#667eea;font-size:2em}.overlay-content p{font-size:1.2em;color:#333;margin-bottom:25px}.overlay-buttons{display:flex;gap:15px;justify-content:center}.status-msg{color:#ff914d!important;font-size:.9em!important;margin-bottom:0!important;margin-top:15px!important;min-height:1.2em}.lobby-container{display:flex;flex-direction:column;align-items:center;gap:20px;background:#1e1e1ecc!important;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);border:1px solid rgba(255,145,77,.2)}.app-logo{width:150px;height:auto;margin-bottom:0;filter:drop-shadow(0 0 10px rgba(255,145,77,.3))}.lobby-content{display:flex;flex-direction:column;gap:30px}.username-input{display:flex;gap:10px}#username-input{flex:1;padding:12px 15px;border:1px solid #333;border-radius:8px;font-size:1em;color:#eee;background-color:#2a2a2a;transition:border-color .3s}#username-input:focus{outline:none;border-color:#ff914d}.online-info{background:#2a2a2a;padding:20px;border-radius:10px}.online-info p{margin:10px 0;font-size:1em;color:#aaa}.online-info span{font-weight:700;color:#667eea}.queue-content{display:flex;flex-direction:column;align-items:center;gap:30px}.spinner{width:50px;height:50px;border:4px solid #333;border-top:4px solid #FF914D;border-radius:50%;animation:spin 1s linear infinite}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}#queue-position{font-weight:700;color:#ff914d;font-size:1.2em}.game-selection-content{display:flex;flex-direction:column;gap:20px}.game-list{display:grid;grid-template-columns:1fr 1fr;gap:15px;margin:20px 0}.game-item{padding:15px;border:2px solid #ddd;border-radius:8px;cursor:pointer;transition:all .3s;background:#fff}.game-item:hover{border-color:#667eea;background:#f9f9f9}.game-item.selected{border-color:#667eea;background:#e8eaf6;font-weight:700}.game-item p{margin:0;color:#333}.game-info{background:#f5f5f5;padding:20px;border-radius:10px}.game-info p{margin:5px 0}.video-chat-section{background:#f9f9f9;padding:20px;border-radius:10px;border:2px solid #e0e0e0}.video-controls{display:flex;gap:10px;justify-content:center;margin-bottom:15px}.voice-btn{padding:10px 20px;border:none;border-radius:8px;background:#fff;border:2px solid #ddd;cursor:pointer;transition:all .3s;font-size:.95em;font-weight:500}.voice-btn:hover{border-color:#667eea;background:#f0f0f0}.voice-btn.active{background:#667eea;color:#fff;border-color:#667eea}.video-streams{display:flex;gap:30px;justify-content:center}.video-container{display:flex;flex-direction:column;align-items:center;gap:8px}.video-container video{width:160px;height:120px;background:#000;border-radius:8px;object-fit:cover;border:2px solid #ccc}.video-container.remote video{width:240px;height:180px}.video-container p{margin:0;font-size:.9em;color:#666}.indicator{width:30px;height:30px;border-radius:50%;background:#e0e0e0;display:flex;align-items:center;justify-content:center}.indicator.active{background:#4caf50;box-shadow:0 0 10px #4caf5099;animation:pulse 1s infinite}@keyframes pulse{0%,to{box-shadow:0 0 10px #4caf5099}50%{box-shadow:0 0 20px #4caf50}}#game-area{background:#fff;border:2px solid #ddd;border-radius:10px;padding:20px;min-height:400px;display:flex;align-items:center;justify-content:center;color:#999}.game-status{font-size:1.1em;color:#667eea;font-weight:700;margin:15px 0}.tic-tac-toe-board{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;max-width:300px;margin:30px auto}.tic-tac-toe-board .cell{aspect-ratio:1;border:2px solid #667eea;border-radius:8px;font-size:2.5em;font-weight:700;display:flex;align-items:center;justify-content:center;cursor:pointer;background:#fff;transition:all .3s}.tic-tac-toe-board .cell:hover{background:#f0f0f0;transform:scale(1.05)}.connect-four-board{background:#333;border-radius:10px;padding:15px;max-width:350px;margin:30px auto}.connect-four-board .row{display:grid;grid-template-columns:repeat(7,1fr);gap:8px;margin-bottom:8px}.cell-circle{aspect-ratio:1;border-radius:50%;cursor:pointer;border:2px solid #555;transition:all .3s}.cell-circle:hover{transform:scale(1.1)}.trivia-question{font-size:1.3em;margin:30px 0;color:#333;font-weight:500}.trivia-answers{display:grid;grid-template-columns:repeat(2,1fr);gap:15px;margin:20px 0}.answer-btn{padding:15px;border:none;border-radius:8px;background:#f0f0f0;border:2px solid #ddd;cursor:pointer;font-size:1em;transition:all .3s;font-weight:500}.answer-btn:hover:not(:disabled){background:#667eea;color:#fff;border-color:#667eea}.answer-btn:disabled{opacity:.6;cursor:not-allowed}.trivia-score{display:flex;justify-content:space-around;gap:20px;margin:20px 0;font-size:1.2em}.trivia-score div{font-weight:700;color:#667eea}.word-prompt{font-size:1.2em;margin:30px 0;color:#333}#word-input{width:100%;padding:12px;font-size:1.1em;border:2px solid #ddd;border-radius:8px;margin:20px 0;transition:border-color .3s}#word-input:focus{outline:none;border-color:#667eea}#word-input:disabled{background:#f0f0f0;opacity:.6}.rps-choices{display:flex;justify-content:space-around;gap:20px;margin:30px 0}.choice-btn{display:flex;flex-direction:column;align-items:center;gap:10px;padding:20px;border:2px solid #ddd;border-radius:10px;background:#fff;cursor:pointer;transition:all .3s}.choice-btn:hover:not(:disabled){border-color:#667eea;background:#f9f9f9}.choice-btn:disabled{opacity:.6;cursor:not-allowed}.guess-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:10px;margin:20px 0}.guess-btn{padding:15px;border:2px solid #ddd;border-radius:8px;background:#fff;cursor:pointer;font-size:1em;font-weight:700;transition:all .3s}.guess-btn:hover:not(:disabled){border-color:#667eea;background:#667eea;color:#fff}.guess-btn:disabled{opacity:.6;cursor:not-allowed}.youtube-watch-container{width:100%;max-width:900px}.youtube-selection{display:flex;flex-direction:column;gap:30px}.preset-videos{width:100%}.preset-videos h3{font-size:1.2em;margin-bottom:15px;color:#333}.preset-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:12px}.preset-btn{padding:15px;border:2px solid #ddd;border-radius:8px;background:#fff;cursor:pointer;font-size:.95em;font-weight:600;transition:all .3s;min-height:80px;display:flex;align-items:center;justify-content:center;text-align:center}.preset-btn:hover{border-color:#667eea;background:#f0f4ff;box-shadow:0 4px 12px #667eea33}.preset-title{font-size:.9em;line-height:1.4}.custom-url-section{display:flex;flex-direction:column;gap:12px}.custom-url-section h3{font-size:1.2em;color:#333}.youtube-player{width:100%;margin:20px 0;border-radius:8px;overflow:hidden;box-shadow:0 4px 12px #00000026}.youtube-player iframe{width:100%;height:400px;border:none}.watch-info{text-align:center;padding:20px;background:#f9f9f9;border-radius:8px;margin-top:20px}.watch-info p{font-size:1.1em;color:#333;margin-bottom:15px}.change-video-btn{background:#667eea;color:#fff;padding:10px 20px;border:none;border-radius:6px;cursor:pointer;font-size:.95em;transition:all .3s}.change-video-btn:hover{background:#5568d3;box-shadow:0 4px 12px #667eea4d}.start-btn{background:#667eea;color:#fff;padding:12px 24px;border:none;border-radius:6px;cursor:pointer;font-size:1em;font-weight:600;transition:all .3s}.start-btn:hover{background:#5568d3;box-shadow:0 4px 12px #667eea4d}button{padding:12px 30px;border:none;border-radius:8px;background:#ff914d;color:#121212;font-size:1em;font-weight:700;cursor:pointer;transition:all .3s}button:hover:not(:disabled){background:#ffb07c;transform:translateY(-2px);box-shadow:0 5px 15px #ff914d66}button:disabled{background:#ccc;cursor:not-allowed;opacity:.6}button:active:not(:disabled){transform:translateY(0)}#cancel-queue-btn,#leave-game-btn{background:#f44336}#cancel-queue-btn:hover:not(:disabled),#leave-game-btn:hover:not(:disabled){background:#d32f2f}.text-chat-section{margin:20px 0;background:#f9f9f9;border:2px solid #e0e0e0;border-radius:10px;padding:15px;display:flex;flex-direction:column;gap:10px}.chat-messages{height:150px;overflow-y:auto;background:#fff;border:1px solid #ddd;border-radius:8px;padding:10px;display:flex;flex-direction:column;gap:8px;text-align:left}.chat-message{padding:8px 12px;border-radius:15px;max-width:80%;word-wrap:break-word;font-size:.95em}.chat-message.self{align-self:flex-end;background:#ff914d;color:#121212;font-weight:600}.chat-message.partner{align-self:flex-start;background:#e0e0e0;color:#333}.chat-form{display:flex;gap:10px}.chat-form input{flex:1;padding:10px 15px;border:2px solid #ddd;border-radius:20px;outline:none;font-size:.95em;transition:border-color .3s}.chat-form input:focus{border-color:#667eea}.chat-form button{padding:8px 20px;border-radius:20px;margin:0}@media (max-width: 600px){.container{padding:30px 20px}h1{font-size:1.8em}h2{font-size:1.4em}.game-list{grid-template-columns:1fr}.voice-controls{flex-direction:column}.audio-indicators{flex-direction:column;gap:15px}.tic-tac-toe-board{max-width:250px}.trivia-answers{grid-template-columns:1fr}.rps-choices{flex-direction:column}.guess-grid{grid-template-columns:repeat(4,1fr)}.youtube-player iframe{height:250px}.preset-grid{grid-template-columns:repeat(auto-fit,minmax(120px,1fr))}#game-area{min-height:300px}}.checkers-board{display:flex;flex-direction:column;width:320px;height:320px;margin:0 auto;border:4px solid #333}.checkers-row{display:flex;height:40px}.checkers-square{width:40px;height:40px;display:flex;justify-content:center;align-items:center;position:relative}.checkers-square.light{background-color:#fce3b6}.checkers-square.dark{background-color:#5c3a21}.checkers-piece{width:30px;height:30px;border-radius:50%;border:2px solid #fff;display:flex;justify-content:center;align-items:center;font-weight:700;color:#fff;box-shadow:0 4px 6px #0000004d;cursor:pointer}.checkers-piece.red{background-color:#e53935}.checkers-piece.black{background-color:#1a1a1a}.move-dot{width:12px;height:12px;background-color:#ffff00b3;border-radius:50%;position:absolute;cursor:pointer}.chess-board{display:flex;flex-direction:column;width:360px;height:360px;margin:0 auto;border:4px solid #333;-webkit-user-select:none;user-select:none}.chess-row{display:flex;height:45px}.chess-square{width:45px;height:45px;display:flex;justify-content:center;align-items:center;position:relative;cursor:pointer}.chess-square.light{background-color:#fce3b6}.chess-square.dark{background-color:#5c3a21}.chess-square.selected{background-color:#f7d081!important}.chess-piece{font-size:32px;line-height:1;display:block}.chess-piece.white{color:#fff;text-shadow:0 0 2px #000,0 0 5px rgba(0,0,0,.5)}.chess-piece.black{color:#000;text-shadow:0 0 2px #fff}.move-hint{width:14px;height:14px;background-color:#ffff0080;border-radius:50%;position:absolute}
