*{margin:0;padding:0;box-sizing:border-box}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}body{background-color:#1a1a2e;display:flex;flex-direction:column;min-height:100vh;font-family:system-ui,-apple-system,sans-serif}#app{flex:1;display:flex;flex-direction:row;align-items:center;justify-content:center;gap:12px}#monster-info{width:160px;min-width:160px;min-height:200px;background:#0f172a;border:2px solid #3b82f6;border-radius:8px;padding:12px;color:#e2e8f0;font-size:12px}#monster-info.hidden{opacity:0;pointer-events:none}#right-spacer{width:160px;min-width:160px}#monster-info .monster-name{font-size:16px;font-weight:700;text-align:center;margin-bottom:4px}#monster-info .monster-type{font-size:10px;color:#94a3b8;text-align:center;margin-bottom:8px}#monster-info .monster-sprite{width:80px;height:80px;margin:0 auto 8px;border-radius:50%;border:3px solid #3b82f6;display:flex;align-items:center;justify-content:center;overflow:hidden}#monster-info .monster-sprite img{width:100%;height:100%;object-fit:cover}#monster-info .hp-bar{height:8px;background:#1e293b;border-radius:4px;margin-bottom:4px;overflow:hidden}#monster-info .hp-bar-fill{height:100%;background:#22c55e;transition:width .2s}#monster-info .hp-bar-fill.damaged{background:#eab308}#monster-info .hp-bar-fill.critical{background:#ef4444}#monster-info .hp-text{text-align:center;font-weight:700;margin-bottom:8px}#monster-info .stats{display:flex;gap:4px;margin-bottom:8px}#monster-info .stat-box{flex:1;background:#1e293b;border-radius:4px;padding:4px;text-align:center}#monster-info .stat-label{font-size:8px;color:#f87171}#monster-info .stat-label.def{color:#60a5fa}#monster-info .stat-label.mov{color:#4ade80}#monster-info .stat-value{font-size:14px;font-weight:700}#monster-info .stat-value.buffed{color:#4ade80}#monster-info .stat-value.debuffed{color:#f87171}#monster-info .ability{border-top:1px solid #334155;padding-top:8px}#monster-info .ability-name{color:#a78bfa;font-weight:700;text-align:center;margin-bottom:4px}#monster-info .ability-desc{font-size:10px;color:#94a3b8;text-align:center}#game-canvas{border:2px solid #4a4a6a;border-radius:4px;background-color:#16213e}#loading-screen{position:absolute;top:0;right:0;bottom:0;left:0;display:flex;flex-direction:column;justify-content:center;align-items:center;background-color:#1a1a2e;z-index:100;transition:opacity .3s ease-out}#loading-screen.hidden{opacity:0;pointer-events:none}.dice-loader{width:80px;height:80px;display:flex;justify-content:center;align-items:center;animation:dice-bounce 1s ease-in-out infinite}.dice-face{font-size:64px;color:#e94560;animation:dice-spin 2s linear infinite;text-shadow:0 0 20px rgba(233,69,96,.5)}.loading-text{margin-top:16px;color:#8892b0;font-size:18px;letter-spacing:2px;animation:pulse 1.5s ease-in-out infinite}@keyframes dice-spin{0%{transform:rotateY(0)}to{transform:rotateY(360deg)}}@keyframes dice-bounce{0%,to{transform:translateY(0)}50%{transform:translateY(-10px)}}@keyframes pulse{0%,to{opacity:.5}50%{opacity:1}}.menu-button{position:fixed;top:16px;right:16px;padding:10px 20px;background:#3b82f6;color:#e2e8f0;border:none;border-radius:6px;font-size:14px;font-weight:600;cursor:pointer;z-index:250;transition:background .2s}.menu-button:hover{background:#2563eb}.help-button{top:60px}.mute-button{top:110px;padding:10px 16px;font-size:18px}.settings-button{top:160px;padding:10px 16px;font-size:18px}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:200;display:flex;justify-content:center;align-items:center;transition:opacity .2s}.modal.hidden{display:none}.modal-overlay{position:absolute;top:0;right:0;bottom:0;left:0;background:#000000b3}.modal-content{position:relative;width:90%;max-width:1200px;max-height:85vh;background:#0f172a;border:2px solid #3b82f6;border-radius:12px;display:flex;flex-direction:column;overflow:hidden}.modal-header{display:flex;justify-content:space-between;align-items:center;padding:16px 24px;border-bottom:1px solid #334155}.modal-header h2{color:#e2e8f0;font-size:24px;margin:0}.close-button{background:none;border:none;color:#94a3b8;font-size:32px;cursor:pointer;padding:0;width:32px;height:32px;display:flex;align-items:center;justify-content:center;transition:color .2s}.close-button:hover{color:#e2e8f0}.modal-body{padding:24px;overflow-y:auto;flex:1}.filter-controls{display:flex;gap:12px;margin-bottom:16px}.filter-controls input,.filter-controls select{padding:8px 12px;background:#1e293b;border:1px solid #334155;border-radius:6px;color:#e2e8f0;font-size:14px}.filter-controls input{flex:1}.filter-controls select{min-width:150px}.filter-controls input::placeholder{color:#64748b}.color-legend{display:flex;align-items:center;gap:8px;margin-bottom:16px;flex-wrap:wrap}.color-legend .legend-label{color:#94a3b8;font-size:13px}.color-legend .color-badge{font-size:12px;padding:2px 8px}.table-container{overflow-x:auto}#compendium-table{width:100%;border-collapse:collapse;color:#e2e8f0}#compendium-table th{background:#1e293b;padding:12px;text-align:left;font-weight:600;border-bottom:2px solid #334155;font-size:14px;position:sticky;top:0}#compendium-table th.sortable{cursor:pointer;-webkit-user-select:none;user-select:none}#compendium-table th.sortable:hover{background:#334155}#compendium-table th.sortable:after{content:" ↕";opacity:.3}#compendium-table th.sort-asc:after{content:" ↑";opacity:1}#compendium-table th.sort-desc:after{content:" ↓";opacity:1}#compendium-table td{padding:10px 12px;border-bottom:1px solid #1e293b;font-size:13px}#compendium-table tbody tr:hover{background:#1e293b}.color-badge{display:inline-block;padding:3px 10px;border-radius:4px;font-weight:600;text-transform:capitalize;font-size:12px}.color-badge.white{background:#e2e8f0;color:#0f172a}.color-badge.blue{background:#3b82f6;color:#e2e8f0}.color-badge.yellow{background:#fbbf24;color:#0f172a}.color-badge.green{background:#22c55e;color:#0f172a}.color-badge.red{background:#ef4444;color:#e2e8f0}.dice-cell{font-size:16px;white-space:nowrap}.dice-face-icon{display:inline-block;margin:0 2px}.dice-face-icon sup{font-size:10px;color:#fbbf24;font-weight:700}.ability-cell{max-width:300px}#compendium-table .ability-name{color:#a78bfa;font-weight:600}#compendium-table .ability-desc{color:#94a3b8;font-size:11px;margin-top:2px}.settings-content{max-width:450px}.settings-section{margin-bottom:24px}.settings-section:last-child{margin-bottom:0}.settings-section h3{color:#94a3b8;font-size:12px;text-transform:uppercase;letter-spacing:1px;margin-bottom:12px;padding-bottom:8px;border-bottom:1px solid #334155}.settings-row{display:flex;align-items:center;justify-content:space-between;padding:8px 0}.settings-row label{color:#e2e8f0;font-size:14px}.settings-row input[type=range]{width:120px;margin:0 12px}.settings-row input[type=checkbox]{width:18px;height:18px;cursor:pointer}.settings-row select{padding:6px 12px;background:#1e293b;border:1px solid #334155;border-radius:6px;color:#e2e8f0;font-size:14px;cursor:pointer}#settings-volume-value{color:#94a3b8;font-size:12px;min-width:36px;text-align:right}.deckbuilder-button{top:200px}.deckbuilder-content{max-width:1000px}.deckbuilder-body{padding:16px}.deckbuilder-layout{display:grid;grid-template-columns:1fr 1fr;gap:20px;height:60vh}.deckbuilder-pool,.deckbuilder-deck{display:flex;flex-direction:column;min-height:0}.deckbuilder-section-header{margin-bottom:12px}.deckbuilder-section-header h3{color:#e2e8f0;font-size:16px;margin:0 0 8px}.deckbuilder-section-header .filter-controls{margin-bottom:0}.monster-grid,.deck-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(120px,1fr));gap:8px;overflow-y:auto;flex:1;padding:8px;background:#1e293b;border-radius:8px}.monster-card{background:#0f172a;border:2px solid #334155;border-radius:6px;padding:8px;cursor:pointer;transition:border-color .15s,opacity .15s}.monster-card:hover{border-color:#3b82f6}.monster-card.disabled{opacity:.4;cursor:not-allowed}.monster-card.disabled:hover{border-color:#334155}.monster-card.locked{opacity:.4;filter:grayscale(100%);cursor:not-allowed}.monster-card.locked:hover{border-color:#334155}.monster-card-name{font-size:12px;color:#e2e8f0;font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.monster-card-stats{display:flex;justify-content:space-between;font-size:10px;color:#94a3b8;margin-top:4px}.monster-card-count{position:absolute;top:4px;right:4px;background:#3b82f6;color:#fff;font-size:10px;font-weight:700;padding:2px 6px;border-radius:10px}.monster-card{position:relative}.deck-controls{display:flex;gap:8px}.deck-controls input{flex:1;padding:6px 10px;background:#1e293b;border:1px solid #334155;border-radius:4px;color:#e2e8f0;font-size:13px}.deck-actions{display:flex;gap:8px;margin-top:12px}.deck-actions select{flex:1;padding:8px;background:#1e293b;border:1px solid #334155;border-radius:4px;color:#e2e8f0;font-size:13px}.btn-primary{background:#3b82f6;color:#fff;border:none;padding:6px 14px;border-radius:4px;cursor:pointer;font-weight:600;font-size:13px}.btn-primary:hover{background:#2563eb}.btn-secondary{background:#334155;color:#e2e8f0;border:none;padding:6px 14px;border-radius:4px;cursor:pointer;font-size:13px}.btn-secondary:hover{background:#475569}.btn-danger{background:#dc2626;color:#fff;border:none;padding:6px 14px;border-radius:4px;cursor:pointer;font-size:13px}.btn-danger:hover{background:#b91c1c}.prematch-content{max-width:900px}.prematch-body{padding:16px}.prematch-layout{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-bottom:20px}.prematch-decks-section,.prematch-preview-section{display:flex;flex-direction:column;min-height:0}.prematch-decks-section h3,.prematch-preview-section h3{color:#e2e8f0;font-size:16px;margin:0 0 12px}.prematch-decks-grid{display:flex;flex-direction:column;gap:8px;overflow-y:auto;max-height:50vh;padding:8px;background:#1e293b;border-radius:8px}.prematch-deck-card{background:#0f172a;border:2px solid #334155;border-radius:6px;padding:12px;cursor:pointer;transition:border-color .15s,background .15s}.prematch-deck-card:hover,.prematch-deck-card.selected{border-color:#3b82f6;background:#1e293b}.prematch-deck-card-name{font-size:14px;color:#e2e8f0;font-weight:600;margin-bottom:4px}.prematch-deck-card-info{font-size:11px;color:#94a3b8;margin-bottom:8px}.clone-deck-btn{font-size:11px;padding:4px 8px;margin-top:8px}.prematch-preview{background:#1e293b;border-radius:8px;padding:12px;overflow-y:auto;max-height:50vh}.prematch-preview-empty{color:#64748b;text-align:center;padding:20px;font-size:13px}.prematch-preview-monster{display:flex;justify-content:space-between;align-items:center;padding:6px 8px;margin-bottom:4px;background:#0f172a;border-radius:4px;border-left:3px solid #334155}.prematch-preview-monster-name{font-size:12px;color:#e2e8f0;font-weight:500}.prematch-preview-monster-stats{display:flex;gap:8px;font-size:11px;color:#94a3b8}.prematch-actions{display:flex;justify-content:flex-end;gap:12px;padding-top:12px;border-top:1px solid #334155}.prematch-actions button{padding:10px 20px;font-size:14px}.auth-status{position:fixed;top:16px;left:16px;display:flex;align-items:center;gap:12px;z-index:250}.auth-username{color:#e2e8f0;font-size:14px;font-weight:600;padding:10px 16px;background:#1e293b;border-radius:6px;border:1px solid #334155}.auth-button{padding:10px 20px;font-size:14px;font-weight:600;cursor:pointer;border-radius:6px;transition:background .2s}.auth-content{max-width:400px}.auth-body{padding:24px}.auth-error{background:#7f1d1d;color:#fca5a5;padding:12px;border-radius:6px;margin-bottom:16px;font-size:13px;border:1px solid #991b1b}.auth-field{display:flex;flex-direction:column;margin-bottom:16px}.auth-field label{color:#e2e8f0;font-size:14px;font-weight:600;margin-bottom:6px}.auth-field input{padding:10px 12px;background:#1e293b;border:1px solid #334155;border-radius:6px;color:#e2e8f0;font-size:14px;transition:border-color .2s}.auth-field input:focus{outline:none;border-color:#3b82f6}.auth-submit{width:100%;padding:12px;font-size:15px;margin-bottom:12px}.auth-toggle{text-align:center;font-size:13px}.auth-toggle a{color:#94a3b8;text-decoration:none;transition:color .2s}.auth-toggle a:hover{color:#e2e8f0}.landing-content{max-width:500px;text-align:center;padding:48px 32px;display:flex;flex-direction:column;align-items:center;gap:24px}.landing-logo{width:120px;height:120px;display:flex;align-items:center;justify-content:center;background:#1e293b;border-radius:50%;border:3px solid #3b82f6;overflow:hidden}.landing-logo img{width:100%;height:100%;object-fit:cover}.landing-title{color:#e2e8f0;font-size:36px;font-weight:700;margin:0;text-shadow:0 0 20px rgba(59,130,246,.3)}.landing-tagline{color:#94a3b8;font-size:16px;margin:0;line-height:1.5}.landing-actions{display:flex;flex-direction:column;gap:12px;width:100%;max-width:300px}.landing-actions .btn{padding:14px 24px;font-size:15px;font-weight:600;width:100%}.guest-banner{background:linear-gradient(90deg,#f59e0b,#d97706);color:#000;padding:8px 16px;text-align:center;font-size:14px;display:flex;justify-content:center;align-items:center;gap:12px;flex-shrink:0}.guest-banner.hidden{display:none}.guest-banner .btn-link{background:none;border:none;color:#000;text-decoration:underline;cursor:pointer;font-weight:600}.tutorial-content{max-width:600px;max-height:80vh}.tutorial-body{padding:20px;overflow-y:auto}.tutorial-body section{margin-bottom:24px}.tutorial-body h3{color:#3b82f6;margin-bottom:12px;font-size:18px}.tutorial-body p,.tutorial-body li{color:#a0aec0;line-height:1.6}.tutorial-body ol,.tutorial-body ul{margin-left:20px}.tutorial-body li{margin-bottom:8px}.merge-conflict-content{max-width:700px;max-height:80vh}.merge-intro{color:#a0aec0;margin-bottom:20px}.conflict-item{background:#3b82f61a;border:1px solid rgba(59,130,246,.3);border-radius:8px;padding:16px;margin-bottom:16px}.conflict-item h4{margin-bottom:12px;color:#e2e8f0}.conflict-comparison{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:16px}.conflict-side{background:#0000004d;border-radius:6px;padding:12px}.conflict-side h5{font-size:12px;text-transform:uppercase;color:#718096;margin-bottom:8px}.conflict-side p{color:#e2e8f0}.conflict-local{border-left:3px solid #f59e0b}.conflict-server{border-left:3px solid #3b82f6}.conflict-actions{display:flex;gap:8px}.btn-small{padding:6px 12px;font-size:12px}.modal-footer{padding:16px 24px;border-top:1px solid rgba(255,255,255,.1);text-align:right}.tutorial-overlay{position:fixed;top:0;left:0;width:100vw;height:100vh;background:#000000b3;z-index:10000;pointer-events:none}.tutorial-overlay.hidden{display:none}.tutorial-spotlight{position:absolute;border:3px solid #3b82f6;border-radius:8px;box-shadow:0 0 0 9999px #000000b3,0 0 20px #3b82f699;transition:all .3s ease;pointer-events:auto;opacity:0}.tutorial-spotlight.active{opacity:1}.tutorial-tooltip{position:fixed;background:#0f172a;border:2px solid #3b82f6;border-radius:12px;padding:20px;max-width:400px;z-index:10001;pointer-events:auto;box-shadow:0 10px 40px #00000080}.tutorial-tooltip.hidden{display:none}.tutorial-tooltip-center{top:50%;left:50%;transform:translate(-50%,-50%)}.tutorial-tooltip-top{top:20%;left:50%;transform:translate(-50%)}.tutorial-tooltip-bottom{bottom:15%;left:50%;transform:translate(-50%)}.tutorial-tooltip-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:16px}.tutorial-tooltip-title{color:#3b82f6;font-size:20px;font-weight:700;margin:0}.tutorial-skip-btn{background:transparent;border:none;color:#94a3b8;font-size:12px;cursor:pointer;padding:4px 8px;border-radius:4px;transition:all .2s}.tutorial-skip-btn:hover{background:#94a3b81a;color:#cbd5e1}.tutorial-tooltip-content{color:#e2e8f0;line-height:1.6;margin-bottom:20px;font-size:14px}.tutorial-tooltip-footer{display:flex;justify-content:space-between;align-items:center}.tutorial-step-indicator{color:#94a3b8;font-size:12px}.tutorial-next-btn{padding:8px 20px;font-size:14px}#toast-container{position:fixed;top:24px;right:24px;z-index:1000;display:flex;flex-direction:column;gap:12px;pointer-events:none}.toast{background:#0f172a;border:2px solid;border-radius:8px;padding:16px 20px;min-width:280px;max-width:400px;color:#e2e8f0;font-size:14px;box-shadow:0 4px 12px #0006;opacity:0;transform:translate(400px);transition:opacity .3s ease,transform .3s ease;pointer-events:auto}.toast-visible{opacity:1;transform:translate(0)}.toast-success{border-color:#22c55e;background:linear-gradient(135deg,#0f172a,#0a3d2c)}.toast-error{border-color:#ef4444;background:linear-gradient(135deg,#0f172a,#3d0a0a)}.toast-info{border-color:#3b82f6;background:linear-gradient(135deg,#0f172a,#0a1f3d)}
