:root{--text:#4a4a4a;--text-h:#1a1a1a;--bg:#f8f9fa;--sidebar-bg:#fff;--card-bg:#fff;--border:#e9ecef;--code-bg:#f1f3f5;--accent:#4c6ef5;--accent-bg:#4c6ef51a;--accent-border:#4c6ef54d;--social-bg:#f1f3f5;--shadow:0 2px 4px #0000000d, 0 1px 2px #0000001a;--sans:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;--heading:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;--mono:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;font:16px/1.5 var(--sans);--lightningcss-light:initial;--lightningcss-dark: ;color-scheme:light;color:var(--text);background:var(--bg);-webkit-font-smoothing:antialiased}#root{text-align:left;box-sizing:border-box;flex-direction:column;width:100%;max-width:100vw;min-height:100svh;margin:0;display:flex}body{background-color:var(--bg);margin:0}h1,h2,h3,h4{font-family:var(--heading);color:var(--text-h);margin:0;font-weight:600}h1{letter-spacing:-.02em;font-size:2.5rem}h2{letter-spacing:-.01em;font-size:1.75rem}p{margin:0 0 1rem}code{font-family:var(--mono);background:var(--code-bg);color:var(--accent);border-radius:4px;padding:.2rem .4rem;font-size:.9em}.admin-container{background-color:var(--bg);width:100vw;height:100vh;color:var(--text);display:flex;overflow:hidden}.admin-sidebar{background:var(--sidebar-bg);border-right:1px solid var(--border);z-index:10;flex-direction:column;width:260px;padding:1.5rem 0;transition:all .3s;display:flex;box-shadow:2px 0 8px #00000005}.admin-header{align-items:center;gap:.75rem;padding:0 1.5rem 2rem;display:flex}.admin-logo{background:var(--accent);color:#fff;border-radius:8px;justify-content:center;align-items:center;width:32px;height:32px;font-size:1.1rem;font-weight:700;display:flex}.admin-title{color:var(--text-h);letter-spacing:-.01em;font-size:1.2rem;font-weight:700}.admin-nav{flex-direction:column;flex:1;gap:.25rem;padding:0 .75rem;display:flex}.nav-item{color:var(--text);border-radius:6px;align-items:center;gap:.75rem;padding:.75rem;font-size:.95rem;font-weight:500;text-decoration:none;transition:all .15s;display:flex}.nav-item:hover{color:var(--text-h);background:#f1f3f5}.nav-item.active{background:var(--accent-bg);color:var(--accent);font-weight:600}.nav-item-icon{font-size:1.1rem}.admin-main{background:#f8f9fa;flex-direction:column;flex:1;display:flex;overflow:hidden}.admin-topbar{border-bottom:1px solid var(--border);z-index:5;background:#fff;justify-content:space-between;align-items:center;height:64px;padding:0 2rem;display:flex}.topbar-title{color:var(--text-h);font-size:1.25rem;font-weight:600}.topbar-actions{align-items:center;gap:1.25rem;display:flex}.topbar-user{background:var(--accent-bg);width:36px;height:36px;color:var(--accent);border:1px solid var(--accent-border);cursor:pointer;border-radius:50%;justify-content:center;align-items:center;font-weight:600;display:flex}.admin-content{flex:1;padding:2rem;overflow-y:auto}.card{border:1px solid var(--border);background:#fff;border-radius:12px;padding:1.5rem;box-shadow:0 1px 3px #0000000d}.admin-table-container{border:1px solid var(--border);background:#fff;border-radius:8px;width:100%;overflow-x:auto}.admin-table{border-collapse:collapse;text-align:left;width:100%}.admin-table th{text-transform:uppercase;letter-spacing:.02em;color:#8c8c8c;border-bottom:1px solid var(--border);background:#f8f9fa;padding:.75rem 1rem;font-size:.75rem;font-weight:600}.admin-table td{border-bottom:1px solid var(--border);color:var(--text-h);padding:1rem;font-size:.9rem}.admin-table tr:hover td{background:#fafafa}.admin-table tr:last-child td{border-bottom:none}.status-badge{border-radius:4px;align-items:center;padding:.25rem .5rem;font-size:.75rem;font-weight:600;display:inline-flex}.status-active{color:#2b8a3e;background:#ebfbee}.status-inactive{color:#c92a2a;background:#fff5f5}.status-pending{color:#e67700;background:#fff9db}.btn-primary{background:var(--accent);color:#fff;cursor:pointer;border:none;border-radius:6px;padding:.5rem 1rem;font-size:.9rem;font-weight:600;transition:all .1s}.btn-primary:hover{background:#3b5bdb}.btn-outline{color:var(--text);border:1px solid var(--border);cursor:pointer;background:0 0;border-radius:6px;padding:.5rem 1rem;font-size:.9rem;font-weight:500}.btn-outline:hover{background:#f8f9fa;border-color:#ced4da}.action-bar{justify-content:space-between;align-items:center;margin-bottom:1.5rem;display:flex}.search-input{border:1px solid var(--border);color:var(--text-h);background:#fff;border-radius:6px;outline:none;width:280px;padding:.5rem 1rem;font-size:.9rem}.search-input:focus{border-color:var(--accent);box-shadow:0 0 0 3px var(--accent-bg)}.modal-overlay{z-index:1000;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);background:#0006;justify-content:center;align-items:center;display:flex;position:fixed;inset:0}.modal-content{background:#fff;border-radius:12px;width:100%;max-width:600px;animation:.3s ease-out slideUp;overflow:hidden;box-shadow:0 20px 25px -5px #0000001a,0 10px 10px -5px #0000000a}@keyframes slideUp{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.modal-header{border-bottom:1px solid var(--border-light);background:#f8f9fa;justify-content:space-between;align-items:center;padding:1.5rem;display:flex}.modal-header h3{color:var(--text-h);margin:0;font-size:1.25rem;font-weight:700}.modal-close{cursor:pointer;color:var(--text-muted);background:0 0;border:none;font-size:1.5rem;line-height:1}.modal-body{max-height:80vh;padding:1.5rem;overflow-y:auto}.detail-grid{grid-template-columns:1fr 1fr;gap:1.5rem;margin-bottom:2rem;display:grid}.detail-item label{text-transform:uppercase;color:var(--text-muted);margin-bottom:.25rem;font-size:.75rem;font-weight:700;display:block}.detail-item p{color:var(--text-h);margin:0;font-size:1rem;font-weight:500}.rank-card{border:1px solid var(--border-light);background:#f8f9fa;border-radius:8px;justify-content:space-between;align-items:center;margin-bottom:.75rem;padding:1rem;display:flex}.rank-sport{color:var(--text-h);font-weight:700}.rank-category{color:var(--accent);font-size:.85rem;font-weight:600}.public-report-page{color:#0f172a;background:radial-gradient(circle at 0 0,#f973162e,#0000 28%),radial-gradient(circle at 100% 0,#0ea5e92e,#0000 24%),linear-gradient(#f8fafc 0%,#eef2f7 100%);min-height:100vh}.public-report-shell{max-width:1400px;margin:0 auto;padding:2rem}.public-report-hero{color:#fff;background:linear-gradient(135deg,#0f172a 0%,#1e293b 55%,#1d4ed8 100%);border-radius:28px;justify-content:space-between;align-items:flex-start;gap:1.5rem;padding:2rem;display:flex;box-shadow:0 24px 60px #0f172a33}.public-report-kicker{text-transform:uppercase;letter-spacing:.16em;color:#dbeafe;text-shadow:0 1px #0f172a59;margin:0 0 .6rem;font-size:.8rem;font-weight:800}.public-report-hero h1{color:#f8fafc;text-shadow:0 2px 10px #0f172a59;margin:0;font-size:clamp(2rem,4vw,3.25rem);line-height:1.02}.public-report-subtitle{color:#ffffffeb;max-width:60ch;margin:.75rem 0 0}.public-report-refresh{color:#0f172a;cursor:pointer;background:#fff;border:0;border-radius:999px;padding:.85rem 1.25rem;font-size:.92rem;font-weight:800}.public-report-hero-actions{align-items:center;gap:.75rem;display:flex}.public-report-secondary-btn{color:#fff;cursor:pointer;-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);background:#ffffff14;border:1px solid #ffffff47;border-radius:999px;padding:.85rem 1.25rem;font-size:.92rem;font-weight:800}.public-report-sidebar,.public-report-content{-webkit-backdrop-filter:blur(16px);backdrop-filter:blur(16px);background:#ffffffe0;border:1px solid #94a3b833;box-shadow:0 18px 40px #0f172a14}.public-report-error,.public-report-empty{text-align:center;border-radius:18px;padding:1.2rem;font-weight:600}.public-report-error{color:#b91c1c;background:#fef2f2;border:1px solid #fecaca;margin-bottom:1rem}.public-report-filters{gap:1rem;margin:0 0 1rem;display:flex}.public-report-filter{flex-direction:column;gap:.35rem;min-width:220px;display:flex}.public-report-filter span{color:#475569;text-transform:uppercase;letter-spacing:.05em;font-size:.8rem;font-weight:800}.public-report-filter select{color:#0f172a;background:#ffffffe0;border:1px solid #dbe4f0;border-radius:14px;padding:.85rem 1rem;font-size:.95rem}.public-report-main{grid-template-columns:300px minmax(0,1fr);gap:1rem;display:grid}.public-report-sidebar{border-radius:24px;align-self:start;padding:1rem;position:sticky;top:1rem}.public-report-sidebar-header,.public-report-team-header{justify-content:space-between;align-items:center;gap:1rem;display:flex}.public-report-sidebar-header{margin-bottom:1rem}.public-report-sidebar-header h2,.public-report-team-header h2{margin:0}.public-report-sidebar-header span{color:#475569;font-size:.88rem;font-weight:700}.public-report-tabs{flex-direction:column;gap:.7rem;display:flex}.public-report-tab{text-align:left;cursor:pointer;background:#f8fafc;border:1px solid #dbe4f0;border-radius:18px;justify-content:space-between;gap:.8rem;width:100%;padding:1rem;display:flex}.public-report-tab strong,.public-report-tab span,.public-report-tab small{display:block}.public-report-tab span,.public-report-tab small{color:#64748b;margin-top:.2rem}.public-report-tab.active{background:linear-gradient(135deg,#eff6ff 0%,#dbeafe 100%);border-color:#60a5fa}.public-report-tab-unsold{background:linear-gradient(135deg,#fff7ed 0%,#ffedd5 100%);border-color:#fdba74}.public-report-content{border-radius:24px;min-width:0;padding:1.4rem}.public-report-team-header{margin-bottom:1rem}.public-report-team-header p{color:#475569;margin:.35rem 0 0}.public-report-header-actions{align-items:center;gap:.9rem;display:flex}.public-report-export{color:#fff;cursor:pointer;background:linear-gradient(135deg,#15803d 0%,#22c55e 100%);border:0;border-radius:999px;padding:.8rem 1.15rem;font-size:.88rem;font-weight:800;box-shadow:0 12px 24px #22c55e38}.public-report-export:hover{filter:brightness(1.03)}.public-report-budget-grid{grid-template-columns:repeat(2,minmax(140px,1fr));gap:.75rem;display:grid}.public-report-budget-grid div{background:#eff6ff;border-radius:18px;padding:.9rem 1rem}.public-report-budget-grid span{color:#475569;text-transform:uppercase;letter-spacing:.05em;margin-bottom:.25rem;font-size:.78rem;display:block}.public-report-table-wrap{border:1px solid #e2e8f0;border-radius:20px;overflow-x:auto}.public-report-table{border-collapse:collapse;background:#fff;width:100%}.public-report-table th,.public-report-table td{text-align:left;vertical-align:top;border-bottom:1px solid #e2e8f0;padding:1rem}.public-report-table th{text-transform:uppercase;letter-spacing:.07em;color:#64748b;background:#f8fafc;font-size:.78rem}.public-report-sort-btn{color:inherit;font:inherit;text-transform:inherit;letter-spacing:inherit;cursor:pointer;background:0 0;border:0;padding:0;font-weight:800}.public-report-photo-btn{cursor:pointer;background:#f8fafc;border:1px solid #dbe4f0;border-radius:16px;width:64px;height:64px;padding:0;overflow:hidden}.public-report-photo-btn:disabled{cursor:default}.public-report-thumb{object-fit:cover;width:100%;height:100%;display:block}.public-report-thumb-placeholder{box-sizing:border-box;color:#64748b;text-align:center;justify-content:center;align-items:center;width:100%;height:100%;padding:.35rem;font-size:.68rem;font-weight:700;display:flex}.price-cell{color:#15803d;font-weight:800}.rank-chip-list{flex-wrap:wrap;gap:.45rem;display:flex}.rank-chip{color:#1e3a8a;background:#eff6ff;border:1px solid #bfdbfe;border-radius:999px;align-items:center;gap:.3rem;padding:.28rem .7rem;font-size:.78rem;font-weight:700;display:inline-flex}.public-report-lightbox{z-index:2000;background:#0f172ae0;justify-content:center;align-items:center;padding:1.5rem;display:flex;position:fixed;inset:0}.public-report-lightbox-card{background:#fff;border-radius:28px;width:min(92vw,720px);overflow:hidden;box-shadow:0 30px 80px #0f172a59}.public-report-matchup-card{background:#fff;border-radius:28px;flex-direction:column;width:min(96vw,1400px);min-height:0;max-height:88vh;display:flex;overflow:hidden;box-shadow:0 30px 80px #0f172a59}.public-report-matchup-header{border-bottom:1px solid #e2e8f0;justify-content:space-between;align-items:flex-start;gap:1rem;padding:1.4rem 1.5rem;display:flex}.public-report-matchup-header h2{margin:0}.public-report-matchup-header p{color:#475569;margin:.35rem 0 0}.public-report-matchup-close{color:#fff;background:#0f172a;align-self:flex-start;margin:0;position:static}.public-report-matchup-body{flex-direction:column;flex:1;gap:1rem;min-height:0;padding:1.25rem 1.5rem 1.5rem;display:flex;overflow:auto}.public-report-matchup-group{background:#fff;border:1px solid #e2e8f0;border-radius:22px;overflow:visible}.public-report-matchup-title{text-align:left;cursor:pointer;background:#f8fafc;border:0;border-bottom:1px solid #e2e8f0;justify-content:space-between;align-items:center;gap:1rem;width:100%;padding:1rem 1.2rem;display:flex}.public-report-matchup-title strong{align-items:center;gap:.5rem;display:flex}.public-report-matchup-title span{color:#475569;align-items:center;gap:.65rem;font-weight:700;display:flex}.public-report-matchup-chevron{font-size:.8rem}.public-report-matchup-grid{grid-template-columns:repeat(auto-fit,minmax(220px,1fr));align-items:start;gap:1rem;padding:1rem;display:grid;overflow:visible}.public-report-matchup-team{background:#fff;border:1px solid #e2e8f0;border-radius:18px;flex-direction:column;min-height:0;padding:1rem;display:flex}.public-report-matchup-team h3{margin:0 0 .8rem;font-size:.95rem}.public-report-matchup-player-list{flex-direction:column;gap:.55rem;display:flex}.public-report-matchup-player{text-align:left;cursor:pointer;background:#f8fafc;border:1px solid #dbe4f0;border-radius:14px;align-items:center;gap:.75rem;width:100%;min-height:58px;padding:.55rem;display:flex}.public-report-matchup-player:disabled{cursor:default}.public-report-matchup-thumb{object-fit:cover;border-radius:12px;flex-shrink:0;justify-content:center;align-items:center;width:46px;height:46px;display:inline-flex}.public-report-matchup-thumb-placeholder{color:#475569;background:#e2e8f0;font-weight:800}.public-report-matchup-empty{color:#64748b;margin:0;font-size:.88rem}.public-report-lightbox-close{color:#fff;cursor:pointer;background:#0f172acc;border:0;border-radius:999px;margin:1rem 0 0 1rem;padding:.65rem .95rem;font-weight:800;position:absolute}.public-report-matchup-close.public-report-lightbox-close{color:#fff;background:#0f172a;align-self:flex-start;margin:0;position:static}.public-report-lightbox-image{object-fit:contain;background:#0f172a;width:100%;max-height:70vh;display:block}.public-report-lightbox-meta{padding:1.2rem 1.4rem 1.5rem}.public-report-lightbox-meta h3{margin:0}.public-report-lightbox-meta p{color:#475569;margin:.4rem 0 0}@media (width<=1080px){.public-report-main{grid-template-columns:1fr}.public-report-sidebar{position:static}}@media (width<=720px){.public-report-shell{padding:1rem}.public-report-filters{flex-direction:column}.public-report-hero{flex-direction:column;padding:1.5rem}.public-report-hero-actions{flex-direction:column;align-items:stretch;width:100%}.public-report-secondary-btn,.public-report-refresh{width:100%}.public-report-team-header,.public-report-sidebar-header{flex-direction:column;align-items:flex-start}.public-report-budget-grid{grid-template-columns:1fr;width:100%}.public-report-header-actions{flex-direction:column;align-items:stretch;width:100%}.public-report-export{width:100%}.public-report-table th,.public-report-table td{padding:.8rem}.public-report-matchup-header,.public-report-matchup-title{flex-direction:column;align-items:flex-start}}:root{--primary:#4c6ef5;--primary-hover:#3b5bdb;--secondary:#868e96;--bg:#f8f9fa;--surface:#fff;--text-main:#212529;--text-muted:#868e96;--border-light:#e9ecef;--error:#fa5252;--success:#40c057;--warning:#fab005}body{background-color:var(--bg);color:var(--text-main);min-height:100vh;margin:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif}.auth-container{justify-content:center;align-items:center;min-height:100vh;padding:1rem;display:flex}.auth-panel{background:var(--surface);border:1px solid var(--border-light);border-radius:12px;width:100%;max-width:400px;padding:2.5rem;box-shadow:0 8px 24px #0000000d}.auth-title{color:var(--text-main);text-align:center;margin-bottom:.5rem;font-size:1.75rem;font-weight:700}.auth-subtitle{color:var(--text-muted);text-align:center;margin-bottom:2rem;font-size:.9rem}.auth-error{color:var(--error);text-align:center;background:#fff5f5;border:1px solid #ffc9c9;border-radius:6px;margin-bottom:1.5rem;padding:.75rem;font-size:.85rem}.dashboard-layout{box-sizing:border-box;width:100%;max-width:100%;padding:2rem}.dashboard-header{border-bottom:1px solid var(--border-light);justify-content:space-between;align-items:center;margin-bottom:2rem;padding-bottom:1rem;display:flex}.header-brand h2{margin:0;font-size:1.5rem;font-weight:700}.header-brand h2 span{color:var(--primary);font-weight:500}.team-name{color:var(--text-muted);text-transform:uppercase;letter-spacing:.05em;margin:.25rem 0 0;font-size:.85rem}.btn-logout{border:1px solid var(--border-light);color:var(--text-main);cursor:pointer;background:#fff;border-radius:6px;padding:.5rem 1rem;font-size:.9rem;transition:all .2s}.btn-logout:hover{background:#f8f9fa;border-color:#adb5bd}.dashboard-tabs{gap:.5rem;margin-bottom:2rem;display:flex}.tab-btn{color:var(--text-muted);cursor:pointer;background:#f1f3f5;border:none;border-radius:6px;padding:.6rem 1.25rem;font-size:.9rem;font-weight:600;transition:all .2s}.tab-btn:hover{background:#e9ecef}.tab-btn.active{background:var(--primary);color:#fff}.summary-stats-grid{grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1.5rem;margin-bottom:2rem;display:grid}.stat-card{background:var(--surface);border:1px solid var(--border-light);border-radius:10px;flex-direction:column;padding:1.5rem;display:flex}.stat-label{text-transform:uppercase;color:var(--text-muted);margin-bottom:.5rem;font-size:.75rem;font-weight:700}.stat-value{color:var(--text-main);font-size:2rem;font-weight:800}.stat-value.highlight-gold{color:var(--warning)}.stat-value.highlight-navy{color:var(--primary)}.table-container{background:var(--surface);border:1px solid var(--border-light);border-radius:8px;overflow:hidden}.premium-table{border-collapse:collapse;width:100%}.premium-table th{text-align:left;text-transform:uppercase;color:var(--text-muted);border-bottom:1px solid var(--border-light);background:#f8f9fa;padding:.75rem 1rem;font-size:.75rem;font-weight:700}.premium-table td{border-bottom:1px solid var(--border-light);padding:1rem;font-size:.95rem}.premium-table tr:hover{background:#fafafa}.badge{text-transform:uppercase;border-radius:4px;padding:.2rem .6rem;font-size:.7rem;font-weight:700}.badge-draft{color:#495057;background:#e9ecef}.badge-sold{color:#2b8a3e;background:#ebfbee}.badge-unsold{color:#c92a2a;background:#fff5f5}.placeholder-box{text-align:center;border:2px dashed var(--border-light);color:var(--text-muted);border-radius:12px;padding:3rem}.form-input{border:1px solid var(--border-light);box-sizing:border-box;border-radius:6px;width:100%;margin-top:.4rem;padding:.65rem .85rem;font-size:.95rem}.form-input:focus{border-color:var(--primary);outline:none;box-shadow:0 0 0 3px #4c6ef51a}
