*{margin:0;padding:0;box-sizing:border-box}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}code{font-family:source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace}.chess-game{display:flex;justify-content:center;align-items:center;padding:20px;min-height:80vh}.game-setup{background:#fff;padding:40px;border-radius:15px;box-shadow:0 10px 40px #0000004d;max-width:500px;width:100%}.game-setup h2{margin:0 0 30px;font-size:2rem;color:#333;text-align:center}.setup-section{margin-bottom:30px}.setup-section label{display:block;font-size:1.2rem;font-weight:600;color:#333;margin-bottom:15px}.color-buttons{display:flex;gap:15px}.color-buttons button{flex:1;padding:15px 20px;font-size:1.1rem;font-weight:600;border:3px solid #e9ecef;border-radius:10px;cursor:pointer;background:#fff;transition:all .3s ease}.color-buttons button:hover{border-color:#667eea;transform:translateY(-2px)}.color-buttons button.active{border-color:#667eea;background:#667eea;color:#fff;box-shadow:0 4px 12px #667eea66}.difficulty-slider{width:100%;height:8px;border-radius:5px;background:#e9ecef;outline:none;-webkit-appearance:none}.difficulty-slider::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:24px;height:24px;border-radius:50%;background:#667eea;cursor:pointer;transition:all .3s ease}.difficulty-slider::-webkit-slider-thumb:hover{background:#5568d3;transform:scale(1.2)}.difficulty-slider::-moz-range-thumb{width:24px;height:24px;border-radius:50%;background:#667eea;cursor:pointer;border:none;transition:all .3s ease}.difficulty-slider::-moz-range-thumb:hover{background:#5568d3;transform:scale(1.2)}.difficulty-labels{display:flex;justify-content:space-between;margin-top:8px;font-size:.9rem;color:#868e96}.start-button{width:100%;padding:15px;font-size:1.3rem;font-weight:700;border:none;border-radius:10px;cursor:pointer;background:linear-gradient(135deg,#667eea,#764ba2);color:#fff;transition:all .3s ease;margin-top:10px}.start-button:hover{transform:translateY(-2px);box-shadow:0 6px 20px #667eea80}.game-container{display:flex;gap:30px;background:#fff;padding:30px;border-radius:15px;box-shadow:0 10px 40px #0000004d;max-width:1200px;width:100%}.board-container{flex-shrink:0;width:100%;max-width:560px;aspect-ratio:1;position:relative}.thinking-overlay{position:absolute;inset:0;background:#000000b3;display:flex;flex-direction:column;justify-content:center;align-items:center;border-radius:5px;z-index:10}.thinking-overlay p{color:#fff;font-size:1.2rem;font-weight:600;margin-top:15px}.thinking-spinner{width:50px;height:50px;border:5px solid rgba(255,255,255,.3);border-top-color:#fff;border-radius:50%;animation:spin 1s linear infinite}@keyframes spin{to{transform:rotate(360deg)}}.game-info{display:flex;flex-direction:column;gap:20px;min-width:280px;flex:1}.status-panel{background:#f8f9fa;padding:20px;border-radius:10px}.status-panel h2{margin:0 0 15px;font-size:1.5rem;color:#333}.status p{margin:8px 0;font-size:1.1rem}.check{color:#ff6b6b;font-weight:700;animation:pulse 1s infinite}.checkmate{color:#51cf66;font-weight:700;font-size:1.2rem}.draw,.stalemate{color:#868e96;font-weight:700}@keyframes pulse{0%,to{opacity:1}50%{opacity:.6}}.controls{display:flex;gap:10px}.controls button{flex:1;padding:12px 20px;font-size:1rem;font-weight:600;border:none;border-radius:8px;cursor:pointer;transition:all .3s ease;background:#667eea;color:#fff}.controls button:hover:not(:disabled){background:#5568d3;transform:translateY(-2px);box-shadow:0 4px 12px #667eea66}.controls button:disabled{background:#ced4da;cursor:not-allowed;opacity:.6}.move-history{background:#f8f9fa;padding:20px;border-radius:10px;flex:1}.move-history h3{margin:0 0 15px;font-size:1.3rem;color:#333}.moves{max-height:300px;overflow-y:auto;overflow-x:hidden;display:flex;flex-direction:column;gap:4px}.no-moves{color:#868e96;font-style:italic}.move{padding:8px 12px;background:#fff;border-radius:5px;font-size:.95rem;box-shadow:0 2px 4px #0000001a;display:grid;grid-template-columns:40px 1fr 1fr;align-items:center;gap:12px}.move strong{color:#667eea;font-weight:700}.move span{padding:4px 8px;background:#f8f9fa;border-radius:4px;font-family:Courier New,monospace}@media(max-width:1024px){.game-container{flex-direction:column;align-items:center}.game-info{width:100%;max-width:560px}}@media(max-width:768px){.chess-game{padding:15px}.game-container{padding:20px;gap:20px}.board-container{max-width:100%}.game-info{max-width:100%;min-width:0}.status-panel h2{font-size:1.3rem}.status p{font-size:1rem}.move-history h3{font-size:1.2rem}.game-setup{padding:30px 20px;max-width:90%}.game-setup h2{font-size:1.8rem}}@media(max-width:480px){.chess-game{padding:10px;min-height:100vh}.game-container{padding:15px;gap:15px;border-radius:10px}.board-container{max-width:100%}.status-panel{padding:15px}.status-panel h2{font-size:1.2rem;margin-bottom:10px}.status p{font-size:.95rem;margin:6px 0}.controls button{padding:10px 15px;font-size:.9rem}.move-history{padding:15px}.move-history h3{font-size:1.1rem;margin-bottom:10px}.moves{max-height:200px}.move{padding:6px 10px;font-size:.85rem;grid-template-columns:35px 1fr 1fr;gap:8px}.move span{padding:3px 6px;font-size:.85rem}.game-setup{padding:25px 15px;max-width:95%}.game-setup h2{font-size:1.5rem;margin-bottom:20px}.setup-section{margin-bottom:25px}.setup-section label{font-size:1.1rem;margin-bottom:12px}.color-buttons{gap:10px}.color-buttons button{padding:12px 15px;font-size:1rem}.start-button{padding:12px;font-size:1.1rem}.thinking-overlay p{font-size:1rem}.thinking-spinner{width:40px;height:40px}}@media(max-width:360px){.game-container{padding:10px}.status-panel,.move-history{padding:12px}.status-panel h2,.move-history h3{font-size:1rem}.status p{font-size:.9rem}.controls button{padding:8px 12px;font-size:.85rem}.move{grid-template-columns:30px 1fr 1fr;gap:6px;font-size:.8rem}.game-setup h2{font-size:1.3rem}.setup-section label{font-size:1rem}.color-buttons button{padding:10px 12px;font-size:.95rem}}@media(max-height:600px)and (orientation:landscape){.chess-game{min-height:auto;padding:10px}.game-container{flex-direction:row;padding:15px}.board-container,.game-info{max-width:50%}.moves{max-height:150px}}.App{text-align:center;padding:20px;min-height:100vh;background:linear-gradient(135deg,#667eea,#764ba2)}h1{color:#fff;margin-bottom:20px;font-size:2.5rem;text-shadow:2px 2px 4px rgba(0,0,0,.3)}@media(max-width:768px){.App{padding:15px}h1{font-size:2rem;margin-bottom:15px}}@media(max-width:480px){.App{padding:10px}h1{font-size:1.5rem;margin-bottom:10px}}
