.game-layout{display:grid;grid-template-columns:1fr;height:100vh;gap:1rem}.left,.right{background:#222;color:#f0f0f0;padding:.5em;overflow-y:auto}.left nav ul{list-style:none;margin:0;padding:0}.left nav li{cursor:pointer;padding:.25em;-webkit-tap-highlight-color:transparent}.left nav li:active{background:#333}.center{padding:.5em;overflow-y:auto}.center.full-map{padding:0;height:100vh;height:100dvh;min-height:100vh;overflow:hidden}.chat-window{border:1px solid #444;padding:.5em;margin-bottom:.5em;min-height:150px;max-height:300px;overflow-y:auto}.chat-form{display:flex}.chat-form input{flex:1;margin-right:.5em}.fight-screen-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.9);-webkit-backdrop-filter:blur(5px);backdrop-filter:blur(5px);z-index:2000;display:flex;align-items:center;justify-content:center;padding:1em}.map-overlay{position:fixed;top:0;right:0;bottom:0;left:0;z-index:5000}.map-panel{position:relative;height:100%;background:rgba(15,15,15,.95);border:1px solid #333;border-radius:12px;display:flex;flex-direction:column;z-index:5001}.map-overlay .map-panel{position:absolute;top:20px;right:20px;bottom:20px;left:20px;height:auto}.map-toolbar{display:flex;align-items:center;justify-content:space-between;padding:8px 10px;border-bottom:1px solid #2a2a2a}.map-toolbar.compact{padding:4px 6px;font-size:12px}.map-canvas{position:relative;flex:1;overflow:hidden;cursor:grab}.map-canvas:active{cursor:grabbing}.fight-screen{background:linear-gradient(135deg,#2a2a2a 0%,#1f1f1f 100%);border:2px solid #8bc34a;border-radius:16px;padding:2em;max-width:800px;width:100%;max-height:90vh;overflow-y:auto;box-shadow:0 20px 40px #00000080}.fight-header{text-align:center;margin-bottom:2em;padding-bottom:1.5em;border-bottom:2px solid #444}.fight-header h2{color:#ff6b6b;margin:0 0 1.5em;font-size:2em;text-shadow:0 2px 4px rgba(0,0,0,.5)}.fight-participants{display:grid;grid-template-columns:1fr auto 1fr;gap:1.5em;align-items:center}.participant{background:#222;border:1px solid #444;border-radius:12px;padding:1.2em}.participant.player{border-color:#2196f3;background:linear-gradient(135deg,rgba(33,150,243,.1) 0%,rgba(33,150,243,.05) 100%)}.participant.monster{border-color:#f44336;background:linear-gradient(135deg,rgba(244,67,54,.1) 0%,rgba(244,67,54,.05) 100%)}.participant-info{text-align:center}.participant-name{display:block;font-weight:700;font-size:1.1em;margin-bottom:.8em;color:#f0f0f0}.hp-display{display:flex;flex-direction:column;gap:.5em}.hp-text{font-weight:700;color:#8bc34a}.hp-bar{background:#444;border-radius:6px;height:12px;overflow:hidden;border:1px solid #666}.hp-bar-inner{height:100%;transition:width .5s ease;border-radius:5px}.hp-bar-inner.player-hp{background:linear-gradient(90deg,#4caf50 0%,#8bc34a 100%);box-shadow:0 0 10px #4caf5080}.hp-bar-inner.monster-hp{background:linear-gradient(90deg,#f44336 0%,#d32f2f 100%);box-shadow:0 0 10px #f4433680}.vs-divider{font-size:1.5em;font-weight:700;color:#ff6b6b;text-shadow:0 0 10px rgba(255,107,107,.5);animation:pulse 2s infinite}@keyframes pulse{0%,to{transform:scale(1);opacity:1}50%{transform:scale(1.1);opacity:.8}}.fight-log-container{margin:.5em 0 0}.fight-log-container.compact{position:sticky;bottom:0}.fight-log-container h3{color:#8bc34a;margin:0 0 1em;text-align:center;font-size:1.3em}.fight-log{background:#111;border:1px solid #444;border-radius:12px;padding:1.5em;max-height:300px;overflow-y:auto;min-height:200px}.compact-log{background:#0f0f0f;border:1px solid #2a2a2a;border-radius:8px;padding:8px;min-height:64px;overflow:hidden}.log-empty{text-align:center;color:#666;font-style:italic;padding:2em}.log-entry{margin:6px 0;padding:8px 10px;border-radius:8px;border-left:4px solid;animation:slideIn .25s ease-out}.log-entry.faded{opacity:.7;transform:scale(.98)}.log-entry.current{opacity:1;transform:scale(1.02);border-width:5px}@keyframes slideIn{0%{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}.log-entry.player-action{background:rgba(33,150,243,.1);border-left-color:#2196f3}.log-entry.monster-action{background:rgba(244,67,54,.1);border-left-color:#f44336}.action-attack{color:#f0f0f0}.action-dodge{color:#4caf50;font-weight:700}.log-entry strong{color:#ff6b6b;font-weight:700}.fight-result-container{text-align:center;margin-top:2em;padding-top:2em;border-top:2px solid #444}.fight-result{display:flex;align-items:center;justify-content:center;gap:1em;padding:1.5em;border-radius:12px;margin-bottom:1.5em;font-size:1.5em;font-weight:700;text-shadow:0 2px 4px rgba(0,0,0,.5);animation:resultPulse .6s ease-out}@keyframes resultPulse{0%{transform:scale(.8);opacity:0}50%{transform:scale(1.1)}to{transform:scale(1);opacity:1}}.fight-result.win{background:linear-gradient(135deg,#4caf50 0%,#388e3c 100%);color:#fff;border:2px solid #66bb6a;box-shadow:0 0 20px #4caf5080}.fight-result.escape{background:linear-gradient(135deg,#ff9800 0%,#f57c00 100%);color:#fff;border:2px solid #ffb74d;box-shadow:0 0 20px #ff980080}.fight-result.lose{background:linear-gradient(135deg,#f44336 0%,#d32f2f 100%);color:#fff;border:2px solid #ef5350;box-shadow:0 0 20px #f4433680}.result-icon{font-size:1.2em}.fight-close-btn{background:linear-gradient(135deg,#8bc34a 0%,#689f38 100%);color:#000;border:none;padding:1em 2em;border-radius:12px;cursor:pointer;font-size:1.1em;font-weight:700;transition:all .3s ease;box-shadow:0 4px 8px #0000004d}.fight-close-btn:hover{background:linear-gradient(135deg,#aed581 0%,#8bc34a 100%);transform:translateY(-2px);box-shadow:0 6px 12px #8bc34a66}.fight-actions-hint{text-align:center;margin-top:1.5em;padding:1em;background:rgba(139,195,74,.1);border:1px solid rgba(139,195,74,.3);border-radius:8px}.fight-actions-hint p{margin:0;color:#8bc34a;font-style:italic}.fight-actions{text-align:center;margin-top:1.5em;padding:1em}.fight-quick-items{margin-top:10px}.quick-items-list{display:flex;flex-wrap:wrap;gap:6px;justify-content:center}.quick-item-btn{background:#1f2937;color:#e5e7eb;border:1px solid #374151;border-radius:4px;padding:4px 8px;cursor:pointer}.quick-item-btn:hover{background:#111827}.fight-actions h4{margin:0 0 1em;color:#ff6b6b;text-align:center}.fight-actions .fight-btn{width:100%;max-width:200px;margin:.5em;display:inline-block}@media (max-width: 768px){.fight-screen{padding:1.5em;margin:.5em}.fight-participants{grid-template-columns:1fr;gap:1em}.vs-divider{order:2;margin:.5em 0}.participant.monster{order:3}.fight-header h2{font-size:1.5em}.fight-result{font-size:1.2em;flex-direction:column;gap:.5em}}.fight-controls{display:flex;flex-direction:column;gap:.5em;margin-top:1em}.menu-btn{display:none;background:transparent;border:none;color:#f0f0f0;font-size:1.5em;cursor:pointer}.settings-btn{background:transparent;border:none;color:#f0f0f0;font-size:1.2em;cursor:pointer}.player-settings{position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.8);padding:1em;overflow-y:auto}.player-settings .close{float:right}.left,.right{position:fixed;top:0;bottom:0;width:80%;max-width:360px;transition:transform .3s ease;z-index:1000;box-shadow:0 0 20px #00000080}.left{left:0;transform:translate(-100%)}.right{right:0;transform:translate(100%)}.left.open,.right.open{transform:translate(0)}.menu-btn,.stats-btn-mobile{display:block;position:fixed;top:15px;z-index:1100;background:rgba(33,33,33,.9);border:1px solid #666;color:#f0f0f0;font-size:1.3em;cursor:pointer;padding:.6em;border-radius:8px;-webkit-backdrop-filter:blur(5px);backdrop-filter:blur(5px);transition:all .3s ease}.menu-btn{left:15px}.stats-btn-mobile{right:15px}.menu-btn:hover,.stats-btn-mobile:hover{background:rgba(139,195,74,.2);border-color:#8bc34a;transform:scale(1.1)}@media (max-width: 768px){.game-layout{grid-template-columns:1fr}.admin-grid{grid-template-columns:1fr;gap:1em}.admin-section{padding:1.2em}.location-title{font-size:1.5em}.chat-form{flex-direction:column;gap:.6em}.chat-send{align-self:stretch}}.player-settings-page{padding:1em}.character-stats{list-style:none;padding:0;margin:0}.character-stats li{margin-bottom:.25em}.hp-bar{background:#444;border-radius:4px;height:8px;overflow:hidden;width:100%;margin-top:2px}.hp-bar-inner{background:#b71c1c;height:100%}.character-profile{position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.8);color:#f0f0f0;padding:1em;overflow-y:auto}.character-profile .close{float:right;background:transparent;border:none;color:#f0f0f0;font-size:1.2em;cursor:pointer}.admin-panel{padding:1.5em;max-width:1200px;margin:0 auto}.admin-header{text-align:center;margin-bottom:2em;padding-bottom:1em;border-bottom:2px solid #444}.admin-header h1{color:#8bc34a;margin-bottom:.5em;font-size:2.2em;text-shadow:0 2px 4px rgba(0,0,0,.3)}.admin-subtitle{color:#ccc;font-size:1.1em;margin:0}.admin-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5em;margin-top:2em}.admin-section{background:linear-gradient(135deg,#2a2a2a 0%,#1f1f1f 100%);border:1px solid #444;border-radius:12px;padding:1.5em;cursor:pointer;transition:all .3s ease;text-align:center;box-shadow:0 4px 8px #0000004d}.admin-section:hover{transform:translateY(-4px);border-color:#8bc34a;box-shadow:0 8px 16px #8bc34a33}.admin-icon{font-size:3em;margin-bottom:.5em;display:block}.admin-section h3{color:#8bc34a;margin:.5em 0;font-size:1.3em}.admin-section p{color:#bbb;margin:0;font-size:.9em;line-height:1.4}.admin-back{margin-bottom:1.5em}.back-button{background:#444;border:1px solid #666;color:#f0f0f0;padding:.8em 1.5em;border-radius:8px;cursor:pointer;font-size:.95em;transition:all .3s ease}.back-button:hover{background:#555;border-color:#8bc34a;transform:translate(-2px)}.admin-content{background:#1a1a1a;border-radius:12px;padding:1.5em;border:1px solid #333}.location-header{background:linear-gradient(135deg,#2a2a2a 0%,#1f1f1f 100%);border-radius:12px;padding:1.5em;margin-bottom:1.5em;border:1px solid #444;box-shadow:0 4px 8px #0003}.location-title{color:#8bc34a;margin:0 0 .8em;font-size:1.8em;display:flex;align-items:center;gap:.5em}.location-icon{font-size:1.2em}.location-description{color:#ccc;margin:0 0 1em;line-height:1.5;font-style:italic}.wayfinder{margin-top:8px}.wayfinder h4{margin:6px 0;color:#8bc34a}.wayfinder-signs{display:flex;flex-wrap:wrap;gap:6px}.wayfinder-sign{background:#0f0f0f;color:#e5e7eb;border:1px solid #2a2a2a;border-radius:12px;padding:4px 8px;font-size:12px;cursor:pointer}.wayfinder-sign:hover{border-color:#8bc34a;background:#111611}.wayfinder-sign.active{border-color:#8bc34a;box-shadow:0 0 0 1px #8bc34a40 inset}.wayfinder-empty{opacity:.7;font-size:12px}.location-features{display:flex;gap:.5em;flex-wrap:wrap;justify-content:flex-end;margin-bottom:8px}.feature-badge{background:linear-gradient(135deg,#444 0%,#333 100%);color:#f0f0f0;padding:.3em .8em;border-radius:20px;font-size:.85em;border:1px solid #555}.feature-badge.monsters{border-color:#d32f2f;background:linear-gradient(135deg,#d32f2f 0%,#b71c1c 100%)}.feature-badge.events{border-color:#f57c00;background:linear-gradient(135deg,#f57c00 0%,#e65100 100%)}.feature-badge.teleport{border-color:#7b1fa2;background:linear-gradient(135deg,#7b1fa2 0%,#4a148c 100%)}.nav-header{display:flex;justify-content:space-between;align-items:center;padding-bottom:1em;border-bottom:1px solid #444;margin-bottom:1em}.nav-header h3{margin:0;color:#8bc34a;font-size:1.2em}.nav-close,.stats-close{background:transparent;border:none;color:#ccc;font-size:1.2em;cursor:pointer;padding:.3em;border-radius:50%;transition:all .2s ease}.nav-close:hover,.stats-close:hover{background:#444;color:#fff}.nav-section{margin-bottom:1.5em}.nav-section h4{color:#8bc34a;margin:0 0 .8em;font-size:1em;padding-left:.5em;border-left:3px solid #8bc34a}.nav-item{display:flex;align-items:center;gap:.8em;padding:.8em;cursor:pointer;border-radius:8px;transition:all .3s ease;margin-bottom:.5em;border:1px solid transparent}.nav-item:hover{background:#333;border-color:#555}.nav-item.active{background:linear-gradient(135deg,#8bc34a 0%,#689f38 100%);color:#000;font-weight:700;box-shadow:0 2px 4px #8bc34a4d}.nav-item.active .nav-icon,.nav-item.active .mini-badge{filter:brightness(.8)}.nav-item.parent-location{background:#2a2a2a;border-color:#555}.nav-icon{font-size:1.2em;min-width:1.5em;text-align:center}.nav-text{flex:1;font-size:.95em}.location-badges{display:flex;gap:.2em}.mini-badge{font-size:.7em;opacity:.8}.nav-empty{text-align:center;color:#666;padding:2em 1em;font-style:italic}.fight-controls{padding:1em;background:#2a2a2a;border-radius:8px;border:1px solid #444}.fight-controls h4{margin:0 0 1em;color:#ff6b6b;text-align:center}.fight-btn{width:100%;padding:.8em;margin-bottom:.5em;border:none;border-radius:6px;cursor:pointer;font-size:.95em;font-weight:700;transition:all .3s ease}.fight-btn.attack{background:linear-gradient(135deg,#d32f2f 0%,#b71c1c 100%);color:#fff}.fight-btn.attack:hover{background:linear-gradient(135deg,#f44336 0%,#d32f2f 100%);transform:translateY(-2px)}.fight-btn.dodge{background:linear-gradient(135deg,#1976d2 0%,#0d47a1 100%);color:#fff}.fight-btn.dodge:hover{background:linear-gradient(135deg,#2196f3 0%,#1976d2 100%);transform:translateY(-2px)}.fight-btn.run{background:linear-gradient(135deg,#f57c00 0%,#e65100 100%);color:#fff}.fight-btn.run:hover{background:linear-gradient(135deg,#ff9800 0%,#f57c00 100%);transform:translateY(-2px)}.chat-section{background:#1a1a1a;border-radius:12px;padding:1.5em;border:1px solid #333}.chat-header{margin-bottom:1em;padding-bottom:.8em;border-bottom:1px solid #444}.chat-header h3{margin:0 0 .3em;color:#8bc34a;font-size:1.3em}.chat-info{color:#888;font-size:.85em}.chat-window{border:1px solid #444;padding:1em;margin-bottom:1em;min-height:200px;max-height:350px;overflow-y:auto;background:#111;border-radius:8px;box-shadow:inset 0 2px 4px #0000004d}.chat-empty{text-align:center;color:#666;padding:2em;font-style:italic}.chat-message{margin-bottom:.8em;line-height:1.4}.character-name{color:#8bc34a;cursor:pointer;font-weight:700;transition:color .2s ease}.character-name:hover{color:#aed581;text-decoration:underline}.message-content{color:#f0f0f0}.chat-form{display:flex;gap:.8em;align-items:stretch}.chat-input{flex:1;padding:.8em;border:1px solid #555;border-radius:8px;background:#222;color:#f0f0f0;font-size:.95em}.chat-input:focus{border-color:#8bc34a;outline:none;box-shadow:0 0 0 2px #8bc34a33}.chat-send{background:linear-gradient(135deg,#8bc34a 0%,#689f38 100%);color:#000;border:none;padding:.8em 1.2em;border-radius:8px;cursor:pointer;font-weight:700;transition:all .3s ease}.chat-send:hover{background:linear-gradient(135deg,#aed581 0%,#8bc34a 100%);transform:translateY(-2px);box-shadow:0 4px 8px #8bc34a4d}.stats-header{display:flex;justify-content:space-between;align-items:center;padding-bottom:1em;border-bottom:1px solid #444;margin-bottom:1em}.stats-header h3{margin:0;color:#8bc34a;font-size:1.2em;flex:1;text-align:center}.settings-btn{background:#444;border:1px solid #666;color:#f0f0f0;font-size:1.1em;cursor:pointer;padding:.5em;border-radius:6px;transition:all .3s ease}.settings-btn:hover{background:#555;border-color:#8bc34a;transform:scale(1.1)}.stats-content{padding:.5em 0}.stats-btn-mobile{display:none}.center{padding:1em;overflow-y:auto;background:#121212;min-height:calc(100vh - 120px)}.chat-window::-webkit-scrollbar,.center::-webkit-scrollbar,.left::-webkit-scrollbar,.right::-webkit-scrollbar{width:8px}.chat-window::-webkit-scrollbar-track,.center::-webkit-scrollbar-track,.left::-webkit-scrollbar-track,.right::-webkit-scrollbar-track{background:#222;border-radius:4px}.chat-window::-webkit-scrollbar-thumb,.center::-webkit-scrollbar-thumb,.left::-webkit-scrollbar-thumb,.right::-webkit-scrollbar-thumb{background:#666;border-radius:4px}.chat-window::-webkit-scrollbar-thumb:hover,.center::-webkit-scrollbar-thumb:hover,.left::-webkit-scrollbar-thumb:hover,.right::-webkit-scrollbar-thumb:hover{background:#8bc34a}.editor-container{max-width:1400px;margin:0 auto}.editor-header{text-align:center;margin-bottom:2em;padding-bottom:1em;border-bottom:2px solid #444;position:relative}.editor-header h2{color:#8bc34a;margin-bottom:.5em;font-size:2em}.editor-header p{color:#ccc;margin:0;font-style:italic}.refresh-btn{position:absolute;top:0;right:0;background:#4caf50;border:none;color:#fff;padding:.5em 1em;border-radius:4px;cursor:pointer;font-size:.9em;transition:background-color .3s}.refresh-btn:hover{background:#45a049}.refresh-btn:active{background:#3e8e41}.info-message{font-size:.9em;padding:.5em;margin-top:.5em;border-radius:4px;background:#444;color:#ccc;border-left:3px solid #8bc34a}.revival-anim{display:inline-flex;align-items:center;gap:8px}.revival-anim .dot{width:8px;height:8px;border-radius:50%;background:#8bc34a;animation:blink 1.2s infinite ease-in-out}.revival-anim .dot:nth-child(2){animation-delay:.2s}.revival-anim .dot:nth-child(3){animation-delay:.4s}@keyframes blink{0%,80%,to{opacity:.3}40%{opacity:1}}.editor-layout{display:grid;grid-template-columns:300px 1fr;gap:2em;align-items:start}.editor-sidebar{background:#1a1a1a;border-radius:12px;padding:1.5em;border:1px solid #333;position:sticky;top:1em}.editor-sidebar h3{color:#8bc34a;margin:0 0 1em;text-align:center;padding-bottom:.8em;border-bottom:1px solid #444}.locations-list{list-style:none;padding:0;margin:0;max-height:500px;overflow-y:auto}.location-item{background:#222;border:1px solid #444;border-radius:8px;padding:1em;margin-bottom:.8em;cursor:pointer;transition:all .3s ease}.location-item:hover{border-color:#666;background:#2a2a2a}.location-item.active{border-color:#8bc34a;background:linear-gradient(135deg,rgba(139,195,74,.1) 0%,rgba(139,195,74,.05) 100%);box-shadow:0 0 0 2px #8bc34a33}.location-info{display:flex;flex-direction:column;gap:.3em;margin-bottom:.5em}.location-name{color:#f0f0f0;font-weight:700;font-size:.95em}.location-type{color:#888;font-size:.8em;font-style:italic}.location-features{display:flex;gap:.3em}.feature-icon{font-size:1em;opacity:.8}.editor-main{display:flex;flex-direction:column;gap:2em}.editor-form-section{background:#1a1a1a;border-radius:12px;padding:2em;border:1px solid #333}.editor-form-section h3{color:#8bc34a;margin:0 0 1.5em;font-size:1.4em;text-align:center}.location-form{display:flex;flex-direction:column;gap:1.5em}.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1.5em}.form-group{display:flex;flex-direction:column;gap:.5em}.form-group label{color:#8bc34a;font-weight:700;font-size:.9em}.form-group input,.form-group select,.form-group textarea{background:#222;border:1px solid #555;border-radius:6px;padding:.8em;color:#f0f0f0;font-size:.95em;transition:border-color .3s ease}.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:#8bc34a;outline:none;box-shadow:0 0 0 2px #8bc34a33}.form-checkboxes{display:flex;flex-direction:column;gap:.8em;padding:1em;background:#222;border-radius:8px;border:1px solid #444}.checkbox-label{display:flex;align-items:center;gap:.8em;cursor:pointer;padding:.5em;border-radius:6px;transition:background-color .3s ease}.checkbox-label:hover{background:#2a2a2a}.checkbox-label input[type=checkbox]{width:auto;margin:0;transform:scale(1.2)}.checkbox-label span{color:#f0f0f0;font-size:.95em}.form-actions{display:flex;gap:1em;justify-content:center;padding-top:1em;border-top:1px solid #444}.btn-primary{background:linear-gradient(135deg,#8bc34a 0%,#689f38 100%);color:#000;border:none;padding:.8em 1.5em;border-radius:8px;cursor:pointer;font-weight:700;transition:all .3s ease}.btn-primary:hover{background:linear-gradient(135deg,#aed581 0%,#8bc34a 100%);transform:translateY(-2px);box-shadow:0 4px 8px #8bc34a4d}.btn-secondary{background:#444;color:#f0f0f0;border:1px solid #666;padding:.8em 1.5em;border-radius:8px;cursor:pointer;font-weight:700;transition:all .3s ease}.btn-secondary:hover{background:#555;border-color:#8bc34a;transform:translateY(-2px)}.compact-tools{font-size:12px}.compact-tools .btn-primary,.compact-tools .btn-secondary,.compact-tools .btn-danger{padding:.3em .6em;border-radius:6px;font-size:12px}.btn-secondary.small,.btn-danger.small{padding:.6em 1em;font-size:.85em}.btn-secondary.active{background:linear-gradient(135deg,#8bc34a 0%,#689f38 100%);color:#000;border-color:#8bc34a;box-shadow:0 2px 4px #8bc34a4d}.btn-danger{background:linear-gradient(135deg,#d32f2f 0%,#b71c1c 100%);color:#fff;border:none;padding:.8em 1.5em;border-radius:8px;cursor:pointer;font-weight:700;transition:all .3s ease}.btn-danger:hover{background:linear-gradient(135deg,#f44336 0%,#d32f2f 100%);transform:translateY(-2px);box-shadow:0 4px 8px #d32f2f4d}.location-details{display:grid;grid-template-columns:1fr 1fr;gap:2em}.details-section{background:#1a1a1a;border-radius:12px;padding:1.5em;border:1px solid #333}.details-section h3{color:#8bc34a;margin:0 0 1em;padding-bottom:.8em;border-bottom:1px solid #444}.characters-list{min-height:100px}.characters-list ul{list-style:none;padding:0;margin:0}.character-item{background:#222;border:1px solid #444;border-radius:6px;padding:.8em;margin-bottom:.5em}.character-name{color:#8bc34a;font-weight:700}.empty-state{text-align:center;color:#666;font-style:italic;padding:2em}.chat-preview{background:#111;border:1px solid #444;border-radius:8px;padding:1em;min-height:150px;max-height:200px;overflow-y:auto;margin-bottom:1em}.chat-message-preview{margin-bottom:.5em;line-height:1.4}.chat-test-form{display:flex;gap:.8em}.chat-test-form input{flex:1;background:#222;border:1px solid #555;border-radius:6px;padding:.6em;color:#f0f0f0}.chat-test-form button{background:#8bc34a;color:#000;border:none;padding:.6em 1em;border-radius:6px;cursor:pointer;font-weight:700}@media (max-width: 1024px){.editor-layout{grid-template-columns:250px 1fr;gap:1.5em}.location-details{grid-template-columns:1fr;gap:1.5em}.form-row{grid-template-columns:1fr;gap:1em}}@media (max-width: 768px){.editor-layout{grid-template-columns:1fr;gap:1em}.editor-sidebar{position:static;order:2}.editor-main{order:1}.form-actions{flex-direction:column}}.users-grid,.characters-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1.5em;margin-top:2em}.user-card,.character-card{background:linear-gradient(135deg,#2a2a2a 0%,#1f1f1f 100%);border:1px solid #444;border-radius:12px;padding:1.5em;cursor:pointer;transition:all .3s ease;text-align:center;box-shadow:0 4px 8px #0000004d}.user-card:hover,.character-card:hover{transform:translateY(-4px);border-color:#8bc34a;box-shadow:0 8px 16px #8bc34a33}.user-icon,.character-icon{font-size:3em;margin-bottom:.5em;display:block}.user-info h3,.character-info h3{color:#8bc34a;margin:.5em 0;font-size:1.2em}.user-info p,.character-info p{color:#bbb;margin:0;font-size:.9em}.character-editor-layout{display:grid;grid-template-columns:1fr 1fr;gap:2em}.stats-section,.titles-section{background:#1a1a1a;border-radius:12px;padding:1.5em;border:1px solid #333}.section-header{text-align:center;margin-bottom:1.5em;padding-bottom:1em;border-bottom:1px solid #444}.section-header h3{color:#8bc34a;margin:0;font-size:1.4em}.stats-list{display:flex;flex-direction:column;gap:1em}.stat-item{background:#222;border:1px solid #444;border-radius:8px;padding:1em}.stat-label{display:block;color:#8bc34a;font-weight:700;margin-bottom:.8em}.stat-controls{display:flex;gap:.8em;align-items:center}.stat-input{flex:1;background:#333;border:1px solid #555;border-radius:6px;padding:.6em;color:#f0f0f0;font-size:.95em}.stat-input:focus{border-color:#8bc34a;outline:none;box-shadow:0 0 0 2px #8bc34a33}.btn-primary.small{padding:.6em 1em;font-size:.85em}.titles-list{display:flex;flex-direction:column;gap:.8em;margin-bottom:2em}.title-item{background:#222;border:1px solid #444;border-radius:8px;padding:1em;transition:all .3s ease}.title-item:hover{border-color:#666;background:#2a2a2a}.title-checkbox{display:flex;align-items:center;gap:.8em;cursor:pointer;width:100%}.title-checkbox input[type=checkbox]{width:auto;margin:0;transform:scale(1.3)}.title-name{flex:1;color:#f0f0f0;font-weight:700}.title-status{font-size:.85em;padding:.3em .6em;border-radius:4px;font-weight:700}.title-status.unlocked{background:rgba(76,175,80,.2);color:#4caf50;border:1px solid rgba(76,175,80,.3)}.title-status.locked{background:rgba(158,158,158,.2);color:#9e9e9e;border:1px solid rgba(158,158,158,.3)}.current-title-section{background:#222;border:1px solid #444;border-radius:8px;padding:1.2em}.current-title-section h4{color:#8bc34a;margin:0 0 1em;text-align:center}.title-select{width:100%;background:#333;border:1px solid #555;border-radius:6px;padding:.8em;color:#f0f0f0;font-size:.95em}.title-select:focus{border-color:#8bc34a;outline:none;box-shadow:0 0 0 2px #8bc34a33}@media (max-width: 1024px){.character-editor-layout{grid-template-columns:1fr;gap:1.5em}.users-grid,.characters-grid{grid-template-columns:repeat(auto-fill,minmax(250px,1fr));gap:1em}}@media (max-width: 768px){.users-grid,.characters-grid{grid-template-columns:1fr}.stat-controls{flex-direction:column;align-items:stretch}}.character-panel{display:flex;flex-direction:column;height:100%}.panel-tabs{display:flex;border-bottom:1px solid #444;margin-bottom:1em}.panel-tabs .tab{flex:1;display:flex;align-items:center;justify-content:center;gap:6px;background:#333;border:none;color:#ccc;height:40px;padding:0 10px;line-height:1;cursor:pointer;font-size:.9em;font-weight:700;transition:all .3s ease;border-bottom:2px solid transparent}.panel-tabs .tab:first-child{border-radius:6px 0 0}.panel-tabs .tab:last-child{border-radius:0 6px 0 0}.panel-tabs .tab:hover{background:#444;color:#f0f0f0}.panel-tabs .tab.active{background:#8bc34a;color:#000;border-bottom-color:#8bc34a}.panel-content{flex:1;overflow-y:auto;padding:.5em 0}.inventory-panel{height:100%;display:flex;flex-direction:column}.inventory-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1em;padding-bottom:.8em;border-bottom:1px solid #444}.inventory-header h3{margin:0;color:#8bc34a;font-size:1.1em}.inventory-count{color:#888;font-size:.85em;margin:0}.inventory-loading,.equipment-loading{text-align:center;padding:2em;color:#888;font-style:italic}.inventory-empty{text-align:center;padding:2em;color:#666;font-style:italic}.inventory-list{display:flex;flex-direction:column;gap:.8em;max-height:400px;overflow-y:auto}.item-header{display:flex;align-items:center;gap:.8em;margin-bottom:.5em}.item-icon{font-size:1.2em;min-width:1.5em}.item-name{flex:1;font-weight:700;color:#f0f0f0;font-size:.95em}.item-quantity{background:#555;color:#fff;padding:.2em .5em;border-radius:4px;font-size:.8em;font-weight:700}.item-description{color:#ccc;font-size:.85em;margin:.5em 0;line-height:1.3;font-style:italic}.item-actions{display:flex;gap:.5em;margin-top:.8em}.action-btn{background:linear-gradient(135deg,#8bc34a 0%,#689f38 100%);color:#000;border:none;padding:.5em 1em;border-radius:6px;cursor:pointer;font-size:.85em;font-weight:700;transition:all .3s ease}.action-btn:hover{background:linear-gradient(135deg,#aed581 0%,#8bc34a 100%);transform:translateY(-1px)}.action-btn.consume-btn{background:linear-gradient(135deg,#ff9800 0%,#f57c00 100%);color:#fff}.action-btn.consume-btn:hover{background:linear-gradient(135deg,#ffb74d 0%,#ff9800 100%)}.equipment-panel{height:100%;display:flex;flex-direction:column}.equipment-header{margin-bottom:1em;padding-bottom:.8em;border-bottom:1px solid #444}.equipment-header h3{margin:0;color:#8bc34a;font-size:1.1em}.equipment-slots{display:flex;flex-direction:column;gap:.8em;max-height:400px;overflow-y:auto}.slot-header{display:flex;align-items:center;gap:.8em;margin-bottom:.8em}.slot-icon{font-size:1.2em;min-width:1.5em}.slot-name{font-weight:700;color:#8bc34a;font-size:.95em}.equipped-item{background:#2a2a2a;border:1px solid #555;border-radius:6px;padding:.8em}.item-info{display:flex;flex-direction:column;gap:.3em;margin-bottom:.8em}.stat-bonus{color:#8bc34a;font-size:.8em;font-weight:700}.action-btn.unequip-btn{background:linear-gradient(135deg,#666 0%,#555 100%);color:#fff}.action-btn.unequip-btn:hover{background:linear-gradient(135deg,#777 0%,#666 100%)}.empty-slot{text-align:center;padding:1em;color:#666;font-style:italic;border:1px dashed #444;border-radius:6px}.inventory-item.rarity-common,.equipped-item.rarity-common{border-left:4px solid #9d9d9d}.inventory-item.rarity-uncommon,.equipped-item.rarity-uncommon{border-left:4px solid #1eff00}.inventory-item.rarity-rare,.equipped-item.rarity-rare{border-left:4px solid #0070dd}.inventory-item.rarity-epic,.equipped-item.rarity-epic{border-left:4px solid #a335ee}.inventory-item.rarity-legendary,.equipped-item.rarity-legendary{border-left:4px solid #ff8000}.items-editor{height:100%;display:flex;flex-direction:column}.editor-layout{display:grid;grid-template-columns:1fr 1fr;gap:2em;flex:1;min-height:0}.items-list{background:#1a1a1a;border-radius:12px;padding:1.5em;border:1px solid #333;display:flex;flex-direction:column}.items-list h3{margin:0 0 1em;color:#8bc34a;text-align:center;padding-bottom:.8em;border-bottom:1px solid #444}.items-grid{display:flex;flex-direction:column;gap:.8em;max-height:500px;overflow-y:auto;flex:1}.item-card{background:#222;border:1px solid #444;border-radius:8px;padding:1em;cursor:pointer;transition:all .3s ease;position:relative}.item-card:hover{border-color:#666;background:#2a2a2a}.item-card.selected{border-color:#8bc34a;background:linear-gradient(135deg,rgba(139,195,74,.1) 0%,rgba(139,195,74,.05) 100%);box-shadow:0 0 0 2px #8bc34a33}.item-card .item-header{margin-bottom:.5em}.item-details{display:flex;gap:1em;font-size:.85em;color:#888}.item-type{background:#444;padding:.2em .5em;border-radius:4px;font-size:.8em}.item-rarity{font-weight:700}.delete-btn{position:absolute;top:.5em;right:.5em;background:#d32f2f;color:#fff;border:none;width:2em;height:2em;border-radius:50%;cursor:pointer;font-size:.8em;transition:all .3s ease}.delete-btn:hover{background:#f44336;transform:scale(1.1)}.item-form{background:#1a1a1a;border-radius:12px;padding:1.5em;border:1px solid #333;overflow-y:auto;max-height:600px}.form-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.5em;padding-bottom:1em;border-bottom:1px solid #444}.form-header h3{margin:0;color:#8bc34a}.cancel-btn{background:#666;color:#fff;border:none;padding:.5em 1em;border-radius:6px;cursor:pointer;font-size:.85em;transition:all .3s ease}.cancel-btn:hover{background:#777}.item-form .form-row{display:grid;grid-template-columns:1fr 1fr;gap:1em;margin-bottom:1em}.item-form .form-row:last-child{grid-template-columns:1fr}.item-form label{display:flex;flex-direction:column;gap:.5em;color:#8bc34a;font-size:.9em;font-weight:700}.item-form input,.item-form select,.item-form textarea{background:#222;border:1px solid #555;border-radius:6px;padding:.6em;color:#f0f0f0;font-size:.9em;transition:border-color .3s ease}.item-form input:focus,.item-form select:focus,.item-form textarea:focus{border-color:#8bc34a;outline:none;box-shadow:0 0 0 2px #8bc34a33}.form-section{margin:1.5em 0;padding:1em;background:#222;border-radius:8px;border:1px solid #444}.form-section h4{margin:0 0 1em;color:#8bc34a;font-size:1em;text-align:center;padding-bottom:.5em;border-bottom:1px solid #555}.save-btn{background:linear-gradient(135deg,#8bc34a 0%,#689f38 100%);color:#000;border:none;padding:.8em 1.5em;border-radius:8px;cursor:pointer;font-weight:700;font-size:.95em;transition:all .3s ease;width:100%;margin-top:1em}.save-btn:hover{background:linear-gradient(135deg,#aed581 0%,#8bc34a 100%);transform:translateY(-2px);box-shadow:0 4px 8px #8bc34a4d}@media (max-width: 768px){.panel-tabs .tab{font-size:.75em;padding:.6em .3em}.editor-layout{grid-template-columns:1fr;gap:1em}.items-list{order:2}.item-form{order:1}.item-form .form-row{grid-template-columns:1fr}.item-actions{flex-direction:column}.inventory-list,.equipment-slots{max-height:300px}}.equipment-slots-editor{height:100%;display:flex;flex-direction:column}.slots-list{background:#1a1a1a;border-radius:12px;padding:1.5em;border:1px solid #333;display:flex;flex-direction:column}.slots-list h3{margin:0 0 1em;color:#8bc34a;text-align:center;padding-bottom:.8em;border-bottom:1px solid #444}.slots-grid{display:flex;flex-direction:column;gap:.8em;max-height:500px;overflow-y:auto}.slot-card{background:#222;border:1px solid #444;border-radius:8px;padding:1em;cursor:pointer;transition:all .3s ease;position:relative}.slot-card:hover,.slot-card.selected{border-color:#8bc34a;background:#2a2a2a}.slot-header{display:flex;align-items:center;gap:.8em;margin-bottom:.5em}.slot-icon{font-size:1.2em}.slot-name{font-weight:700;color:#fff;flex:1}.slot-details{display:flex;gap:1em;font-size:.85em;color:#aaa}.slot-code{background:#333;padding:.2em .5em;border-radius:4px;font-family:monospace}.slot-type{color:#8bc34a}.slot-form{background:#1a1a1a;border-radius:12px;padding:1.5em;border:1px solid #333}.info-section{margin-top:2em;padding:1em;background:#222;border-radius:8px;border-left:4px solid #8bc34a}.info-section h4{margin:0 0 .8em;color:#8bc34a}.info-section ul{margin:0;padding-left:1.5em;color:#ccc}.info-section li{margin-bottom:.4em;line-height:1.4}.inventory-management{padding:1.5em}.inventory-section,.equipment-section{margin-bottom:2em}.section-header{margin-bottom:1.5em;padding-bottom:1em;border-bottom:1px solid #444}.section-header h3{margin:0 0 .5em;color:#8bc34a;font-size:1.3em}.section-header p{margin:0;color:#aaa;font-size:.9em}.add-item-section{background:#222;border-radius:8px;padding:1.5em;margin-bottom:2em;border:1px solid #444}.add-item-section h4{margin:0 0 1em;color:#8bc34a}.add-item-form select{background:#333;color:#fff;border:1px solid #555;border-radius:6px;padding:.8em;font-size:1em;min-width:200px}.current-inventory h4{margin:0 0 1em;color:#8bc34a}.inventory-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1em;max-height:400px;overflow-y:auto}.inventory-item{background:#222;border:1px solid #444;border-radius:8px;padding:1em;transition:all .3s ease}.inventory-item:hover{border-color:#666;background:#2a2a2a}.item-details{display:flex;align-items:center;gap:1em;margin-top:.8em}.item-quantity{display:flex;align-items:center;gap:.5em;flex:1}.item-quantity label{color:#aaa;font-size:.9em}.quantity-input{background:#333;color:#fff;border:1px solid #555;border-radius:4px;padding:.4em .6em;width:60px;text-align:center}.remove-btn{background:#dc3545;color:#fff;border:none;border-radius:4px;padding:.4em .8em;cursor:pointer;font-size:.85em;transition:background-color .3s ease}.remove-btn:hover{background:#c82333}.equipment-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(250px,1fr));gap:1em}.equipment-slot{background:#222;border:1px solid #444;border-radius:8px;padding:1em}.slot-label{font-weight:700;color:#8bc34a;margin-bottom:.8em;font-size:.9em}.equipped-item{display:flex;flex-direction:column;gap:.5em}.equipped-item .item-name{font-weight:700}.item-bonuses{display:flex;gap:.5em;flex-wrap:wrap}.bonus{background:#333;padding:.2em .5em;border-radius:4px;font-size:.8em;border-left:3px solid}.bonus.attack{border-color:#f44336;color:#ffcdd2}.bonus.defense{border-color:#2196f3;color:#bbdefb}.bonus.hp{border-color:#4caf50;color:#c8e6c9}.empty-slot{color:#666;font-style:italic;text-align:center;padding:1em;border:1px dashed #444;border-radius:4px}@media (max-width: 768px){.inventory-grid,.equipment-grid{grid-template-columns:1fr}.slots-grid{max-height:300px}.add-item-form select{min-width:100%;margin-bottom:1em}.item-details{flex-direction:column;align-items:stretch;gap:.5em}.item-quantity{justify-content:space-between}}.equipment-slot .slot-header{border-left:4px solid #444}.equipment-slot.slot-weapon .slot-header{border-left-color:#d32f2f}.equipment-slot.slot-offhand .slot-header{border-left-color:#1976d2}.equipment-slot.slot-armor .slot-header{border-left-color:#607d8b}.equipment-slot.slot-helmet .slot-header{border-left-color:#8d6e63}.equipment-slot.slot-shoulders .slot-header{border-left-color:#6a1b9a}.equipment-slot.slot-back .slot-header{border-left-color:#00897b}.equipment-slot.slot-wrist .slot-header{border-left-color:#7b1fa2}.equipment-slot.slot-gloves .slot-header{border-left-color:#5d4037}.equipment-slot.slot-belt .slot-header{border-left-color:#ef6c00}.equipment-slot.slot-legs .slot-header{border-left-color:#455a64}.equipment-slot.slot-boots .slot-header{border-left-color:#1b5e20}.equipment-slot.slot-ring1 .slot-header,.equipment-slot.slot-ring2 .slot-header{border-left-color:#fbc02d}.equipment-slot.slot-trinket1 .slot-header,.equipment-slot.slot-trinket2 .slot-header{border-left-color:#c2185b}.equipment-slot.slot-necklace .slot-header{border-left-color:#00acc1}.equipment-slot.slot-shirt .slot-header{border-left-color:#9e9e9e}.equipment-slot.slot-tabard .slot-header{border-left-color:#3949ab}.energy-display{margin-top:4px}.energy-text{font-weight:700;color:#66a3ff}.energy-bar{background:#444;border-radius:6px;height:12px;overflow:hidden;border:1px solid #666}.energy-bar-inner{height:100%;background:linear-gradient(90deg,#3b82f6,#60a5fa);transition:width .5s ease;border-radius:5px}.equip-overlay{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1000;display:flex;align-items:center;justify-content:center}.equip-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;background:rgba(0,0,0,.5)}.side-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:900;background:rgba(0,0,0,.3)}.equip-modal{position:relative;z-index:1001;background:#1f1f1f;color:#fff;width:min(1100px,96vw);max-height:90vh;overflow-y:auto;overscroll-behavior:contain;border-radius:8px;box-shadow:0 10px 30px #00000080;display:flex;flex-direction:column}.equip-header{display:flex;align-items:center;justify-content:space-between;padding:12px 16px;border-bottom:1px solid #333}.equip-body{display:grid;grid-template-columns:2fr 1fr;gap:12px;align-items:start;padding:0 12px 12px}.equip-main{min-width:0}.equip-stats{position:sticky;top:8px;align-self:start;max-height:calc(90vh - 80px);overflow:auto;border-left:1px solid #2a2a2a;padding-left:10px}.equip-summary{padding:12px 4px;border-bottom:1px solid #333}.equip-summary-list{display:flex;flex-wrap:wrap;gap:8px;margin-top:6px}.summary-item{background:#101010;padding:2px 6px;border-radius:4px;font-size:12px}.equip-grid{padding:12px 16px;overflow:auto;display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:12px}.equip-figure{padding:12px 16px;display:grid;grid-template-columns:1fr 1fr 1fr;gap:8px;align-items:start;position:relative}.equip-figure:before{content:"";position:absolute;top:0;bottom:0;left:calc(33.33% - 6px);width:1px;background:rgba(255,255,255,.06)}.equip-figure:after{content:"";position:absolute;top:0;bottom:0;right:calc(33.33% - 6px);width:1px;background:rgba(255,255,255,.06)}.figure-col .equip-slot-card{border-color:#2f2f2f;box-shadow:0 0 0 1px #ffffff08 inset}.figure-center .equip-slot-card{border-color:#3a3a3a}.figure-col{display:grid;gap:8px}.figure-center{display:grid;gap:8px;align-content:start}.figure-silhouette{background:#0f0f0f;border:1px solid #2a2a2a;border-radius:6px;padding:8px;text-align:center;font-size:20px}.equip-slot-card{background:#121212;border:1px solid #2a2a2a;border-radius:6px;padding:8px}.slot-top{display:flex;align-items:center;justify-content:space-between;gap:6px}.slot-name{font-weight:600;opacity:.9}.equipped-name{color:#e0e0e0}.equipped-empty{color:#888;font-style:italic}.slot-actions{display:flex;gap:6px}.small-btn{background:#2b2b2b;color:#fff;border:1px solid #3a3a3a;padding:4px 8px;border-radius:4px;cursor:pointer}.slot-bonuses{margin-top:6px;display:flex;flex-wrap:wrap;gap:6px}.stat-badge{background:#0f0f0f;border:1px solid #2a2a2a;padding:2px 6px;border-radius:4px;font-size:12px}.delta-badge{background:#0f0f0f;border:1px solid #2a2a2a;padding:1px 5px;border-radius:4px;font-size:11px}.slot-selector{margin-top:10px;border-top:1px solid #2a2a2a;padding-top:8px}.slot-search{width:100%;background:#101010;border:1px solid #2a2a2a;color:#fff;border-radius:4px;padding:6px 8px;margin-bottom:6px}.slot-items{display:grid;gap:6px;max-height:220px;overflow:auto}.slot-item-row{background:#0f0f0f;border:1px solid #2a2a2a;border-radius:4px;padding:6px;cursor:pointer}.slot-item-row:hover{border-color:#4a4a4a}.slot-item-name{font-weight:600;margin-bottom:4px}.slot-item-name .item-icon{margin-right:6px}.rarity-badge{margin-left:6px;font-size:11px;padding:1px 6px;border-radius:12px;text-transform:uppercase;border:1px solid #3a3a3a;background:#0f0f0f}.rarity-common{color:#fff}.rarity-uncommon{color:#1eff00}.rarity-rare{color:#0070dd}.rarity-epic{color:#a335ee}.rarity-legendary{color:#ff8000}.rarity-badge.rarity-common{color:#fff;border-color:#7a7a7a;background:rgba(157,157,157,.12)}.rarity-badge.rarity-uncommon{color:#1eff00;border-color:#17bf00;background:rgba(30,255,0,.1)}.rarity-badge.rarity-rare{color:#0070dd;border-color:#005bb1;background:rgba(0,112,221,.1)}.rarity-badge.rarity-epic{color:#a335ee;border-color:#7c28b6;background:rgba(163,53,238,.1)}.rarity-badge.rarity-legendary{color:#ff8000;border-color:#c60;background:rgba(255,128,0,.1)}.slot-item-badges{display:flex;gap:6px;flex-wrap:wrap}.slot-item-preview{margin-top:4px;display:flex;gap:6px;flex-wrap:wrap}.overlay-loading{position:absolute;top:10px;right:14px;opacity:.8;font-size:12px}.close-btn{background:transparent;color:#fff;border:none;cursor:pointer;font-size:18px}.selector-overlay{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1002;display:flex;align-items:flex-start;justify-content:center;background:rgba(0,0,0,.4)}.selector-modal{margin-top:24px;background:#1f1f1f;border:1px solid #333;border-radius:8px;width:min(800px,92vw);max-height:75vh;overflow:auto;box-shadow:0 10px 30px #00000080}.selector-header{display:flex;align-items:center;justify-content:space-between;padding:10px 12px;border-bottom:1px solid #333}.equip-slot-card{cursor:pointer}.item-tooltip{background:#141414;border:1px solid #2f2f2f;border-radius:8px;padding:10px 12px;max-width:min(360px,90vw);color:#eaeaea;box-shadow:0 8px 24px #0009}.item-tooltip-name{font-weight:700;margin-bottom:6px;display:flex;align-items:center;gap:6px}.item-tooltip-desc{opacity:.95;margin-bottom:8px}.item-tooltip-section{margin-top:6px}.item-tooltip .section-title{font-size:12px;opacity:.85;margin-bottom:4px}.item-tooltip .badges{display:flex;flex-wrap:wrap;gap:6px}.item-tooltip .buff-lines{display:grid;gap:3px}.item-tooltip .buff-name{font-weight:600}.item-tooltip .buff-summary{opacity:.95}.item-tooltip .req-badge{background:#222;border:1px solid #333;border-radius:6px;padding:2px 6px;font-size:12px}.item-tooltip-hint{margin-top:8px;font-size:11px;opacity:.7}@media (max-width: 900px){.equip-body{grid-template-columns:1fr}.equip-stats{position:static;max-height:none;border-left:none;padding-left:0}.equip-figure{grid-template-columns:1fr}.equip-figure:before,.equip-figure:after{display:none}}.inventory-item .item-description{display:none}.inventory-item:hover .item-description{display:block}body.theme-classic{background:#0c0c0c}body.theme-fantasy-dark{background:url(/bg/fantasy-dark.svg) center / cover fixed,linear-gradient(180deg,#0a0d12,#07090d 60%,#05070a)}body.theme-fantasy-light{background:url(/bg/fantasy-light.svg) center / cover fixed,linear-gradient(180deg,#1f2330,#1a1d28 60%,#171923)}.theme-fantasy-dark .location-header,.theme-fantasy-light .location-header{border-color:#7fbf6a}.theme-fantasy-dark .feature-badge,.theme-fantasy-light .feature-badge{border-color:#6aa84f}.theme-fantasy-dark .admin-section:hover,.theme-fantasy-light .admin-section:hover{border-color:#7fbf6a}body.accent-runes .location-header{background-image:radial-gradient(1000px 300px at 20% 0%,rgba(127,191,106,.1),transparent),repeating-linear-gradient(45deg,rgba(127,191,106,.07) 0 4px,transparent 4px 12px),linear-gradient(135deg,rgba(127,191,106,.06),rgba(127,191,106,0));background-blend-mode:overlay,overlay,normal}body.accent-scales .location-header{background-image:radial-gradient(circle at 20% 30%,rgba(127,191,106,.09) 0 12%,transparent 13%),radial-gradient(circle at 40% 10%,rgba(127,191,106,.05) 0 10%,transparent 11%),linear-gradient(135deg,rgba(127,191,106,.06),rgba(127,191,106,0));background-size:120px 120px,140px 140px,auto;background-repeat:repeat}body.accent-stars .location-header{background-image:radial-gradient(1px 1px at 20% 30%,rgba(255,255,255,.6),transparent),radial-gradient(1px 1px at 60% 20%,rgba(255,255,255,.5),transparent),radial-gradient(1px 1px at 80% 70%,rgba(255,255,255,.5),transparent),linear-gradient(135deg,rgba(127,191,106,.05),rgba(127,191,106,0));background-size:auto}body.bg-auto.theme-fantasy-dark.loc-hunting{background:url(/bg/forest.svg) center / cover fixed,linear-gradient(180deg,#0a0d12,#07090d 60%,#05070a)}body.bg-auto.theme-fantasy-light.loc-hunting{background:url(/bg/forest.svg) center / cover fixed,linear-gradient(180deg,#1f2330,#1a1d28 60%,#171923)}.location-header{position:relative;overflow:hidden}.location-header:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none;background:radial-gradient(600px 240px at 20% 0%,rgba(127,191,106,.12),transparent 60%),radial-gradient(800px 260px at 80% -10%,rgba(127,191,106,.1),transparent 65%);mix-blend-mode:screen}.location-title{text-shadow:0 4px 20px rgba(0,0,0,.45),0 0 22px rgba(127,191,106,.2)}html,body,#root{height:100%}body{margin:0}body.full-map header,body.full-map footer{display:none}body.full-map #root{height:100vh}body.full-map .game-layout{min-height:100vh;gap:0}body.full-map main.center{padding:0}body.full-map main.center.full-map{height:100vh}.center.full-map{display:flex}.center.full-map>div{flex:1;min-height:0}body{margin:0;font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif;background:linear-gradient(135deg,#121212 0%,#1a1a1a 100%);color:#f0f0f0;line-height:1.6}header,footer{text-align:center;padding:1.5em 0;background:linear-gradient(135deg,#1f1f1f 0%,#2a2a2a 100%);border-bottom:2px solid #444;box-shadow:0 2px 10px #0000004d}footer{font-size:.9em;opacity:.8;border-bottom:none;border-top:2px solid #444;margin-top:2em}.container{padding:2rem;max-width:800px;margin:auto}h1{color:#8bc34a;text-shadow:0 2px 4px rgba(0,0,0,.5);margin-bottom:1em}h2,h3,h4{color:#aed581}input,select,textarea{width:100%;padding:.8em;margin-bottom:1em;border:2px solid #555;border-radius:8px;background:linear-gradient(135deg,#222 0%,#2a2a2a 100%);color:#f0f0f0;font-size:1rem;transition:all .3s ease;box-sizing:border-box}input:focus,select:focus,textarea:focus{border-color:#8bc34a;outline:none;box-shadow:0 0 0 3px #8bc34a33;background:#2a2a2a}input::placeholder{color:#888;font-style:italic}button,.btn{background:linear-gradient(135deg,#2e7d32 0%,#1b5e20 100%);border:none;color:#fff;padding:.8em 1.5em;border-radius:8px;cursor:pointer;font-size:1rem;font-weight:600;transition:all .3s ease;box-shadow:0 2px 8px #0000004d;text-decoration:none;display:inline-block;text-align:center}button:hover,.btn:hover{background:linear-gradient(135deg,#388e3c 0%,#2e7d32 100%);transform:translateY(-2px);box-shadow:0 4px 12px #8bc34a66}button:active,.btn:active{transform:translateY(0);box-shadow:0 2px 6px #0000004d}.login-form{max-width:400px;margin:3em auto;padding:2.5em;background:linear-gradient(135deg,#1f1f1f 0%,#2a2a2a 100%);border-radius:16px;box-shadow:0 10px 30px #00000080;border:1px solid #444}.login-form h1{text-align:center;margin-bottom:1.5em;font-size:2.2em}.error-msg{color:#ff6b6b;background:rgba(255,107,107,.1);border:1px solid rgba(255,107,107,.3);padding:.8em;border-radius:8px;margin-bottom:1em;text-align:center;font-weight:500}@keyframes fadeIn{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.container{animation:fadeIn .5s ease-out}::-webkit-scrollbar{width:10px}::-webkit-scrollbar-track{background:#222;border-radius:5px}::-webkit-scrollbar-thumb{background:linear-gradient(135deg,#666 0%,#8bc34a 100%);border-radius:5px;border:1px solid #444}::-webkit-scrollbar-thumb:hover{background:linear-gradient(135deg,#8bc34a 0%,#689f38 100%)}
