@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap";:root{--bg:#000;--bg-surface:#0a0a0a;--bg-card:#141414;--bg-card-hover:#1e1e1e;--accent:#28ff67;--accent-dark:#116b2b;--accent-glow:#28ff6726;--text:#ededed;--text-muted:#a8a8a8;--border:#1f1f1f;--border-hover:#333;--error:#dc2626;--success:#32d74b;--font:"Inter", sans-serif;--sidebar-width:280px}*{box-sizing:border-box;font-family:var(--font);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0;padding:0}body{background-color:var(--bg);color:var(--text);overflow-x:hidden}::-webkit-scrollbar{width:6px;height:6px}::-webkit-scrollbar-track{background:var(--bg)}::-webkit-scrollbar-thumb{background:#333;border-radius:3px}::-webkit-scrollbar-thumb:hover{background:var(--accent)}.app-container{background-color:var(--bg);flex-direction:column;width:100vw;height:100vh;display:flex}.app-header{background-color:var(--bg-surface);border-b:1px solid var(--border);border-bottom:1px solid var(--border);z-index:10;justify-content:space-between;align-items:center;height:64px;padding:0 24px;display:flex}.header-user-info{text-align:right;display:none}@media (width>=768px){.header-user-info{display:block}}.logo-container{align-items:center;gap:10px;display:flex}.logo-text{letter-spacing:-.025em;color:var(--text);font-size:1.25rem;font-weight:700}.logo-highlight{color:var(--accent);text-shadow:0 0 10px var(--accent-glow)}.app-body{flex:1;display:flex;position:relative;overflow:hidden}.sidebar{width:var(--sidebar-width);background-color:var(--bg-surface);border-right:1px solid var(--border);flex-direction:column;transition:transform .3s;display:flex;overflow-y:auto}.sidebar-title{text-transform:uppercase;letter-spacing:.05em;color:var(--text-muted);padding:24px 20px 10px;font-size:.75rem;font-weight:600}.session-item{cursor:pointer;border-left:2px solid #0000;justify-content:space-between;align-items:center;padding:12px 20px;transition:all .2s;display:flex}.session-item:hover{background-color:var(--bg-card)}.session-item.active{border-left-color:var(--accent);background-color:var(--accent-glow);color:#fff}.session-name{font-size:.9rem;font-weight:500}.session-badge{background-color:var(--border);color:var(--text-muted);border-radius:10px;padding:2px 6px;font-size:.7rem}.session-item.active .session-badge{background-color:var(--accent);color:#000;font-weight:600}.content-panel{flex:1;display:flex;overflow:hidden}.player-list-panel{border-right:1px solid var(--border);background-color:var(--bg-surface);flex-direction:column;width:300px;display:flex;overflow-y:auto}.player-detail-panel{background-color:var(--bg);flex-direction:column;flex:1;display:flex;overflow:hidden}.panel-header{border-bottom:1px solid var(--border);padding:20px}.panel-title{color:var(--text);font-size:1.1rem;font-weight:600}.player-item{border-bottom:1px solid var(--border);cursor:pointer;align-items:center;gap:15px;padding:15px 20px;transition:all .2s;display:flex}.player-item:hover{background-color:var(--bg-card)}.player-item.active{background-color:var(--bg-card-hover);border-right:3px solid var(--accent)}.jersey-circle{background-color:var(--border);width:36px;height:36px;color:var(--text);border:1px solid var(--border-hover);border-radius:50%;justify-content:center;align-items:center;font-size:.95rem;font-weight:700;display:flex}.player-item.active .jersey-circle{background-color:var(--accent);color:#000;border-color:var(--accent)}.player-info{flex:1}.player-name{font-size:.9rem;font-weight:500}.player-sub{color:var(--text-muted);margin-top:2px;font-size:.75rem}.player-score{color:var(--accent);font-size:1.1rem;font-weight:700}.tabs-container{border-bottom:1px solid var(--border);background-color:var(--bg-surface);padding:0 20px;display:flex;overflow-x:auto}.tab-button{color:var(--text-muted);cursor:pointer;white-space:nowrap;background:0 0;border:none;border-bottom:2px solid #0000;padding:16px 20px;font-size:.85rem;font-weight:600;transition:all .2s}.tab-button:hover{color:var(--text)}.tab-button.active{color:var(--accent);border-bottom-color:var(--accent)}.tab-content{flex-direction:column;flex:1;gap:24px;padding:24px;display:flex;overflow-y:auto}.stat-grid{grid-template-columns:repeat(auto-fill,minmax(140px,1fr));gap:16px;display:grid}.stat-card{background-color:var(--bg-card);border:1px solid var(--border);border-radius:8px;flex-direction:column;gap:8px;padding:16px;transition:all .2s;display:flex}.stat-card:hover{border-color:var(--border-hover)}.stat-label{color:var(--text-muted);font-size:.75rem;font-weight:500}.stat-val{color:#fff;font-size:1.5rem;font-weight:700}.stat-val.accent{color:var(--accent)}.btn{cursor:pointer;background:0 0;border:1px solid #0000;border-radius:4px;padding:8px 16px;font-size:.85rem;font-weight:600;transition:all .2s}.btn-primary{background-color:var(--accent);color:#000}.btn-primary:hover{background-color:#1fe057;box-shadow:0 0 12px #28ff6766}.btn-secondary{border-color:var(--border);color:var(--text)}.btn-secondary:hover{background-color:var(--bg-card);border-color:var(--border-hover)}.login-container{background-color:var(--bg);justify-content:center;align-items:center;width:100vw;height:100vh;padding:20px;display:flex}.login-card{background-color:var(--bg-surface);border:1px solid var(--border);border-radius:12px;flex-direction:column;gap:24px;width:100%;max-width:400px;padding:32px;display:flex;box-shadow:0 10px 30px #00000080}.login-header{text-align:center;flex-direction:column;gap:8px;display:flex}.form-group{flex-direction:column;gap:8px;display:flex}.form-label{color:var(--text-muted);font-size:.8rem;font-weight:600}.form-input{background-color:var(--bg);border:1px solid var(--border);color:var(--text);border-radius:6px;outline:none;padding:12px 16px;font-size:.95rem;transition:all .2s}.form-input:focus{border-color:var(--accent);box-shadow:0 0 8px var(--accent-glow)}.error-text{color:var(--error);margin-top:4px;font-size:.8rem}.video-section{flex-direction:column;gap:16px;display:flex}.video-player-container{aspect-ratio:16/9;border:1px solid var(--border);background-color:#000;border-radius:8px;width:100%;position:relative;overflow:hidden}.video-element{object-fit:contain;width:100%;height:100%}.match-selector{gap:8px;padding-bottom:8px;display:flex;overflow-x:auto}.match-pill{background-color:var(--bg-card);border:1px solid var(--border);color:var(--text-muted);cursor:pointer;border-radius:20px;padding:6px 12px;font-size:.8rem;font-weight:600;transition:all .2s}.match-pill:hover{border-color:var(--border-hover);color:var(--text)}.match-pill.active{background-color:var(--accent);color:#000;border-color:var(--accent)}.v2-table-container{border:1px solid var(--border);border-radius:8px;width:100%;overflow-x:auto}.v2-table{border-collapse:collapse;text-align:left;width:100%;font-size:.85rem}.v2-table th,.v2-table td{border-bottom:1px solid var(--border);padding:12px 16px}.v2-table th{background-color:var(--bg-surface);color:var(--text-muted);font-weight:600}.v2-table tr:hover td{background-color:var(--bg-card)}.v2-table tr:last-child td{border-bottom:none}@media (width<=768px){.app-body{flex-direction:column}.sidebar{border-right:none;border-bottom:1px solid var(--border);width:100%;height:auto;max-height:200px}.content-panel{flex-direction:column;flex:1;overflow-y:auto}.player-list-panel{border-right:none;border-bottom:1px solid var(--border);width:100%;height:auto;max-height:240px}.player-detail-panel{flex:1;height:auto}}
