.App{display:flex;flex-direction:column;min-height:100vh;background-color:#f7f7f7;color:#333;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif}.App-header{padding:20px;text-align:center;border-bottom:1px solid #eee}.App-header h1{margin:0;font-size:2rem}.App-main{flex:1;display:flex;flex-direction:column;align-items:center;justify-content:flex-start;padding:20px;overflow-y:auto;min-height:0}@media (max-width: 768px){.App-header{padding:15px}.App-header h1{font-size:1.5rem}.App-main{padding:10px;justify-content:flex-start}}.error-message{color:#d8000c;background-color:#ffbaba;padding:10px;border-radius:5px;margin:10px 0}.status-message{font-size:1.2rem;font-weight:700;margin:10px 0}.user-info{padding:10px;background-color:#eef;border-radius:5px;margin-bottom:10px}.chessboard{display:grid;grid-template-columns:repeat(8,1fr);grid-template-rows:repeat(8,1fr);width:min(90vw,90vh,400px);height:min(90vw,90vh,400px);margin:0 auto;border:6px solid #D2B48C;border-radius:12px;box-shadow:0 6px 24px #00000026,inset 0 0 0 3px wheat,inset 0 0 0 4px tan;background:linear-gradient(45deg,wheat,#deb887,wheat,#deb887,wheat),repeating-linear-gradient(0deg,transparent,transparent 2px,rgba(0,0,0,.05) 2px,rgba(0,0,0,.05) 4px);background-size:100% 100%,100% 8px;overflow:hidden;position:relative;flex-shrink:0;z-index:0}.chessboard:before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;background:radial-gradient(circle at 20% 20%,rgba(255,255,255,.1) 0%,transparent 50%),radial-gradient(circle at 80% 80%,rgba(0,0,0,.1) 0%,transparent 50%),linear-gradient(45deg,transparent 30%,rgba(255,255,255,.05) 50%,transparent 70%);pointer-events:none}.square{display:flex;align-items:center;justify-content:center;font-size:2.5rem;cursor:pointer;transition:all .2s cubic-bezier(.4,0,.2,1);position:relative;border:none;outline:none;border-radius:4px;margin:1px;z-index:1}.square:hover{transform:scale(1.02);box-shadow:inset 0 0 10px #ffffff1a}.square.light{background:linear-gradient(135deg,#fff8dc,wheat,#fff8dc),repeating-linear-gradient(45deg,transparent,transparent 8px,rgba(210,180,140,.1) 8px,rgba(210,180,140,.1) 16px);color:#8b4513;box-shadow:inset 0 2px 4px #ffffff80,inset 0 -2px 4px #0000000d}.square.dark{background:linear-gradient(135deg,tan,#bc9a6a,tan),repeating-linear-gradient(45deg,transparent,transparent 8px,rgba(0,0,0,.05) 8px,rgba(0,0,0,.05) 16px);color:#2c3e50;box-shadow:inset 0 2px 4px #fff3,inset 0 -2px 4px #0000001a}.square.selected.light,.square.selected.dark{background:linear-gradient(135deg,#2196f3,#1976d2);box-shadow:inset 0 0 0 3px #fff,0 0 15px #2196f380;transform:scale(1.05)}.square.possible-move{position:relative;background:linear-gradient(135deg,#4caf504d,#388e3c66);box-shadow:inset 0 0 0 2px #4caf50cc}.square.possible-move.light{background:linear-gradient(135deg,#4caf5040,#388e3c59)}.square.possible-move.dark{background:linear-gradient(135deg,#4caf5059,#388e3c73)}.move-indicator{width:20px;height:20px;border-radius:50%;background:radial-gradient(circle,#4caf50e6,#388e3cb3);box-shadow:0 0 10px #4caf5099,inset 0 2px 4px #ffffff4d;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);animation:pulse 2s ease-in-out infinite;z-index:5}@keyframes pulse{0%{transform:translate(-50%,-50%) scale(1);opacity:.8}50%{transform:translate(-50%,-50%) scale(1.1);opacity:1}to{transform:translate(-50%,-50%) scale(1);opacity:.8}}.square.last-move{background:linear-gradient(135deg,#ff980066,#ffc10780)!important;box-shadow:inset 0 0 0 3px #ff9800cc,0 0 15px #ff980066;animation:lastMoveGlow 3s ease-in-out}.square.last-move.light{background:linear-gradient(135deg,#ff98004d,#ffc10766)!important}.square.last-move.dark{background:linear-gradient(135deg,#ff980066,#ffc10780)!important}@keyframes lastMoveGlow{0%{box-shadow:inset 0 0 0 3px #ff9800cc,0 0 20px #ff980099}50%{box-shadow:inset 0 0 0 3px #ff9800cc,0 0 15px #ff980066}to{box-shadow:inset 0 0 0 3px #ff9800cc,0 0 15px #ff980066}}.square.hint-move{background:linear-gradient(135deg,#9c27b066,#8e24aa80)!important;box-shadow:inset 0 0 0 3px #9c27b0cc,0 0 20px #9c27b080;animation:hint-pulse 1s ease-in-out infinite}.square.hint-move.light{background:linear-gradient(135deg,#9c27b04d,#8e24aa66)!important}.square.hint-move.dark{background:linear-gradient(135deg,#9c27b066,#8e24aa80)!important}@keyframes hint-pulse{0%{box-shadow:inset 0 0 0 3px #9c27b0cc,0 0 20px #9c27b080}50%{box-shadow:inset 0 0 0 3px #9c27b0cc,0 0 30px #9c27b0cc}to{box-shadow:inset 0 0 0 3px #9c27b0cc,0 0 20px #9c27b080}}.chess-piece{width:90%;height:90%;object-fit:contain;filter:drop-shadow(1px 1px 2px rgba(0,0,0,.4));transition:all .2s ease;image-rendering:-webkit-optimize-contrast;image-rendering:crisp-edges}.chess-piece-container{width:100%;height:100%;display:flex;align-items:center;justify-content:center;position:relative;z-index:10}.chess-piece-image{width:95%;height:95%;object-fit:contain;filter:drop-shadow(3px 3px 6px rgba(0,0,0,.7)) drop-shadow(0 0 8px rgba(255,255,255,.3)) contrast(1.2) brightness(1.1);transition:all .2s cubic-bezier(.4,0,.2,1);position:relative;z-index:11}.chess-piece-image:hover{transform:scale(1.05);filter:drop-shadow(3px 3px 6px rgba(0,0,0,.6)) drop-shadow(0 0 8px rgba(255,255,255,.3)) contrast(1.15) brightness(1.1)}.chess-piece-svg{width:95%;height:95%;object-fit:contain;filter:drop-shadow(3px 3px 6px rgba(0,0,0,.7)) drop-shadow(0 0 8px rgba(255,255,255,.3)) contrast(1.2) brightness(1.1);transition:all .2s cubic-bezier(.4,0,.2,1);position:relative;z-index:11}.chess-piece-svg:hover{transform:scale(1.05);filter:drop-shadow(3px 3px 6px rgba(0,0,0,.6)) drop-shadow(0 0 8px rgba(255,255,255,.3)) contrast(1.15) brightness(1.1)}.chess-piece-unicode{font-size:2.5rem;text-shadow:1px 1px 2px rgba(0,0,0,.3),0 0 4px rgba(255,255,255,.2);filter:drop-shadow(1px 1px 2px rgba(0,0,0,.3));font-weight:700;width:100%;height:100%;display:flex;align-items:center;justify-content:center;line-height:1;position:relative;z-index:11}.chess-piece-loading{width:100%;height:100%;display:flex;align-items:center;justify-content:center}.loading-spinner{width:30px;height:30px;border:3px solid #f3f3f3;border-top:3px solid #3498db;border-radius:50%;animation:spin 1s linear infinite}@media (min-width: 1400px){.chessboard{width:550px;height:550px}.chess-piece-image,.chess-piece-svg{width:95%;height:95%}.chess-piece-unicode{font-size:3.2rem}}@media (min-width: 1200px){.chessboard{width:500px;height:500px}.chess-piece-image,.chess-piece-svg{width:95%;height:95%}.chess-piece-unicode{font-size:3rem}}@media (max-width: 768px){.chessboard{width:min(85vw,85vh,400px);height:min(85vw,85vh,400px);margin:1rem auto;border-radius:12px;border-width:6px}.square{border-radius:3px;margin:.5px}.chess-piece-image,.chess-piece-svg{width:90%;height:90%}.chess-piece-unicode{font-size:2.2rem}}@media (max-width: 480px){.chessboard{width:320px;height:320px;margin:.8rem auto;border-radius:10px;border-width:4px}.square{border-radius:2px;margin:.5px}.chess-piece-image,.chess-piece-svg{width:85%;height:85%}.chess-piece-unicode{font-size:1.8rem}.move-indicator{width:16px;height:16px}}@media (max-width: 375px){.chessboard{width:280px;height:280px;margin:.6rem auto;border-radius:8px;border-width:3px}.square{border-radius:2px;margin:.3px}.chess-piece-image,.chess-piece-svg{width:80%;height:80%}.chess-piece-unicode{font-size:1.5rem}.move-indicator{width:14px;height:14px}}.chess-piece-loading{display:flex;align-items:center;justify-content:center;width:100%;height:100%}.loading-spinner{width:20px;height:20px;border:2px solid #f3f3f3;border-top:2px solid #3498db;border-radius:50%;animation:spin 1s linear infinite}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@media (max-width: 768px){.loading-spinner{width:15px;height:15px}}@media (max-width: 375px){.loading-spinner{width:12px;height:12px}}@media (max-width: 360px){.chessboard{width:min(80vw,80vh,260px);height:min(80vw,80vh,260px);border-width:4px}.square{font-size:1.5rem}.chess-piece-image{width:20px;height:20px}}.game-mode-selector{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:2rem;text-align:center;background-color:#f7f7f7;min-height:100vh}.game-mode-selector h1{font-size:3rem;margin-bottom:3rem;color:#2c3e50;font-weight:700;text-shadow:0 1px 2px rgba(0,0,0,.1)}.mode-options{display:flex;flex-direction:column;gap:1.5rem;width:100%;max-width:400px}.mode-button{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:2rem;border:2px solid #e0e0e0;border-radius:12px;background-color:#fff;cursor:pointer;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;box-shadow:0 4px 8px #0000001a;min-height:140px}.mode-button:hover{transform:translateY(-5px);box-shadow:0 8px 12px #00000026}.mode-icon{font-size:3rem;margin-bottom:1rem}.mode-button h3{font-size:1.5rem;margin:.5rem 0;color:#2c3e50;font-weight:700}.mode-button p{font-size:1rem;color:#34495e;margin:0;line-height:1.4}.mode-button.disabled{opacity:.6;cursor:not-allowed;background-color:#f5f5f5;border-color:#d0d0d0;position:relative}.mode-button.disabled:hover{transform:none;box-shadow:0 4px 8px #0000001a}.mode-button.disabled .mode-icon,.mode-button.disabled h3,.mode-button.disabled p{color:#999}.coming-soon{position:absolute;top:10px;right:10px;background-color:#ff6b6b;color:#fff;font-size:.7rem;padding:4px 8px;border-radius:12px;font-weight:700;text-transform:uppercase;letter-spacing:.5px}.ai-difficulty-selector{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:2rem;text-align:center;background-color:#f7f7f7;min-height:100vh}.ai-difficulty-selector h2{font-size:2.5rem;margin-bottom:3rem;color:#2c3e50;font-weight:700;text-shadow:0 1px 2px rgba(0,0,0,.1)}.difficulty-options{display:flex;flex-direction:column;gap:1.5rem;width:100%;max-width:400px;margin-bottom:2rem}.difficulty-button{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:1.5rem;border:2px solid #e0e0e0;border-radius:12px;background-color:#fff;cursor:pointer;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;box-shadow:0 4px 8px #0000001a;min-height:120px}.difficulty-button:hover{transform:translateY(-5px);box-shadow:0 8px 12px #00000026}.difficulty-icon{font-size:2.5rem;margin-bottom:1rem}.difficulty-button h3{font-size:1.4rem;margin:.5rem 0;color:#2c3e50;font-weight:700}.difficulty-button p{font-size:.9rem;color:#34495e;margin:0;line-height:1.4}.back-button{background-color:#fff;border:2px solid #bdc3c7;color:#2c3e50;padding:12px 24px;border-radius:8px;cursor:pointer;font-size:1rem;font-weight:600;transition:background-color .2s ease,color .2s ease,border-color .2s ease;box-shadow:0 2px 4px #0000001a}.back-button:hover{background-color:#ecf0f1;color:#34495e;border-color:#95a5a6}.move-history{background:#ffffff1a;border-radius:12px;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,.2);box-shadow:0 8px 32px #0000001a;padding:1.5rem;margin-top:1rem;max-width:600px;margin-left:auto;margin-right:auto}.move-history h3{margin:0 0 1rem;color:#2c3e50;font-size:1.2rem;font-weight:600;text-shadow:1px 1px 2px rgba(255,255,255,.3)}.moves-container{max-height:200px;overflow-y:auto;background:#fffc;border-radius:8px;padding:.8rem}.moves-list{display:grid;grid-template-columns:auto 1fr 1fr;gap:.5rem;font-family:Courier New,monospace}.move-row{display:contents}.move-number{color:#34495e;font-weight:600;font-size:.9rem;text-align:right;padding-right:.5rem}.white-move{color:#2c3e50;font-weight:500;padding:.2rem .5rem;background:#34495e1a;border-radius:4px;margin-right:.5rem;text-align:center}.black-move{color:#8b4513;font-weight:500;padding:.2rem .5rem;background:#8b45131a;border-radius:4px;text-align:center}.no-moves{color:#7f8c8d;text-align:center;font-style:italic;margin:1rem 0}.moves-container::-webkit-scrollbar{width:6px}.moves-container::-webkit-scrollbar-track{background:#0000001a;border-radius:3px}.moves-container::-webkit-scrollbar-thumb{background:#0000004d;border-radius:3px}.moves-container::-webkit-scrollbar-thumb:hover{background:#00000080}@media (max-width: 768px){.move-history{padding:1rem;margin-top:.8rem}.move-history h3{font-size:1.1rem}.moves-container{max-height:150px;padding:.6rem}.moves-list{gap:.3rem}.white-move,.black-move{padding:.1rem .3rem;font-size:.9rem}.move-number{font-size:.8rem}}@media (max-width: 480px){.move-history{padding:.8rem;margin-top:.5rem}.moves-container{max-height:120px;padding:.5rem}.white-move,.black-move{padding:.1rem .2rem;font-size:.8rem}.move-number{font-size:.7rem}}.captured-pieces-container{display:flex;gap:1rem;margin:1rem 0;max-width:600px;margin-left:auto;margin-right:auto}.captured-pieces{flex:1;background:#ffffff1a;border-radius:12px;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,.2);box-shadow:0 8px 32px #0000001a;padding:1rem;text-align:center}.captured-pieces h4{margin:0 0 .8rem;color:#fff;font-size:1rem;font-weight:600;text-shadow:1px 1px 2px rgba(0,0,0,.3)}.pieces-list{display:flex;flex-direction:column;align-items:center;gap:.5rem}.captured-piece{font-size:1.5rem;text-shadow:2px 2px 4px rgba(0,0,0,.7);filter:drop-shadow(1px 1px 2px rgba(0,0,0,.5));margin:.2rem}.white-captured .captured-piece{color:gold}.black-captured .captured-piece{color:silver}.value-total{margin-top:.5rem;padding:.3rem .8rem;background:#0003;border-radius:6px;color:#fff;font-size:.9rem;font-weight:600}.no-pieces{color:#fff9;font-style:italic;margin:.5rem 0}@media (max-width: 768px){.captured-pieces-container{flex-direction:column;gap:.8rem;margin:.8rem 0}.captured-pieces{padding:.8rem}.captured-pieces h4{font-size:.9rem;margin-bottom:.6rem}.captured-piece{font-size:1.3rem}.value-total{font-size:.8rem;padding:.2rem .6rem}}@media (max-width: 480px){.captured-pieces-container{gap:.6rem;margin:.6rem 0}.captured-pieces{padding:.6rem}.captured-pieces h4{font-size:.8rem;margin-bottom:.5rem}.captured-piece{font-size:1.2rem}.value-total{font-size:.7rem;padding:.2rem .5rem}}.lobby{max-width:600px;margin:0 auto;padding:2rem}.lobby-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:2rem}.lobby-header h1{font-size:2.5rem;color:#333;margin:0}.lobby-actions{text-align:center;margin-bottom:2rem}.create-game-button{background-color:#28a745;color:#fff;border:none;padding:12px 24px;border-radius:8px;cursor:pointer;font-size:1.1rem;font-weight:600;transition:background-color .2s ease}.create-game-button:hover:not(:disabled){background-color:#218838}.create-game-button:disabled{background-color:#6c757d;cursor:not-allowed}.games-list-container h2{font-size:1.8rem;color:#333;margin-bottom:1rem;border-bottom:1px solid #eee;padding-bottom:.5rem}.games-list{list-style:none;padding:0;margin:0}.game-item{display:flex;justify-content:space-between;align-items:center;padding:1rem;border:1px solid #ddd;border-radius:8px;margin-bottom:1rem;background-color:#fff}.game-info p{margin:0;color:#555}.game-creator{font-weight:600;margin-bottom:.25rem!important}.game-time{font-size:.9rem;color:#888!important}.game-actions button{border:none;padding:10px 16px;border-radius:6px;cursor:pointer;font-size:1rem;font-weight:500;transition:background-color .2s ease}.join-button{background-color:#007bff;color:#fff}.join-button:hover:not(:disabled){background-color:#0056b3}.copy-link-button{background-color:#17a2b8;color:#fff}.copy-link-button:hover{background-color:#117a8b}.game-actions button:disabled{background-color:#6c757d;cursor:not-allowed}.error-message{color:#721c24;background-color:#f8d7da;border:1px solid #f5c6cb;padding:1rem;border-radius:8px;margin-bottom:1.5rem;text-align:center}.empty-message{text-align:center;color:#666;padding:2rem;background-color:#f9f9f9;border-radius:8px}.back-button{background-color:transparent;border:1px solid #ccc;color:#555;padding:8px 16px;border-radius:8px;cursor:pointer;font-size:.9rem;font-weight:500;transition:background-color .2s ease,color .2s ease}.back-button:hover{background-color:#f0f0f0;color:#333}.game-room{display:flex;justify-content:center;gap:2rem;padding:2rem;max-width:1200px;margin:0 auto;min-height:0;flex-shrink:0}@media (max-width: 768px){.game-room{flex-direction:column;gap:1rem;padding:1rem;min-height:auto}.side-panel{width:100%;order:2;max-height:none}.game-area{order:1;min-height:auto}}.game-area{display:flex;flex-direction:column;justify-content:space-between;gap:1rem}.chessboard-container{display:flex;justify-content:center;align-items:center}.side-panel{display:flex;flex-direction:column;gap:1.5rem;width:280px;padding:1.5rem;background-color:#f8f9fa;border-radius:12px;box-shadow:0 2px 8px #0000000d;max-height:80vh;overflow-y:auto}.status-panel h3,.move-history h3{margin:0 0 1rem;font-size:1.4rem;color:#333;border-bottom:1px solid #e0e0e0;padding-bottom:.5rem}.status-message{font-size:1.1rem;font-weight:500;color:#333;padding:.75rem;border-radius:8px;background-color:#e9ecef;text-align:center}.status-message.game-over{background-color:#d32f2f;color:#fff;font-weight:700}.actions-panel{margin-top:auto;text-align:center}.exit-button{width:100%;background-color:#6c757d;color:#fff;border:none;padding:12px;border-radius:8px;cursor:pointer;font-size:1rem;font-weight:600;transition:background-color .2s ease}.exit-button:hover{background-color:#5a6268}@media (max-width: 992px){.game-room{flex-direction:column;align-items:center}.side-panel{width:100%;max-width:500px}}.player-info{display:flex;flex-direction:column;padding:10px;background-color:#f0f0f0;border-radius:8px}.player-details{display:flex;align-items:center;margin-bottom:8px}.player-name{font-weight:700;font-size:1.1rem;color:#333}.player-color{font-size:.9rem;color:#777;margin-left:8px}.captured-pieces{display:flex;flex-wrap:wrap;gap:4px;min-height:24px}.captured-piece{font-size:1.2rem}@media (max-width: 768px){.player-info{padding:8px;margin:4px 0}.player-details{flex-direction:column;align-items:flex-start;gap:4px}.player-color{margin-left:0;font-size:.8rem}.player-name{font-size:1rem}.captured-pieces{gap:2px;min-height:20px}.captured-piece{font-size:1rem}}*{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}#root{min-height:100vh}
