:root { --bg: #0f172a; --card: #1e293b; --green: #22c55e; }
body { font-family: 'Courier New', Courier, monospace; background: var(--bg); color: white; display: flex; justify-content: center; padding: 20px; }
.container { background: var(--card); padding: 20px; border-radius: 16px; width: 100%; max-width: 480px; box-shadow: 0 10px 25px rgba(0,0,0,0.5); }
.row { display: flex; gap: 10px; margin-bottom: 15px; }
.input-group { flex: 1; }
label { font-size: 10px; color: #94a3b8; display: block; margin-bottom: 4px; }
input, select, .btn { padding: 12px; border-radius: 8px; border: none; width: 100%; background: #020617; color: white; }
.btn { background: var(--green); cursor: pointer; font-weight: bold; margin-bottom: 15px; }
.ticker-box { background: #000; padding: 15px; border-radius: 8px; margin-bottom: 15px; text-align: center; }
.money-display { font-size: 32px; color: var(--green); font-weight: bold; margin-bottom: 10px; }

/* 進度條樣式 */
.progress-bar-container { background: #334155; height: 10px; border-radius: 5px; overflow: hidden; margin-bottom: 5px; }
.progress-bar { background: var(--green); height: 100%; width: 0%; transition: width 0.3s; }
.goal-text { font-size: 11px; color: #94a3b8; }

.game-stage { background: #0f172a; border: 2px solid #334155; border-radius: 8px; overflow: hidden; }
.mode-select { margin-bottom: 15px; }