@font-face{font-family:MyFont;src:url(my.ttf)format("truetype");font-weight:400;font-style:normal;font-display:swap}:root{--primary-color:#f7b731;--primary-dark:#e6a722;--dark-bg:#0d1117;--darker-bg:#161b22;--light-bg:#ffffff14;--white-square:#f0d9b5;--black-square:#b58863;--text-color:#f0f0f0;--text-secondary:#8b949e;--shadow-dark:#00000080;--shadow-light:#0000004d}*{box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;margin:0;padding:0;font-family:Vazirmatn,Segoe UI,MyFont,Tahoma,Geneva,Verdana,sans-serif}body{background:var(--dark-bg);color:var(--text-color);flex-direction:column;justify-content:center;align-items:center;width:100%;min-height:100vh;padding:20px;font-size:16px;line-height:1.6;display:flex;overflow-x:hidden}.container{flex-direction:column;align-items:center;gap:25px;width:100%;max-width:1400px;padding:0 10px;display:flex}header{text-align:center;background:var(--darker-bg);border:2px solid var(--primary-color);width:100%;box-shadow:0 8px 25px var(--shadow-dark);border-radius:15px;margin-bottom:10px;padding:20px}h1{color:var(--primary-color);text-shadow:0 2px 8px var(--shadow-dark);margin-bottom:12px;font-size:2.8rem;font-weight:700;line-height:1.2}.subtitle{color:var(--text-secondary);margin-bottom:8px;font-size:1.2rem;line-height:1.4}.main-content{flex-wrap:wrap;justify-content:center;gap:30px;width:100%;display:flex}.chess-section,.info-section{background:var(--light-bg);min-width:350px;box-shadow:0 8px 25px var(--shadow-light);backdrop-filter:blur(10px);border:1px solid #ffffff1a;border-radius:15px;flex:1;padding:25px}.section-title{color:var(--primary-color);border-bottom:3px solid #f7b73166;margin-bottom:20px;padding-bottom:10px;font-size:1.7rem;font-weight:600}.game-mode{flex-wrap:wrap;gap:12px;margin-bottom:20px;display:flex}.mode-btn{min-width:140px;color:var(--text-color);cursor:pointer;background:#ffffff1a;border:1px solid #ffffff1a;border-radius:10px;flex:1;padding:14px;font-size:1.05rem;font-weight:500;transition:all .3s}.mode-btn.active{background:var(--primary-color);color:var(--dark-bg);border-color:var(--primary-color);font-weight:600;box-shadow:0 5px 15px #f7b73166}.mode-btn:hover:not(.active){background:#ffffff26;transform:translateY(-2px)}.mode-btn.disabled{opacity:.4;cursor:not-allowed;pointer-events:none;filter:grayscale()}.settings{background:#0000004d;border:1px solid #ffffff1a;border-radius:12px;margin-bottom:25px;padding:18px}.setting-group{margin-bottom:18px}.setting-group:last-child{margin-bottom:0}.setting-group label{color:var(--primary-color);margin-bottom:10px;font-size:1.05rem;font-weight:500;display:block}select{width:100%;color:var(--text-color);cursor:pointer;background:#0006;border:2px solid #fff3;border-radius:8px;padding:12px 15px;font-size:1rem;transition:all .3s}select:focus{border-color:var(--primary-color);outline:none;box-shadow:0 0 0 3px #f7b73133}.chess-board-container{justify-content:center;width:100%;margin-bottom:25px;padding:5px;display:flex;position:relative}.chess-board{aspect-ratio:1;width:100%;max-width:500px;box-shadow:0 12px 30px var(--shadow-dark);direction:ltr;border:4px solid #2d3436;border-radius:8px;grid-template-rows:repeat(8,1fr);grid-template-columns:repeat(8,1fr);transition:transform .3s;display:grid;position:relative;overflow:visible}.board-coordinates{pointer-events:none;z-index:1}.coordinate-file{width:12.5%;height:25px;color:var(--text-secondary);pointer-events:none;z-index:2;justify-content:center;align-items:center;font-family:Vazirmatn,MyFont,sans-serif;font-size:13px;font-weight:600;display:flex;position:absolute;bottom:-25px}.coordinate-rank{width:25px;height:12.5%;color:var(--text-secondary);pointer-events:none;z-index:2;justify-content:center;align-items:center;font-family:Vazirmatn,MyFont,sans-serif;font-size:13px;font-weight:600;display:flex;position:absolute;left:-25px;right:auto}.cell{cursor:pointer;pointer-events:auto;justify-content:center;align-items:center;transition:background-color .2s;display:flex;position:relative}.cell.light{background-color:var(--white-square)}.cell.dark{background-color:var(--black-square)}.cell.selected{background-color:#3498dbb3!important}.piece{cursor:pointer;z-index:2;pointer-events:auto;justify-content:center;align-items:center;width:100%;height:100%;transition:transform .2s;display:flex;position:relative}.piece-svg{object-fit:contain;filter:drop-shadow(2px 2px 3px #0000004d);pointer-events:auto;width:85%;height:85%;transition:transform .2s}.piece:hover .piece-svg{transform:scale(1.1)}.cell.possible-move:after{content:"";z-index:1;background-color:#2ecc71cc;border-radius:50%;width:22px;height:22px;animation:2s infinite pulse;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.cell.possible-capture:before{content:"";box-sizing:border-box;z-index:1;border:3px solid #e74c3ccc;border-radius:50%;width:88%;height:88%;animation:2s infinite pulse-border;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}@keyframes pulse{0%{opacity:.7;transform:translate(-50%,-50%)scale(.9)}50%{opacity:1;transform:translate(-50%,-50%)scale(1.1)}to{opacity:.7;transform:translate(-50%,-50%)scale(.9)}}@keyframes pulse-border{0%{opacity:.7;border-width:3px}50%{opacity:1;border-width:4px}to{opacity:.7;border-width:3px}}.cell.in-check{animation:1.5s infinite check-pulse;background-color:#e74c3cb3!important}.cell.in-checkmate{animation:none;box-shadow:inset 0 0 20px #000000b3;background-color:#921515!important}@keyframes check-pulse{0%{background-color:#e74c3cb3!important}50%{background-color:#e74c3ce6!important}to{background-color:#e74c3cb3!important}}.game-info{margin-bottom:20px}.status{border-left:5px solid var(--primary-color);background:#0000004d;border-radius:10px;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:10px;padding:15px;display:flex}.turn-indicator{color:var(--primary-color);flex:1;min-width:150px;font-size:1.15rem;font-weight:600}.thinking{color:var(--primary-color);align-items:center;gap:8px;font-size:1.05rem;font-weight:600;display:flex}.controls{flex-wrap:wrap;justify-content:center;gap:12px;margin-top:20px;display:flex}.btn{cursor:pointer;pointer-events:auto;border:1px solid #0000;border-radius:10px;justify-content:center;align-items:center;gap:8px;min-width:150px;padding:14px 22px;font-size:1.05rem;font-weight:600;transition:all .3s;display:flex}.btn-primary{background:var(--primary-color);color:var(--dark-bg)}.btn-secondary{color:var(--text-color);background:#ffffff1a;border-color:#fff3}.btn:hover{box-shadow:0 7px 15px var(--shadow-light);transform:translateY(-3px)}.btn-primary:hover{background:var(--primary-dark)}.btn-secondary:hover{background:#ffffff26}.alerts{margin-top:20px}.check-warning,.checkmate-warning,.draw-warning,.win-warning{text-align:center;border-radius:10px;margin-bottom:10px;padding:14px;font-size:1.05rem;font-weight:600;animation:.5s fadeIn;display:none}@keyframes fadeIn{0%{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}.check-warning{color:#ff7675;background:#e74c3c33;border-left:5px solid #e74c3c}.checkmate-warning{color:#ff5252;background:#c0392b4d;border-left:5px solid #c0392b}.win-warning{color:#2ecc71;background:#2ecc7133;border-left:5px solid #27ae60}.draw-warning{color:#74b9ff;background:#3498db33;border-left:5px solid #3498db}.player-info{flex-wrap:wrap;gap:18px;margin-bottom:25px;display:flex}.player-card{background:#0000004d;border-top:5px solid;border-radius:12px;flex:1;min-width:200px;padding:18px;transition:transform .3s}.player-card:hover{transform:translateY(-5px)}.player-card.white{border-color:var(--white-square)}.player-card.black{border-color:#000}.player-header{color:var(--primary-color);align-items:center;gap:8px;margin-bottom:12px;font-size:1.25rem;font-weight:700;display:flex}.player-stats{color:var(--text-secondary);flex-direction:column;gap:8px;font-size:1.05rem;display:flex}.player-stats div{justify-content:space-between;align-items:center;display:flex}.player-stats span{color:var(--primary-color);font-size:1.3rem;font-weight:700}.captured-pieces-section{background:#0003;border:1px solid #ffffff1a;border-radius:12px;margin-bottom:25px;padding:18px}.captured-pieces-section h3{color:var(--primary-color);border-bottom:2px solid #f7b7314d;margin-bottom:15px;padding-bottom:8px;font-size:1.3rem}.captured-pieces-container{flex-wrap:wrap;gap:18px;display:flex}.captured-pieces{flex:1;min-width:140px}.captured-pieces h4{color:var(--text-secondary);margin-bottom:10px;padding-right:5px;font-size:1.05rem;font-weight:500}.captured-list{background:#0000004d;border:1px solid #ffffff1a;border-radius:8px;flex-wrap:wrap;align-items:center;gap:8px;min-height:45px;padding:12px;display:flex}.captured-piece-item{cursor:default;background:#ffffff26;border-radius:5px;justify-content:center;align-items:center;width:35px;height:35px;transition:all .3s;display:flex;position:relative}.captured-piece-item:hover{z-index:10;background:#ffffff40;transform:scale(1.2)}.captured-piece-item:hover:after{content:attr(title);color:#fff;white-space:nowrap;z-index:100;background:#000000e6;border-radius:5px;padding:5px 10px;font-size:.9rem;position:absolute;bottom:100%;left:50%;transform:translate(-50%)}.captured-svg{object-fit:contain;filter:drop-shadow(1px 1px 2px #0000004d)brightness(1.15)contrast(1.1);width:28px;height:28px}.moves-history{margin-bottom:20px}.moves-history h3{color:var(--primary-color);border-bottom:2px solid #f7b7314d;margin-bottom:12px;padding-bottom:8px;font-size:1.3rem}.moves-list{background:#0003;border:1px solid #ffffff1a;border-radius:10px;height:150px;padding:15px;overflow-y:auto}.full-game-analysis{background:#0003;border:1px solid #ffffff1a;border-radius:12px;margin-bottom:25px;padding:18px}.full-game-analysis h3{color:var(--primary-color);border-bottom:2px solid #f7b7314d;justify-content:space-between;align-items:center;margin-bottom:15px;padding-bottom:8px;font-size:1.3rem;display:flex}.analyze-game-btn{background:var(--primary-color);color:var(--dark-bg);cursor:pointer;border:none;border-radius:6px;padding:8px 16px;font-size:.9rem;font-weight:600;transition:all .3s}.analyze-game-btn:hover{background:var(--primary-dark);transform:translateY(-2px)}.analysis-content{background:#0000004d;border:1px solid #ffffff1a;border-radius:8px;min-height:100px;max-height:400px;padding:15px;font-family:Vazirmatn,monospace;font-size:.95rem;line-height:1.5;overflow-y:auto}.analysis-item{border-bottom:1px solid #ffffff1a;align-items:flex-start;margin-bottom:10px;padding-bottom:10px;display:flex}.analysis-item:last-child{border-bottom:none;margin-bottom:0;padding-bottom:0}.move-number{color:var(--primary-color);text-align:right;min-width:30px;font-weight:600}.move-notation{color:var(--text-color);text-align:center;min-width:50px;font-weight:500}.move-evaluation{text-align:center;min-width:40px;margin-right:10px;font-weight:600}.eval-good{color:#2ecc71}.eval-ok{color:#3498db}.eval-bad{color:#e74c3c}.eval-blunder{color:#c0392b;font-weight:800}.move-comment{color:var(--text-secondary);margin-top:5px;padding-right:50px;font-size:.85rem;font-style:italic;line-height:1.4}.summary{border-right:3px solid var(--primary-color);background:#0006;border-radius:8px;margin-top:15px;padding:12px}.summary h4{color:var(--primary-color);margin-bottom:8px;font-size:1.05rem}.summary p{margin-bottom:5px;font-size:.9rem;line-height:1.5}.moves-list::-webkit-scrollbar,.analysis-content::-webkit-scrollbar{width:8px}.moves-list::-webkit-scrollbar-track,.analysis-content::-webkit-scrollbar-track{background:#0003;border-radius:4px}.moves-list::-webkit-scrollbar-thumb,.analysis-content::-webkit-scrollbar-thumb{background:var(--primary-color);border-radius:4px}.moves-list::-webkit-scrollbar-thumb:hover,.analysis-content::-webkit-scrollbar-thumb:hover{background:var(--primary-dark)}.move-item{border-bottom:1px solid #ffffff1a;align-items:center;gap:15px;padding:10px 12px;font-family:Vazirmatn,monospace;font-size:1.05rem;transition:background-color .2s;display:flex}.move-item:hover{background-color:#ffffff0d}.move-item:last-child{border-bottom:none}.move-item.current{border-right:3px solid var(--primary-color);background-color:#f7b7311a}.promotion-dialog{z-index:1000;background:#000000eb;justify-content:center;align-items:center;width:100%;height:100%;animation:.3s fadeIn;display:none;position:fixed;top:0;left:0}.promotion-options{background:var(--darker-bg);text-align:center;border:3px solid var(--primary-color);border-radius:15px;width:90%;max-width:450px;padding:30px;box-shadow:0 15px 40px #000000b3}.promotion-title{color:var(--primary-color);margin-bottom:25px;font-size:1.4rem;font-weight:600}.promotion-pieces{grid-template-columns:repeat(2,1fr);gap:15px;display:grid}.promotion-piece{cursor:pointer;background:#ffffff1a;border:2px solid #0000;border-radius:12px;flex-direction:column;align-items:center;gap:12px;padding:20px;transition:all .3s;display:flex}.promotion-piece:hover{border-color:var(--primary-color);background:#f7b73133;transform:scale(1.08)}.promotion-piece img{object-fit:contain;filter:drop-shadow(2px 2px 4px #00000080);width:50px;height:50px}.promotion-piece-name{color:var(--text-color);font-size:1.1rem;font-weight:500}footer{text-align:center;width:100%;color:var(--text-secondary);border-top:2px solid #ffffff1a;margin-top:25px;padding-top:20px;font-size:.95rem}footer p:first-child{color:var(--primary-color);margin-bottom:8px;font-size:1.05rem;font-weight:600}@media (width<=1200px){.main-content{flex-direction:column;align-items:center;gap:25px}.chess-section,.info-section{width:100%;min-width:auto;max-width:700px}}@media (width<=992px){.container{padding:0 15px}h1{font-size:2.3rem}.subtitle{font-size:1.1rem}.section-title{font-size:1.5rem}.chess-board{max-width:85vw;max-height:85vw}.player-info{flex-direction:column}.player-card{min-width:100%}.captured-pieces-container{flex-direction:column;gap:15px}.captured-pieces{min-width:100%}}@media (width<=768px){body{padding:15px;font-size:15px}header{padding:18px}h1{font-size:2rem}.chess-section,.info-section{padding:20px}.chess-board{border-width:3px;max-width:90vw;max-height:90vw}.piece-svg{width:80%;height:80%}.btn{min-width:140px;padding:12px 18px;font-size:1rem}.game-mode{flex-direction:column}.mode-btn{width:100%}.color-select{flex-direction:column}.promotion-pieces{grid-template-columns:1fr;gap:12px}.promotion-piece{padding:18px}.captured-piece-item{width:32px;height:32px}.captured-svg{width:25px;height:25px}.moves-list{height:130px}.analysis-content{max-height:150px}}@media (width<=576px){body{padding:12px;font-size:14px}h1{font-size:1.8rem}.subtitle{font-size:1rem}.chess-section,.info-section{padding:18px}.section-title{font-size:1.4rem}.chess-board{max-width:95vw;max-height:95vw}.piece-svg{width:75%;height:75%}.controls{flex-direction:column;width:100%}.btn{width:100%;max-width:none;padding:14px}.status{flex-direction:column;align-items:flex-start;gap:10px}.turn-indicator,.thinking{text-align:center;width:100%}.captured-piece-item{width:28px;height:28px}.captured-svg{width:22px;height:22px}.promotion-options{width:95%;padding:20px}.promotion-piece img{width:40px;height:40px}}@media (width<=400px){h1{font-size:1.6rem}.chess-board{max-width:98vw;max-height:98vw}.piece-svg{width:70%;height:70%}.captured-piece-item{width:25px;height:25px}.captured-svg{width:20px;height:20px}.container{overflow-x:hidden}}@media (height<=600px) and (orientation:landscape){body{justify-content:flex-start;min-height:auto;padding:10px}.main-content{flex-flow:row;gap:15px}.chess-section,.info-section{min-width:auto;height:85vh;padding:15px;overflow-y:auto}.chess-board{max-width:60vh;max-height:60vh}.moves-list{height:100px}.captured-pieces-container{flex-direction:row}.captured-piece-item{width:22px;height:22px}.captured-svg{width:18px;height:18px}.analysis-content{max-height:120px}}@media (width>=768px) and (width<=1024px){.chess-board{max-width:75vw;max-height:75vw}.piece-svg{width:85%;height:85%}.captured-piece-item{width:34px;height:34px}.captured-svg{width:28px;height:28px}}@media (width>=1600px){.container{max-width:1600px}.chess-board{max-width:550px}.piece-svg{width:90%;height:90%}}@keyframes slideIn{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.chess-section,.info-section{animation:.5s slideIn}.chess-section{animation-delay:.1s}.info-section{animation-delay:.2s}.move-color{color:var(--primary-color);text-align:center;min-width:35px;margin:0 5px;font-weight:600}.analysis-section{border-right:3px solid var(--primary-color);background:#0000004d;border-radius:8px;margin-bottom:12px;padding:12px}.analysis-section h5{color:var(--primary-color);align-items:center;gap:8px;margin-bottom:10px;font-size:1.05rem;display:flex}.analysis-section p{color:var(--text-secondary);margin-bottom:6px;font-size:.9rem;line-height:1.6}.analysis-section p strong{color:var(--text-color)}.analysis-section p:last-child{margin-bottom:0}