@import"https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap";.game-board-container{display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:60vh;background:linear-gradient(135deg,#1e1e1e,#2b2b2b);color:#fff;font-family:"Press Start 2P",cursive;padding:20px;box-sizing:border-box}.game-info{text-align:center;margin-bottom:20px}.game-info h2{font-size:1.8em;margin-bottom:10px}.game-info p{font-size:1em}.your-turn{color:#4caf50;font-weight:700}.waiting-turn{color:#ff4757;font-weight:700}.game-board{display:grid;grid-template-columns:repeat(11,50px);grid-template-rows:repeat(11,50px);gap:5px;width:600px;height:600px;margin:0 auto;padding:10px;background-color:#2b2b2b;border-radius:10px;box-shadow:0 4px 10px #00000080;overflow:auto}.board-row{display:contents}.board-cell{width:50px;height:50px;background-color:#424242;display:flex;align-items:center;justify-content:center;border:2px solid #333;border-radius:5px;cursor:pointer;transition:background-color .3s,transform .2s;position:relative;font-size:1.5em;color:#fff}.board-cell.revealed{background-color:#4caf50;transition:background-color .3s;animation:revealFadeIn .5s ease-in-out}.board-cell:hover{background-color:#616161;transform:scale(1.05)}.board-cell:active{transform:scale(.95)}.board-cell span{pointer-events:none}@keyframes revealFadeIn{0%{opacity:0;transform:scale(.8)}to{opacity:1;transform:scale(1)}}.actions-bar{display:flex;justify-content:center;gap:15px;flex-wrap:wrap;margin:20px auto;width:600px;padding:10px;background-color:#2b2b2b;border-radius:10px;box-shadow:0 4px 10px #00000080}.action-button{display:flex;align-items:center;gap:5px;padding:10px 20px;font-size:.9em;background-color:#ff4757;color:#fff;border:none;border-radius:8px;cursor:pointer;transition:background-color .3s,transform .2s;box-shadow:0 4px 6px #0000004d;min-width:150px;text-align:center;position:relative}.action-button .action-icon{font-size:1.2em}.action-button.selected{background-color:#2ed573}.action-button.selected.pulse{animation:pulse 1s infinite}.action-button:hover:not(.disabled):not(.selected){background-color:#e84118;transform:scale(1.05)}.action-button:active:not(.disabled):not(.selected){transform:scale(.95)}.action-button.disabled{background-color:#555;cursor:not-allowed;opacity:.7}.action-button.disabled .action-icon{opacity:.7}.tooltip{visibility:hidden;width:200px;background-color:#555;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1;bottom:125%;left:50%;margin-left:-100px;opacity:0;transition:opacity .3s;font-size:.8em}.tooltip:after{content:"";position:absolute;top:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:#555 transparent transparent transparent}.action-button:hover .tooltip{visibility:visible;opacity:1}.waiting-screen{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100vh;background:linear-gradient(135deg,#1e1e1e,#2b2b2b);color:#fff;font-family:"Press Start 2P",cursive;padding:20px;box-sizing:border-box;text-align:center}.logo{height:15em;padding:.2em;will-change:filter;transition:filter .3s,transform .3s;animation:bounce 2s infinite;margin-bottom:20px}.waiting-screen h2{margin-bottom:10px;font-size:1.5em}.waiting-screen p{margin-bottom:30px;font-size:1em}.spinner{border:8px solid #f3f3f3;border-top:8px solid #ff4757;border-radius:50%;width:60px;height:60px;animation:spin 1.5s linear infinite}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@media (max-width: 480px){.logo{height:10em}.waiting-screen h2{font-size:1.2em}.waiting-screen p{font-size:.9em}.spinner{width:40px;height:40px;border-width:6px}}html,body{margin:0;padding:0;font-family:"Press Start 2P",cursive}.username-screen{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100vh;background:linear-gradient(135deg,#1e1e1e,#2b2b2b);color:#fff;font-family:"Press Start 2P",cursive;padding:20px;box-sizing:border-box}.logo{height:15em;padding:.2em;will-change:filter;transition:filter .3s,transform .3s;animation:bounce 2s infinite}.logo:hover{filter:brightness(1.2);transform:scale(1.05)}@keyframes bounce{0%,20%,50%,80%,to{transform:translateY(0)}40%{transform:translateY(-20px)}60%{transform:translateY(-10px)}}.username-screen h2{margin-bottom:20px;font-size:1.5em;text-align:center}.username-screen form{display:flex;flex-direction:column;align-items:center;width:100%;max-width:400px}.username-screen input{padding:12px 20px;font-size:16px;margin-bottom:10px;border:2px solid #555;border-radius:8px;width:100%;box-sizing:border-box;text-align:center;background-color:#2b2b2b;color:#fff;transition:border-color .3s,background-color .3s}.username-screen input:focus{border-color:#ff4757;background-color:#3c3c3c;outline:none}.username-screen button{padding:12px 20px;font-size:16px;background-color:#ff4757;color:#fff;border:none;border-radius:8px;cursor:pointer;width:100%;max-width:200px;transition:background-color .3s,transform .2s;box-shadow:0 4px 6px #0000004d}.username-screen button:hover{background-color:#e84118;transform:scale(1.05)}.username-screen button:active{transform:scale(.95)}.error{color:#ff6b6b;margin-bottom:10px;font-size:14px;text-align:center}@media (max-width: 480px){.logo{height:10em}.username-screen h2{font-size:1.2em}.username-screen input,.username-screen button{font-size:14px;padding:10px 16px}}.end-game-screen{display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:100vh;background:#000000d9;color:#fff;font-family:"Press Start 2P",cursive;padding:20px;box-sizing:border-box;position:fixed;top:0;left:0;width:100%;height:100%;z-index:1000;animation:fadeIn .5s ease-in-out}.end-game-message{font-size:2.5em;margin-bottom:20px;text-align:center}.end-game-icon{font-size:6em;margin-bottom:20px}.rematch-message{font-size:1.2em;margin-bottom:30px;text-align:center;color:#ff4757}.end-game-buttons{display:flex;gap:20px;justify-content:center;align-items:center}.end-rematch-button,.end-exit-button{display:flex;align-items:center;justify-content:center;gap:5px;padding:12px 24px;font-size:1em;font-family:"Press Start 2P",cursive;color:#fff;border:none;border-radius:8px;cursor:pointer;transition:background-color .3s,transform .2s;box-shadow:0 4px 6px #0000004d;min-width:160px;text-align:center;position:relative}.end-rematch-button{background-color:#2ed573}.end-rematch-button:hover:not(.disabled){background-color:#1eae68}.end-rematch-button:active:not(.disabled){transform:scale(.95)}.end-exit-button{background-color:#2f3542}.end-exit-button:hover:not(.disabled){background-color:#57606f}.end-exit-button:active:not(.disabled){transform:scale(.95)}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes pulse{0%{box-shadow:0 0 10px #2ed573}50%{box-shadow:0 0 20px #2ed573}to{box-shadow:0 0 10px #2ed573}}body,html,#root,.App{margin:0;padding:0;height:100%;width:100%;font-family:"Press Start 2P",cursive;background:linear-gradient(135deg,#1e1e1e,#2b2b2b);color:#fff}.App{display:flex;flex-direction:column;align-items:center;justify-content:center}
