*,*:before,*:after{box-sizing:border-box;margin:0;padding:0}:root{--bg: #ffffff;--fg: #000000;--muted: #888888;--border: #e0e0e0;--accent: #000000;--green: #00aa44;--red: #cc2222;--hover-bg: #f5f5f5;--disabled: #cccccc;font-family:Courier New,Courier,monospace;font-size:14px;background:var(--bg);color:var(--fg)}body{min-height:100vh}button{font-family:inherit;font-size:inherit;cursor:pointer;border:1px solid var(--border);background:var(--bg);color:var(--fg);padding:4px 10px}button:disabled{color:var(--disabled);cursor:default;border-color:var(--border)}button:not(:disabled):hover{background:var(--hover-bg)}input{font-family:inherit;font-size:inherit;border:1px solid var(--border);padding:6px 10px;outline:none;width:100%}input:focus{border-color:var(--fg)}.register{display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:100vh;gap:16px}.register h1{font-size:2rem;letter-spacing:.2em}.register .subtitle{color:var(--muted)}.register-form{display:flex;flex-direction:column;gap:8px;width:280px}.register-form input{width:100%;box-sizing:border-box}.register-form button{width:100%}.auth-tabs{display:flex;gap:0;width:280px}.auth-tabs button{flex:1;border:1px solid var(--border);background:transparent;color:var(--muted);cursor:pointer;padding:6px 0;font-size:.85rem}.auth-tabs button:first-child{border-right:none}.auth-tabs button.active{background:var(--fg);color:var(--bg)}.auth-warning{color:#c8a800;font-size:.78rem;max-width:280px;text-align:center}.auth-error{color:#c84040;font-size:.78rem;max-width:280px;text-align:center}.auth-hint{color:var(--muted);font-size:.75rem;max-width:280px;text-align:center}.loading{display:flex;align-items:center;justify-content:center;min-height:100vh;color:var(--muted)}.app{display:flex;flex-direction:column;min-height:100vh}.header{display:flex;align-items:center;justify-content:space-between;padding:10px 16px;border-bottom:1px solid var(--border);position:sticky;top:0;z-index:10;background:var(--bg)}.header-left{display:flex;flex-direction:column;gap:2px}.game-title{font-size:1rem;font-weight:700;letter-spacing:.15em}.player-info{font-size:.75rem;color:var(--muted)}.header-right{display:flex;align-items:center;gap:12px}.conn-dot{width:8px;height:8px;border-radius:50%;background:var(--disabled)}.conn-dot.on{background:var(--green)}.conn-dot.off{background:var(--red)}.mcp-dot{width:8px;height:8px;border-radius:50%;background:var(--red);opacity:0;transition:none}.mcp-dot.active{animation:mcp-flash .6s ease-out forwards}@keyframes mcp-flash{0%{opacity:1;transform:scale(2);box-shadow:0 0 6px 2px var(--red)}60%{opacity:1;transform:scale(1.2)}to{opacity:0;transform:scale(1)}}nav{display:flex;gap:4px}nav button{border:none;background:none;padding:4px 8px;color:var(--muted)}nav button.active{color:var(--fg);border-bottom:1px solid var(--fg)}.resource-bar{display:flex;flex-wrap:wrap;gap:0;border-bottom:1px solid var(--border);position:sticky;top:49px;z-index:9;background:var(--bg)}.resource{display:flex;flex-direction:column;padding:10px 16px;border-right:1px solid var(--border);min-width:120px}.resource .label{font-size:.7rem;color:var(--muted);text-transform:uppercase;letter-spacing:.1em}.resource .value{font-size:1.2rem;font-weight:700}.resource .rate{font-size:.75rem;color:var(--muted)}.resource .rate.negative{color:var(--red)}.prestige-hint{display:flex;align-items:center;padding:10px 16px;color:var(--green);font-size:.75rem;animation:pulse 2s infinite}@keyframes pulse{0%,to{opacity:1}50%{opacity:.5}}.game-layout{display:flex;flex:1;gap:0;flex-wrap:wrap}.left-col{width:320px;min-width:320px;border-right:1px solid var(--border);display:flex;flex-direction:column;gap:0}.right-col{flex:1;overflow-y:auto}.mobile-col-tabs{display:none}@media (max-width: 640px){.mobile-col-tabs{display:flex;width:100%;border-bottom:1px solid var(--border)}.mobile-col-tabs button{flex:1;border:none;border-right:1px solid var(--border);padding:8px 0;color:var(--muted);background:transparent}.mobile-col-tabs button:last-child{border-right:none}.mobile-col-tabs button.active{color:var(--fg);border-bottom:2px solid var(--fg)}.game-layout{flex-direction:column}.left-col{width:100%;min-width:0;border-right:none}.right-col{width:100%}.game-layout[data-col=producers] .left-col,.game-layout[data-col=actions] .right-col{display:none}.app{overflow-x:clip;width:100%}.header{padding:8px 10px}.header-left{gap:1px}.game-title{font-size:.9rem}.player-info{font-size:.68rem}nav{gap:0}nav button{padding:4px 5px;font-size:.8rem}.resource-bar{flex-wrap:nowrap;top:45px}.resource{flex:1;min-width:0;padding:8px 6px;overflow:hidden}.resource .value{font-size:1rem}.resource .label{letter-spacing:0;font-size:.62rem}.resource .rate{font-size:.68rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}}.click-area{display:flex;flex-direction:column;align-items:center;padding:24px 16px;border-bottom:1px solid var(--border);position:relative;gap:12px}.click-btn{width:120px;height:120px;border-radius:50%;border:2px solid var(--fg);display:flex;flex-direction:column;align-items:center;justify-content:center;font-size:.9rem;letter-spacing:.1em;transition:transform .1s;-webkit-user-select:none;user-select:none}.click-btn:active{transform:scale(.95)}.click-btn:hover{background:var(--hover-bg)}.click-label{font-weight:700}.click-sub{font-size:.7rem;color:var(--muted)}.click-pop{position:absolute;top:12px;right:24px;font-size:.9rem;color:var(--green);animation:float-up .6s ease-out forwards;pointer-events:none}@keyframes float-up{0%{opacity:1;transform:translateY(0)}to{opacity:0;transform:translateY(-24px)}}.click-stats{display:flex;flex-direction:column;align-items:center;gap:2px;font-size:.75rem;color:var(--muted)}.upgrade-panel{padding:16px;border-bottom:1px solid var(--border)}.upgrade-panel h3,.producer-panel h3,.milestone-log h3,.leaderboard h3{font-size:.7rem;text-transform:uppercase;letter-spacing:.12em;color:var(--muted);margin-bottom:10px}.upgrade-grid{display:flex;flex-direction:column;gap:4px}.upgrade-btn{display:grid;grid-template-columns:1fr auto;grid-template-rows:auto auto;text-align:left;padding:8px;gap:2px 8px;border:1px solid var(--border)}.upgrade-btn .upgrade-name{font-weight:700;font-size:.85rem}.upgrade-btn .upgrade-cost{font-size:.8rem;text-align:right;grid-row:1}.upgrade-btn .upgrade-desc{font-size:.75rem;color:var(--muted);grid-column:1 / -1}.upgrade-btn.expensive{opacity:.5}.milestone-log{padding:16px;border-bottom:1px solid var(--border)}.milestone-log ul{list-style:none;display:flex;flex-direction:column;gap:4px}.milestone-log li{display:flex;justify-content:space-between;font-size:.8rem;gap:8px}.milestone-msg{color:var(--fg)}.milestone-hype{color:var(--green);white-space:nowrap}.prestige-btn{margin:16px;padding:10px;border:1px solid var(--fg);font-weight:700;letter-spacing:.08em;color:var(--green);border-color:var(--green)}.prestige-btn:hover{background:#f0fff4}.producer-panel{padding:16px}.producer-panel section{margin-bottom:20px}.producer-row{display:flex;align-items:center;justify-content:space-between;padding:8px 0;border-bottom:1px solid var(--border);gap:8px}.producer-row:last-child{border-bottom:none}.producer-info{display:flex;flex-direction:column;gap:2px}.producer-name{font-size:.9rem}.producer-detail{font-size:.75rem;color:var(--muted)}.producer-right{display:flex;align-items:center;gap:8px}.producer-owned{font-size:.75rem;color:var(--muted);min-width:28px;text-align:right}.buy-btn{white-space:nowrap;font-size:.8rem;padding:4px 8px}.producer-row.expensive .producer-name{color:var(--muted)}.board-layout{padding:24px}.leaderboard table{width:100%;border-collapse:collapse}.leaderboard th,.leaderboard td{text-align:left;padding:8px 12px;border-bottom:1px solid var(--border);font-size:.85rem}.leaderboard th{font-size:.7rem;text-transform:uppercase;letter-spacing:.1em;color:var(--muted)}.leaderboard tr.me td{font-weight:700}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;background:#ffffffd9;display:flex;align-items:center;justify-content:center;z-index:100}.modal{border:1px solid var(--fg);padding:32px;background:var(--bg);max-width:400px;width:90%;display:flex;flex-direction:column;gap:16px}.modal h2{font-size:1.1rem;letter-spacing:.1em}.modal p{color:var(--muted);font-size:.85rem}.prestige-gains{display:flex;flex-direction:column;gap:8px;border:1px solid var(--border);padding:12px}.gain-row{display:flex;justify-content:space-between;font-size:.85rem}.gain-row.warning{color:var(--red)}.modal-actions{display:flex;gap:8px}.btn-confirm{flex:1;padding:10px;font-weight:700;border-color:var(--green);color:var(--green)}.btn-cancel{flex:1;padding:10px}.resource-warn{font-size:.7rem;color:var(--red)}.first-hint{display:flex;align-items:center;justify-content:space-between;padding:8px 16px;background:#fffbe6;border-bottom:1px solid #f0e080;font-size:.8rem;gap:12px}.first-hint button{border:none;background:none;font-size:1rem;padding:0 4px;color:var(--muted);flex-shrink:0}.producer-row.locked{opacity:.5;pointer-events:none}.unlock-hint{font-size:.7rem;color:var(--muted);font-style:italic}.how-to-play{max-width:560px;max-height:80vh;overflow-y:auto;display:flex;flex-direction:column;gap:0;padding:0}.modal-header{display:flex;justify-content:space-between;align-items:center;padding:16px 20px;border-bottom:1px solid var(--border);font-weight:700;font-size:.85rem;letter-spacing:.08em;position:sticky;top:0;background:var(--bg)}.modal-header button{border:none;background:none;font-family:inherit}.htp-body{padding:20px;display:flex;flex-direction:column;gap:20px}.htp-body section{display:flex;flex-direction:column;gap:8px}.htp-body h4{font-size:.7rem;text-transform:uppercase;letter-spacing:.12em;color:var(--muted)}.htp-body p,.htp-body li{font-size:.85rem;line-height:1.6}.htp-body ol,.htp-body ul{padding-left:20px;display:flex;flex-direction:column;gap:4px}.htp-body dl{display:grid;grid-template-columns:100px 1fr;gap:4px 12px}.htp-body dt{font-weight:700;font-size:.85rem}.htp-body dd{font-size:.85rem;color:var(--muted)}.mcp-tab{display:flex;flex-direction:column;gap:16px;max-width:640px}.mcp-tab h3{font-size:.7rem;text-transform:uppercase;letter-spacing:.12em;color:var(--muted)}.mcp-tab h4{font-size:.75rem;text-transform:uppercase;letter-spacing:.1em;color:var(--muted);margin-top:4px}.mcp-tab p,.mcp-tab li{font-size:.85rem;line-height:1.6}.mcp-tab ul,.mcp-tab ol{padding-left:20px;display:flex;flex-direction:column;gap:4px}.mcp-tab code{background:#f5f5f5;padding:1px 4px;font-family:inherit;font-size:.8rem}.mcp-snippet-wrap{position:relative}.mcp-snippet{background:#f5f5f5;border:1px solid var(--border);padding:12px;font-family:inherit;font-size:.78rem;line-height:1.5;overflow-x:auto;white-space:pre}.mcp-copy{position:absolute;top:8px;right:8px;font-size:.75rem;padding:2px 8px;border:1px solid var(--border)}
