.game-container{max-width:1100px;width:100%}.game-header{display:flex;justify-content:space-between;align-items:center;padding:16px 24px;background:#0000004d;border-radius:12px 12px 0 0;border-bottom:2px solid #3d3d5c}.game-header h1{font-size:1.5rem;color:gold;text-shadow:2px 2px 4px rgba(0,0,0,.5)}.header-stats{display:flex;gap:24px;font-size:1rem;font-weight:600}.header-stats .gold{color:gold}.header-stats .wave{color:#87ceeb}.header-stats .health{color:#ff6b6b}.game-content{display:flex;gap:16px;background:#0003;padding:16px;border-radius:0 0 12px 12px}.game-area{position:relative;background:linear-gradient(180deg,#2d5a27,#1e4620,#163318);border-radius:8px;overflow:hidden;cursor:crosshair;box-shadow:inset 0 0 50px #0000004d}.game-area:before{content:"";position:absolute;right:0;top:0;bottom:0;width:100px;background:linear-gradient(90deg,transparent,rgba(139,90,43,.3));pointer-events:none}.placement-zone{position:absolute;border:2px dashed rgba(255,255,255,.4);background:#ffffff1a;border-radius:8px;pointer-events:none}.bastion{position:absolute;width:80px;text-align:center}.bastion-icon{width:80px;height:auto;filter:drop-shadow(2px 2px 4px rgba(0,0,0,.5))}.bastion-level{font-size:.75rem;font-weight:700;color:gold;margin-top:-4px}.bastion-health-bar{width:100%;height:8px;background:#333;border-radius:4px;margin-top:4px;overflow:hidden}.bastion-health-fill{height:100%;background:linear-gradient(90deg,#f44,#f66);transition:width .2s ease}.defender{position:absolute;width:40px;height:40px;display:flex;flex-direction:column;align-items:center;justify-content:center;cursor:pointer;transition:transform .1s ease}.defender:hover{transform:scale(1.1)}.defender.selected{z-index:10}.defender-img{width:40px;height:auto;filter:drop-shadow(1px 1px 2px rgba(0,0,0,.5))}.defender-level{position:absolute;bottom:-2px;right:-2px;background:gold;color:#000;font-size:.6rem;font-weight:700;width:14px;height:14px;border-radius:50%;display:flex;align-items:center;justify-content:center}.range-indicator{position:absolute;border:2px dashed rgba(255,255,255,.3);border-radius:50%;pointer-events:none;background:#ffffff0d}.enemy{position:absolute;width:30px;height:50px;display:flex;flex-direction:column;align-items:center;transition:transform .1s ease}.enemy-img{width:32px;height:auto;filter:drop-shadow(1px 1px 2px rgba(0,0,0,.5))}.enemy.troll .enemy-img,.enemy.dragon .enemy-img{width:40px}.wave-enemy-img{width:20px;height:auto;vertical-align:middle}.enemy-health-bar{width:100%;height:5px;background:#333;border:1px solid #000;border-radius:2px;margin-top:8px}.enemy-health-fill{height:100%;background:linear-gradient(180deg,#f66,#c00);border-radius:1px;transition:width .1s ease}.enemy.barbarian{animation:barbarian-shake .15s infinite}.enemy.barbarian .enemy-img{width:36px}@keyframes barbarian-shake{0%,to{transform:rotate(-3deg)}50%{transform:rotate(3deg)}}.adventure-party{position:absolute;width:36px;height:36px;display:flex;flex-direction:column;align-items:center;transition:transform .1s ease;z-index:5}.party-img{width:36px;height:auto;filter:drop-shadow(0 0 4px rgba(100,200,255,.6))}.party-health-bar{width:100%;height:4px;background:#333;border-radius:2px;margin-top:2px}.party-health-fill{height:100%;background:linear-gradient(90deg,#48f,#6af);transition:width .1s ease}.projectile{position:absolute;width:8px;height:8px;border-radius:50%;pointer-events:none}.projectile.soldier{background:#888;box-shadow:0 0 4px #aaa}.projectile.archer{background:#8b4513;box-shadow:0 0 4px #d2691e;border-radius:2px}.projectile.wizard{background:#9b59b6;box-shadow:0 0 8px #e74c3c,0 0 16px #9b59b6}.attack-effect{position:absolute;width:40px;height:40px;display:flex;align-items:center;justify-content:center;animation:attack-strike .5s ease-out forwards;z-index:15;pointer-events:none}.attack-enemy-img{width:36px;height:auto;animation:attack-enemy-fade .5s ease-out forwards;filter:drop-shadow(0 0 8px rgba(255,0,0,.8))}.attack-slash{position:absolute;width:50px;height:50px;background:linear-gradient(135deg,transparent 40%,rgba(255,255,255,.9) 45%,rgba(255,200,100,.8) 50%,rgba(255,255,255,.9) 55%,transparent 60%);animation:slash-effect .3s ease-out forwards;transform-origin:center}@keyframes attack-strike{0%{transform:scale(1) translate(0)}20%{transform:scale(1.3) translate(10px)}to{transform:scale(.5) translate(20px);opacity:0}}@keyframes attack-enemy-fade{0%{opacity:1;transform:rotate(0)}30%{opacity:1;transform:rotate(-15deg)}to{opacity:0;transform:rotate(15deg) scale(.5)}}@keyframes slash-effect{0%{transform:rotate(-45deg) scale(0);opacity:1}50%{transform:rotate(-45deg) scale(1.5);opacity:1}to{transform:rotate(-45deg) scale(2);opacity:0}}.attack-effect.dragon{width:60px;height:60px}.attack-effect.dragon .attack-enemy-img{width:50px}.attack-effect.dragon .attack-slash{width:80px;height:80px;background:linear-gradient(135deg,transparent 35%,rgba(255,100,0,.9) 45%,rgba(255,200,0,.9) 50%,rgba(255,100,0,.9) 55%,transparent 65%)}.attack-effect.troll .attack-slash{width:60px;height:60px;background:linear-gradient(135deg,transparent 35%,rgba(150,100,50,.9) 45%,rgba(200,150,100,.9) 50%,rgba(150,100,50,.9) 55%,transparent 65%)}.game-over-overlay,.pause-overlay{position:absolute;inset:0;background:#000c;display:flex;align-items:center;justify-content:center;z-index:100}.game-over-content,.pause-content{text-align:center;padding:40px;background:#1e1e32f2;border-radius:12px;border:2px solid #ffd700}.game-over-content h2,.pause-content h2{font-size:2rem;color:gold;margin-bottom:16px}.game-over-content p{font-size:1.2rem;margin-bottom:24px}.game-over-content button,.pause-content button{padding:12px 32px;font-size:1.1rem;background:gold;color:#1a1a2e;border:none;border-radius:8px;cursor:pointer;font-weight:700;transition:transform .1s ease,background .2s ease}.game-over-content button:hover,.pause-content button:hover{background:#ffed4a;transform:scale(1.05)}.sidebar{width:240px;display:flex;flex-direction:column;gap:12px}.sidebar h3{font-size:.9rem;color:gold;margin-bottom:8px;border-bottom:1px solid #3d3d5c;padding-bottom:4px}.control-panel,.shop-panel,.selected-panel,.bastion-panel,.wave-panel{background:#0000004d;padding:12px;border-radius:8px}.control-buttons{display:flex;flex-direction:column;gap:8px}.start-wave-btn{padding:12px 16px;font-size:1rem;background:linear-gradient(135deg,#4caf50,#45a049);color:#fff;border:none;border-radius:8px;cursor:pointer;font-weight:700;transition:transform .1s ease,background .2s ease}.start-wave-btn:hover{background:linear-gradient(135deg,#5cbf60,#50b054);transform:scale(1.02)}.control-buttons button:not(.start-wave-btn){padding:8px 16px;background:#3d3d5c;color:#fff;border:none;border-radius:6px;cursor:pointer;transition:background .2s ease}.control-buttons button:not(.start-wave-btn):hover{background:#4d4d6c}.shop-items{display:flex;flex-direction:column;gap:8px}.shop-item{display:flex;align-items:center;gap:8px;padding:8px 12px;background:#2a2a4a;border:2px solid transparent;border-radius:8px;cursor:pointer;transition:all .2s ease}.shop-item:hover:not(.disabled){background:#3a3a5a;border-color:gold}.shop-item.selected{background:#3a3a5a;border-color:gold}.shop-item.disabled{opacity:.5;cursor:not-allowed}.item-img{width:32px;height:auto;filter:drop-shadow(1px 1px 2px rgba(0,0,0,.3))}.panel-img{width:24px;height:auto;vertical-align:middle;margin-right:4px}.item-name{flex:1;text-align:left;font-weight:500}.item-cost{color:gold;font-weight:700}.cancel-btn{margin-top:8px;padding:8px 12px;background:#8b0000;color:#fff;border:none;border-radius:6px;cursor:pointer;width:100%;transition:background .2s ease}.cancel-btn:hover{background:#a00000}.stats{font-size:.85rem;color:#aaa}.stats p{margin:4px 0}.upgrade-btn{margin-top:8px;padding:8px 12px;background:linear-gradient(135deg,#9b59b6,#8e44ad);color:#fff;border:none;border-radius:6px;cursor:pointer;width:100%;font-weight:500;transition:all .2s ease}.upgrade-btn:hover:not(:disabled){background:linear-gradient(135deg,#a569c6,#9e54bd);transform:scale(1.02)}.upgrade-btn:disabled{opacity:.5;cursor:not-allowed}.wave-enemies{font-size:.9rem}.wave-enemies p{margin:4px 0}.bestiary-btn{margin-top:8px;padding:10px 16px;background:linear-gradient(135deg,#8b4513,sienna);color:gold;border:2px solid #ffd700;border-radius:8px;cursor:pointer;font-weight:700;font-size:.9rem;transition:all .2s ease;width:100%}.bestiary-btn:hover{background:linear-gradient(135deg,sienna,#b8652d);transform:scale(1.02)}.bestiary-overlay{position:fixed;inset:0;background:#000000d9;display:flex;align-items:center;justify-content:center;z-index:200}.bestiary-modal{background:linear-gradient(180deg,#1a1a2e,#16213e);border:3px solid #ffd700;border-radius:16px;padding:24px;max-width:700px;max-height:85vh;overflow-y:auto;position:relative}.bestiary-modal h2{color:gold;text-align:center;font-size:1.8rem;margin-bottom:20px;text-shadow:2px 2px 4px rgba(0,0,0,.5)}.bestiary-modal .close-btn{position:absolute;top:12px;right:12px;background:#8b0000;color:#fff;border:none;border-radius:50%;width:32px;height:32px;cursor:pointer;font-weight:700;font-size:1rem;transition:background .2s ease}.bestiary-modal .close-btn:hover{background:#a00000}.bestiary-content{display:flex;flex-direction:column;gap:24px}.bestiary-section h3{font-size:1.2rem;margin-bottom:12px;padding-bottom:8px;border-bottom:2px solid}.bestiary-section h3.evil-header{color:#f44;border-color:#f44}.bestiary-section h3.good-header{color:#48f;border-color:#48f}.bestiary-entry{display:flex;gap:16px;padding:12px;border-radius:8px;margin-bottom:12px;transition:transform .2s ease}.bestiary-entry:hover{transform:translate(4px)}.bestiary-entry.evil{background:#ff444426;border-left:4px solid #ff4444}.bestiary-entry.good{background:#4488ff26;border-left:4px solid #4488ff}.bestiary-entry.barbarian{border-left-color:#a04000;animation:bestiary-shake .3s infinite}@keyframes bestiary-shake{0%,to{transform:translate(0)}25%{transform:translate(2px)}75%{transform:translate(-2px)}}.bestiary-img{width:48px;height:48px;object-fit:contain;filter:drop-shadow(2px 2px 4px rgba(0,0,0,.5))}.bestiary-info{flex:1}.bestiary-info h4{color:gold;margin-bottom:6px;font-size:1.1rem}.bestiary-stats{display:flex;flex-wrap:wrap;gap:12px;margin-bottom:8px;font-size:.85rem}.bestiary-stats span{background:#ffffff1a;padding:2px 8px;border-radius:4px;color:#aaa}.bestiary-desc{color:#888;font-size:.85rem;font-style:italic;margin:0}@media(max-width:900px){.game-content{flex-direction:column;align-items:center}.sidebar{width:100%;max-width:400px;flex-direction:row;flex-wrap:wrap}.sidebar>div{flex:1;min-width:180px}}*{box-sizing:border-box;margin:0;padding:0}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif;background:linear-gradient(135deg,#1a1a2e,#16213e);min-height:100vh;color:#e5e5e5}#root{min-height:100vh;display:flex;justify-content:center;align-items:flex-start;padding:20px}
