Aryanshh commited on
Commit
241a322
·
1 Parent(s): 802c5f2

docs: Add Mission Briefing Guide to HUD

Browse files
Files changed (2) hide show
  1. dashboard/index.html +26 -0
  2. dashboard/style.css +32 -0
dashboard/index.html CHANGED
@@ -119,6 +119,32 @@
119
  </div>
120
  </div>
121
  </section>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
122
  </main>
123
 
124
  <footer>
 
119
  </div>
120
  </div>
121
  </section>
122
+
123
+ <section class="guide-section">
124
+ <div class="card full-width mission-card">
125
+ <h3>📁 Mission Briefing (Operator's Manual)</h3>
126
+ <div class="guide-content">
127
+ <div class="guide-grid">
128
+ <div class="guide-item">
129
+ <h4>🎯 Objective</h4>
130
+ <p>Fulfill "EcoPhone" and "GreenTab" orders by managing a global supply chain. You must keep <strong>Carbon Footprint</strong> below the quota while maximizing <strong>Capital Balance</strong>.</p>
131
+ </div>
132
+ <div class="guide-item">
133
+ <h4>🚢 Logistics Trade-offs</h4>
134
+ <ul class="guide-list">
135
+ <li><strong>SEA:</strong> Cheapest ($50), cleanest (0.5kg CO2), but very slow (10 days).</li>
136
+ <li><strong>RAIL:</strong> Balanced cost ($125), low CO2 (2.5kg), medium speed (5 days).</li>
137
+ <li><strong>AIR:</strong> Expensive ($250), high CO2 (10kg), but ultra-fast (2 days).</li>
138
+ </ul>
139
+ </div>
140
+ <div class="guide-item">
141
+ <h4>☢️ Crisis Handling</h4>
142
+ <p>Clicking <strong>Trigger Suez Jam</strong> simulates a real-world blockade. Sea routes become unavailable for 7 days, forcing you to pivot to expensive Rail/Air routes to meet your deadlines.</p>
143
+ </div>
144
+ </div>
145
+ </div>
146
+ </div>
147
+ </section>
148
  </main>
149
 
150
  <footer>
dashboard/style.css CHANGED
@@ -301,6 +301,38 @@ select {
301
  color: var(--border-tan);
302
  }
303
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
304
  footer {
305
  text-align: center;
306
  margin-top: 4rem;
 
301
  color: var(--border-tan);
302
  }
303
 
304
+ .mission-card {
305
+ background: #F4F7F9;
306
+ border: 1px dashed var(--sage-green);
307
+ }
308
+
309
+ .guide-grid {
310
+ display: grid;
311
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
312
+ gap: 2rem;
313
+ margin-top: 1rem;
314
+ }
315
+
316
+ .guide-item h4 {
317
+ color: var(--primary-green);
318
+ margin-bottom: 0.5rem;
319
+ font-size: 0.9rem;
320
+ text-transform: uppercase;
321
+ }
322
+
323
+ .guide-item p, .guide-item li {
324
+ font-size: 0.85rem;
325
+ color: var(--text-muted);
326
+ }
327
+
328
+ .guide-list {
329
+ padding-left: 1.2rem;
330
+ }
331
+
332
+ .guide-list li {
333
+ margin-bottom: 0.3rem;
334
+ }
335
+
336
  footer {
337
  text-align: center;
338
  margin-top: 4rem;