| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>IRON ADVANCE - Game Concept Document</title> |
| <link rel="preconnect" href="https://fonts.googleapis.com"> |
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> |
| <link href="https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Share+Tech+Mono&family=Orbitron:wght@400;500;600;700&display=swap" rel="stylesheet"> |
| <style> |
| :root { |
| --primary: #c9a227; |
| --primary-dim: #8a7119; |
| --secondary: #1a1a1a; |
| --tertiary: #0d0d0d; |
| --accent: #e74c3c; |
| --accent-dim: #a93424; |
| --text: #e8e8e8; |
| --text-dim: #888; |
| --border: #333; |
| --panel-bg: rgba(20, 20, 20, 0.95); |
| --success: #27ae60; |
| --warning: #f39c12; |
| --info: #3498db; |
| } |
| |
| * { |
| margin: 0; |
| padding: 0; |
| box-sizing: border-box; |
| } |
| |
| body { |
| font-family: 'Rajdhani', sans-serif; |
| background: var(--tertiary); |
| color: var(--text); |
| min-height: 100vh; |
| overflow-x: hidden; |
| } |
| |
| |
| .bg-grid { |
| position: fixed; |
| top: 0; |
| left: 0; |
| width: 100%; |
| height: 100%; |
| background-image: |
| linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px), |
| linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px); |
| background-size: 50px 50px; |
| pointer-events: none; |
| z-index: 0; |
| } |
| |
| .bg-overlay { |
| position: fixed; |
| top: 0; |
| left: 0; |
| width: 100%; |
| height: 100%; |
| background: radial-gradient(ellipse at 30% 20%, rgba(201, 162, 39, 0.08) 0%, transparent 50%), |
| radial-gradient(ellipse at 70% 80%, rgba(231, 76, 60, 0.05) 0%, transparent 40%); |
| pointer-events: none; |
| z-index: 0; |
| } |
| |
| |
| .app-container { |
| display: flex; |
| min-height: 100vh; |
| position: relative; |
| z-index: 1; |
| } |
| |
| |
| .sidebar { |
| width: 280px; |
| background: var(--panel-bg); |
| border-right: 1px solid var(--border); |
| display: flex; |
| flex-direction: column; |
| position: fixed; |
| height: 100vh; |
| overflow-y: auto; |
| z-index: 100; |
| } |
| |
| .logo-section { |
| padding: 24px; |
| border-bottom: 1px solid var(--border); |
| text-align: center; |
| } |
| |
| .logo { |
| font-family: 'Orbitron', sans-serif; |
| font-size: 1.8rem; |
| font-weight: 700; |
| color: var(--primary); |
| text-transform: uppercase; |
| letter-spacing: 3px; |
| text-shadow: 0 0 20px rgba(201, 162, 39, 0.3); |
| } |
| |
| .logo-sub { |
| font-size: 0.7rem; |
| color: var(--text-dim); |
| letter-spacing: 4px; |
| margin-top: 4px; |
| } |
| |
| .nav-section { |
| padding: 16px 0; |
| } |
| |
| .nav-title { |
| font-size: 0.7rem; |
| color: var(--primary); |
| text-transform: uppercase; |
| letter-spacing: 2px; |
| padding: 8px 24px; |
| font-weight: 600; |
| } |
| |
| .nav-item { |
| display: flex; |
| align-items: center; |
| padding: 10px 24px; |
| color: var(--text-dim); |
| cursor: pointer; |
| transition: all 0.2s ease; |
| font-size: 0.9rem; |
| border-left: 3px solid transparent; |
| } |
| |
| .nav-item:hover { |
| background: rgba(201, 162, 39, 0.1); |
| color: var(--text); |
| } |
| |
| .nav-item.active { |
| background: rgba(201, 162, 39, 0.15); |
| color: var(--primary); |
| border-left-color: var(--primary); |
| } |
| |
| .nav-item .num { |
| font-family: 'Share Tech Mono', monospace; |
| font-size: 0.75rem; |
| color: var(--primary-dim); |
| margin-right: 12px; |
| width: 20px; |
| } |
| |
| .footer-brand { |
| margin-top: auto; |
| padding: 20px; |
| border-top: 1px solid var(--border); |
| text-align: center; |
| } |
| |
| .footer-brand a { |
| color: var(--primary); |
| text-decoration: none; |
| font-size: 0.8rem; |
| transition: color 0.2s; |
| } |
| |
| .footer-brand a:hover { |
| color: var(--text); |
| } |
| |
| |
| .main-content { |
| flex: 1; |
| margin-left: 280px; |
| padding: 40px; |
| max-width: 1200px; |
| } |
| |
| .section { |
| display: none; |
| animation: fadeIn 0.4s ease; |
| } |
| |
| .section.active { |
| display: block; |
| } |
| |
| @keyframes fadeIn { |
| from { opacity: 0; transform: translateY(10px); } |
| to { opacity: 1; transform: translateY(0); } |
| } |
| |
| |
| .section-header { |
| margin-bottom: 32px; |
| padding-bottom: 16px; |
| border-bottom: 2px solid var(--primary); |
| } |
| |
| .section-num { |
| font-family: 'Share Tech Mono', monospace; |
| font-size: 0.8rem; |
| color: var(--primary); |
| letter-spacing: 2px; |
| } |
| |
| .section-title { |
| font-family: 'Orbitron', sans-serif; |
| font-size: 2rem; |
| font-weight: 600; |
| color: var(--text); |
| margin-top: 8px; |
| text-transform: uppercase; |
| letter-spacing: 2px; |
| } |
| |
| |
| .content-block { |
| margin-bottom: 28px; |
| } |
| |
| .content-block h3 { |
| font-size: 1.1rem; |
| color: var(--primary); |
| margin-bottom: 12px; |
| font-weight: 600; |
| text-transform: uppercase; |
| letter-spacing: 1px; |
| } |
| |
| .content-block p { |
| line-height: 1.7; |
| color: var(--text-dim); |
| font-size: 1rem; |
| } |
| |
| .content-block ul { |
| list-style: none; |
| margin-top: 12px; |
| } |
| |
| .content-block li { |
| position: relative; |
| padding-left: 20px; |
| margin-bottom: 8px; |
| line-height: 1.6; |
| color: var(--text-dim); |
| } |
| |
| .content-block li::before { |
| content: '▸'; |
| position: absolute; |
| left: 0; |
| color: var(--primary); |
| } |
| |
| |
| .cards-grid { |
| display: grid; |
| grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); |
| gap: 20px; |
| margin-top: 20px; |
| } |
| |
| .card { |
| background: rgba(30, 30, 30, 0.6); |
| border: 1px solid var(--border); |
| padding: 20px; |
| transition: all 0.3s ease; |
| } |
| |
| .card:hover { |
| border-color: var(--primary-dim); |
| transform: translateY(-2px); |
| } |
| |
| .card h4 { |
| color: var(--primary); |
| font-size: 1rem; |
| margin-bottom: 10px; |
| text-transform: uppercase; |
| letter-spacing: 1px; |
| } |
| |
| .card p { |
| font-size: 0.9rem; |
| color: var(--text-dim); |
| line-height: 1.6; |
| } |
| |
| |
| .stats-grid { |
| display: grid; |
| grid-template-columns: repeat(4, 1fr); |
| gap: 12px; |
| margin-top: 16px; |
| } |
| |
| .stat-bar { |
| text-align: center; |
| } |
| |
| .stat-label { |
| font-size: 0.7rem; |
| color: var(--text-dim); |
| text-transform: uppercase; |
| letter-spacing: 1px; |
| margin-bottom: 6px; |
| } |
| |
| .stat-value { |
| height: 8px; |
| background: var(--border); |
| border-radius: 4px; |
| overflow: hidden; |
| } |
| |
| .stat-fill { |
| height: 100%; |
| background: var(--primary); |
| border-radius: 4px; |
| transition: width 0.3s ease; |
| } |
| |
| .stat-fill.high { background: var(--success); } |
| .stat-fill.medium { background: var(--warning); } |
| .stat-fill.low { background: var(--accent); } |
| |
| |
| .highlight-box { |
| background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(201, 162, 39, 0.05)); |
| border: 1px solid var(--primary-dim); |
| padding: 20px; |
| margin: 20px 0; |
| border-left: 4px solid var(--primary); |
| } |
| |
| .highlight-box h4 { |
| color: var(--primary); |
| margin-bottom: 10px; |
| font-size: 1rem; |
| text-transform: uppercase; |
| } |
| |
| |
| .two-col { |
| display: grid; |
| grid-template-columns: 1fr 1fr; |
| gap: 30px; |
| } |
| |
| |
| .faction-card { |
| background: rgba(25, 25, 25, 0.8); |
| border: 1px solid var(--border); |
| padding: 24px; |
| position: relative; |
| overflow: hidden; |
| } |
| |
| .faction-card::before { |
| content: ''; |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 4px; |
| height: 100%; |
| } |
| |
| .faction-card.faction-1::before { background: #5d6d7e; } |
| .faction-card.faction-2::before { background: #27ae60; } |
| .faction-card.faction-3::before { background: #e74c3c; } |
| |
| .faction-name { |
| font-family: 'Orbitron', sans-serif; |
| font-size: 1.3rem; |
| margin-bottom: 8px; |
| text-transform: uppercase; |
| letter-spacing: 2px; |
| } |
| |
| .faction-card.faction-1 .faction-name { color: #5d6d7e; } |
| .faction-card.faction-2 .faction-name { color: #27ae60; } |
| .faction-card.faction-3 .faction-name { color: #e74c3c; } |
| |
| .faction-tagline { |
| font-size: 0.85rem; |
| color: var(--text-dim); |
| font-style: italic; |
| margin-bottom: 16px; |
| } |
| |
| .faction-section { |
| margin-bottom: 14px; |
| } |
| |
| .faction-section-title { |
| font-size: 0.75rem; |
| color: var(--primary); |
| text-transform: uppercase; |
| letter-spacing: 1px; |
| margin-bottom: 6px; |
| font-weight: 600; |
| } |
| |
| .faction-section p { |
| font-size: 0.9rem; |
| color: var(--text-dim); |
| line-height: 1.5; |
| } |
| |
| |
| .tank-table { |
| width: 100%; |
| border-collapse: collapse; |
| margin-top: 16px; |
| } |
| |
| .tank-table th { |
| background: rgba(201, 162, 39, 0.1); |
| color: var(--primary); |
| padding: 12px; |
| text-align: left; |
| font-size: 0.8rem; |
| text-transform: uppercase; |
| letter-spacing: 1px; |
| border-bottom: 1px solid var(--border); |
| } |
| |
| .tank-table td { |
| padding: 12px; |
| border-bottom: 1px solid var(--border); |
| font-size: 0.9rem; |
| color: var(--text-dim); |
| } |
| |
| .tank-table tr:hover td { |
| background: rgba(201, 162, 39, 0.05); |
| } |
| |
| |
| .pitch-box { |
| background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(231, 76, 60, 0.1)); |
| border: 2px solid var(--primary); |
| padding: 32px; |
| text-align: center; |
| margin-bottom: 30px; |
| } |
| |
| .pitch-title { |
| font-family: 'Orbitron', sans-serif; |
| font-size: 2.5rem; |
| color: var(--primary); |
| margin-bottom: 16px; |
| text-transform: uppercase; |
| letter-spacing: 4px; |
| } |
| |
| .pitch-text { |
| font-size: 1.2rem; |
| color: var(--text); |
| line-height: 1.8; |
| max-width: 800px; |
| margin: 0 auto; |
| } |
| |
| |
| .selling-points { |
| display: flex; |
| flex-wrap: wrap; |
| gap: 16px; |
| margin-top: 20px; |
| } |
| |
| .selling-point { |
| background: rgba(39, 174, 96, 0.1); |
| border: 1px solid var(--success); |
| padding: 16px 24px; |
| flex: 1; |
| min-width: 200px; |
| } |
| |
| .selling-point-icon { |
| font-size: 1.5rem; |
| margin-bottom: 8px; |
| } |
| |
| .selling-point h4 { |
| color: var(--success); |
| font-size: 0.9rem; |
| text-transform: uppercase; |
| letter-spacing: 1px; |
| margin-bottom: 4px; |
| } |
| |
| .selling-point p { |
| font-size: 0.85rem; |
| color: var(--text-dim); |
| } |
| |
| |
| .timeline { |
| position: relative; |
| padding-left: 30px; |
| border-left: 2px solid var(--border); |
| margin: 20px 0; |
| } |
| |
| .timeline-item { |
| position: relative; |
| margin-bottom: 24px; |
| padding-left: 20px; |
| } |
| |
| .timeline-item::before { |
| content: ''; |
| position: absolute; |
| left: -36px; |
| top: 4px; |
| width: 10px; |
| height: 10px; |
| background: var(--primary); |
| border-radius: 50%; |
| } |
| |
| .timeline-time { |
| font-family: 'Share Tech Mono', monospace; |
| font-size: 0.8rem; |
| color: var(--primary); |
| margin-bottom: 4px; |
| } |
| |
| .timeline-title { |
| font-size: 1rem; |
| color: var(--text); |
| margin-bottom: 6px; |
| font-weight: 600; |
| } |
| |
| .timeline-desc { |
| font-size: 0.9rem; |
| color: var(--text-dim); |
| line-height: 1.5; |
| } |
| |
| |
| ::-webkit-scrollbar { |
| width: 8px; |
| } |
| |
| ::-webkit-scrollbar-track { |
| background: var(--tertiary); |
| } |
| |
| ::-webkit-scrollbar-thumb { |
| background: var(--border); |
| border-radius: 4px; |
| } |
| |
| ::-webkit-scrollbar-thumb:hover { |
| background: var(--primary-dim); |
| } |
| |
| |
| @media (max-width: 900px) { |
| .sidebar { |
| width: 220px; |
| } |
| .main-content { |
| margin-left: 220px; |
| padding: 24px; |
| } |
| .two-col { |
| grid-template-columns: 1fr; |
| } |
| .stats-grid { |
| grid-template-columns: repeat(2, 1fr); |
| } |
| } |
| |
| @media (max-width: 600px) { |
| .sidebar { |
| position: relative; |
| width: 100%; |
| height: auto; |
| } |
| .main-content { |
| margin-left: 0; |
| } |
| .cards-grid { |
| grid-template-columns: 1fr; |
| } |
| } |
| </style> |
| </head> |
| <body> |
| <div class="bg-grid"></div> |
| <div class="bg-overlay"></div> |
| |
| <div class="app-container"> |
| |
| <nav class="sidebar"> |
| <div class="logo-section"> |
| <div class="logo">IRON ADVANCE</div> |
| <div class="logo-sub">Game Design Document</div> |
| </div> |
| |
| <div class="nav-section"> |
| <div class="nav-title">Document Sections</div> |
| <div class="nav-item active" data-section="1"> |
| <span class="num">01</span>Core Concept |
| </div> |
| <div class="nav-item" data-section="2"> |
| <span class="num">02</span>Setting |
| </div> |
| <div class="nav-item" data-section="3"> |
| <span class="num">03</span>Genre & Perspective |
| </div> |
| <div class="nav-item" data-section="4"> |
| <span class="num">04</span>Gameplay Loop |
| </div> |
| <div class="nav-item" data-section="5"> |
| <span class="num">05</span>Tank Classes |
| </div> |
| <div class="nav-item" data-section="6"> |
| <span class="num">06</span>Strategic Systems |
| </div> |
| <div class="nav-item" data-section="7"> |
| <span class="num">07</span>Maps & Environments |
| </div> |
| <div class="nav-item" data-section="8"> |
| <span class="num">08</span>Game Modes |
| </div> |
| <div class="nav-item" data-section="9"> |
| <span class="num">09</span>Progression |
| </div> |
| <div class="nav-item" data-section="10"> |
| <span class="num">10</span>Factions |
| </div> |
| <div class="nav-item" data-section="11"> |
| <span class="num">11</span>AI Design |
| </div> |
| <div class="nav-item" data-section="12"> |
| <span class="num">12</span>Realism vs Fun |
| </div> |
| <div class="nav-item" data-section="13"> |
| <span class="num">13</span>User Interface |
| </div> |
| <div class="nav-item" data-section="14"> |
| <span class="num">14</span>Audio & Atmosphere |
| </div> |
| <div class="nav-item" data-section="15"> |
| <span class="num">15</span>Monetization |
| </div> |
| <div class="nav-item" data-section="16"> |
| <span class="num">16</span>Innovation |
| </div> |
| <div class="nav-item" data-section="17"> |
| <span class="num">17</span>Final Deliverable |
| </div> |
| </div> |
| |
| <div class="footer-brand"> |
| <a href="https://huggingface.co/spaces/akhaliq/anycoder" target="_blank">Built with anycoder</a> |
| </div> |
| </nav> |
|
|
| |
| <main class="main-content"> |
| |
| <section class="section active" id="section-1"> |
| <div class="section-header"> |
| <div class="section-num">01</div> |
| <h1 class="section-title">Core Concept</h1> |
| </div> |
| |
| <div class="content-block"> |
| <h3>Game Vision</h3> |
| <p><strong>IRON ADVANCE</strong> is a tactical armored warfare game that places players in the role of a battalion commander during the late Cold War era (1978-1985). The game emphasizes strategic decision-making, combined arms coordination, and battlefield positioning over twitch-based combat. Players manage tank platoons, coordinate with infantry and air support, and make high-stakes decisions about resource allocation, positioning, and engagement.</p> |
| </div> |
|
|
| <div class="highlight-box"> |
| <h4>Design Philosophy</h4> |
| <p>The player is a <strong>commander</strong>, not a driver. Every interaction should feel like a tactical decision—where to position, when to fire, how to maneuver. The game rewards thinking over reflexes.</p> |
| </div> |
|
|
| <div class="content-block"> |
| <h3>Why This Works</h3> |
| <p>The tank strategy genre has room for a game that bridges the gap between arcade simplicity (World of Tanks) and simulation complexity (Steel Division). <strong>IRON ADVANCE</strong> targets players who want strategic depth without the learning curve of hardcore wargames.</p> |
| </div> |
|
|
| <div class="cards-grid"> |
| <div class="card"> |
| <h4>Single-Player Focus</h4> |
| <p>Primary focus on campaign and skirmish modes with optional PvP. This allows for narrative-driven progression, curated challenge, and AI behavior that feels intelligent without cheating.</p> |
| </div> |
| <div class="card"> |
| <h4>Strategic Depth</h4> |
| <p>Multiple systems (morale, fuel, ammo, terrain, weather) create emergent tactical situations. No two battles feel the same.</p> |
| </div> |
| <div class="card"> |
| <h4>Accessible Yet Deep</h4> |
| <p>Intuitive controls with advanced systems beneath. New players can issue basic move/fire commands while veterans exploit hull-down positions, flanking, and combined arms.</p> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="section" id="section-2"> |
| <div class="section-header"> |
| <div class="section-num">02</div> |
| <h1 class="section-title">Setting</h1> |
| </div> |
| |
| <div class="content-block"> |
| <h3>Era: Late Cold War (1978-1985)</h3> |
| <p>The game is set in an alternate-history Cold War that turned hot along the Fulda Gap—the traditional Soviet invasion route through West Germany. This setting provides the perfect balance of historical grounding and creative freedom.</p> |
| </div> |
|
|
| <div class="two-col"> |
| <div class="content-block"> |
| <h3>Why Late Cold War?</h3> |
| <ul> |
| <li><strong>Technological diversity:</strong> Mix of older NATO tanks (M60, Leopard 1) and newer systems (M1 Abrams, Leopard 2) vs Soviet T-62, T-72, and early T-80</li> |
| <li><strong>No clear winner:</strong> Technological parity creates interesting tactical balance</li> |
| <li><strong>Relevant vehicles:</strong> Iconic tanks that players recognize</li> |
| <li><strong>Political tension:</strong> High stakes without the moral complexity of WWII</li> |
| </ul> |
| </div> |
| <div class="content-block"> |
| <h3>Setting Influence</h3> |
| <ul> |
| <li><strong>Maps:</strong> West German countryside, Fulda valley, Rhine crossings, Hessian forests</li> |
| <li><strong>Weather:</strong> Spring/Autumn conditions with fog, rain, and occasional snow</li> |
| <li><strong>Factions:</strong> NATO vs Warsaw Pact (Soviet-led)</li> |
| <li><strong>Tone:</strong> Tense, realistic, industrial aesthetic</li> |
| </ul> |
| </div> |
| </div> |
|
|
| <div class="highlight-box"> |
| <h4>Alternate History Hook</h4> |
| <p>A Soviet amphibious assault on the North Sea coast forces NATO to defend multiple fronts simultaneously. Players fight as part of the U.S. 11th Armored Cavalry Regiment holding the line against overwhelming Soviet armored divisions.</p> |
| </div> |
| </section> |
|
|
| |
| <section class="section" id="section-3"> |
| <div class="section-header"> |
| <div class="section-num">03</div> |
| <h1 class="section-title">Genre & Perspective</h1> |
| </div> |
| |
| <div class="content-block"> |
| <h3>Genre: Real-Time Tactics (RTT) with Strategic Layer</h3> |
| <p><strong>IRON ADVANCE</strong> combines the immediate tactical decisions of RTT games with a strategic campaign layer. Combat plays out in real-time with pause functionality, while the campaign involves resource management, territory control, and long-term progression.</p> |
| </div> |
|
|
| <div class="cards-grid"> |
| <div class="card"> |
| <h4>Real-Time Combat</h4> |
| <p>Battles play out in real-time at 2x/4x speed options. Players issue movement, targeting, and special commands to their units. Pause anytime to issue complex orders.</p> |
| </div> |
| <div class="card"> |
| <h4>Tactical Pause</h4> |
| <p>Full pause functionality allows for deliberate planning. Issue multi-unit orders, set waypoints, and coordinate attacks before unpausing.</p> |
| </div> |
| <div class="card"> |
| <h4>Strategic Campaign</h4> |
| <p>Between battles, manage your battalion's resources, equipment, and personnel. Choose which units to deploy, where to reinforce, and which objectives to prioritize.</p> |
| </div> |
| </div> |
|
|
| <div class="content-block"> |
| <h3>Camera: Isometric Tactical View</h3> |
| <p>The game uses a <strong>top-down isometric perspective</strong> at approximately 45 degrees, providing:</p> |
| <ul> |
| <li><strong>Clear battlefield overview:</strong> See unit positions, terrain, and enemy locations</li> |
| <li><strong>Strategic feel:</strong> Commands feel like military operations, not action games</li> |
| <li><strong>Depth perception:</strong> Isometric view helps with positioning and flanking</li> |
| <li><strong>Zoom controls:</strong> Zoom from strategic overview (see entire map) to tactical close-up (individual tank detail)</li> |
| </ul> |
| </div> |
|
|
| <div class="highlight-box"> |
| <h4>Justification</h4> |
| <p>Top-down RTT has proven successful (Company of Heroes, Wargame series). It provides the strategic overview needed for commander-style gameplay while maintaining tactical engagement. Third-person views would shift focus to individual vehicle mastery rather than command.</p> |
| </div> |
| </section> |
|
|
| |
| <section class="section" id="section-4"> |
| <div class="section-header"> |
| <div class="section-num">04</div> |
| <h1 class="section-title">Core Gameplay Loop</h1> |
| </div> |
| |
| <div class="content-block"> |
| <h3>The Full Player Journey</h3> |
| <p>Each match follows a structured flow from preparation to post-battle consequences:</p> |
| </div> |
|
|
| <div class="timeline"> |
| <div class="timeline-item"> |
| <div class="timeline-time">PHASE 1: PRE-BATTLE PREPARATION</div> |
| <div class="timeline-title">Intelligence Briefing</div> |
| <div class="timeline-desc">Player views the mission objectives, enemy composition, and map. Receives recon photos showing terrain and potential enemy positions. Must decide which units to bring within a points budget.</div> |
| </div> |
| <div class="timeline-item"> |
| <div class="timeline-time">PHASE 2: UNIT SELECTION & LOADOUT</div> |
| <div class="timeline-title">Force Composition</div> |
| <div class="timeline-desc">Choose tanks, infantry, and support vehicles. Configure ammunition types (APFSDS, HE, smoke), add reactive armor packages, select crew specializations. Balance cost vs. capability.</div> |
| </div> |
| <div class="timeline-item"> |
| <div class="timeline-time">PHASE 3: MAP ANALYSIS</div> |
| <div class="timeline-title">Terrain Assessment</div> |
| <div class="timeline-desc">Study the battlefield. Identify hull-down positions, flanking routes, chokepoints, and danger areas. Mark potential engagement zones. Plan initial deployments.</div> |
| </div> |
| <div class="timeline-item"> |
| <div class="timeline-time">PHASE 4: DEPLOYMENT PHASE</div> |
| <div class="timeline-title">Initial Positioning</div> |
| <div class="timeline-desc">Place units in deployment zone. Set initial movement orders and fire zones. Position recon assets to maximize early vision. 2-minute deployment timer.</div> |
| </div> |
| <div class="timeline-item"> |
| <div class="timeline-time">PHASE 5: COMBAT PHASE</div> |
| <div class="timeline-title">Battle Execution</div> |
| <div class="timeline-desc">Real-time combat with pause available. Maneuver tanks, respond to threats, call in artillery or air support. Manage ammunition and fuel. Respond to changing tactical situations.</div> |
| </div> |
| <div class="timeline-item"> |
| <div class="timeline-time">PHASE 6: REINFORCEMENT & REPAIR</div> |
| <div class="timeline-title">Battlefield Recovery</div> |
| <div class="timeline-desc">During battle, call in reinforcements from strategic reserve. Repair damaged vehicles in the field if engineers are present. Crew can attempt field repairs under fire.</div> |
| </div> |
| <div class="timeline-item"> |
| <div class="timeline-time">PHASE 7: POST-BATTLE</div> |
| <div class="timeline-title">After-Action Report</div> |
| <div class="timeline-desc">Detailed results: kills, losses, position changes, crew performance. Earn experience for surviving crews. Collect salvage from destroyed enemies. Face strategic consequences based on outcome.</div> |
| </div> |
| </div> |
|
|
| <div class="highlight-box"> |
| <h4>Campaign Consequences</h4> |
| <p>Lose too many tanks and you won't have enough for the next mission. Perform well and you get priority reinforcements. Strategic choices matter—defending a village might save it for later but cost you precious equipment.</p> |
| </div> |
| </section> |
|
|
| |
| <section class="section" id="section-5"> |
| <div class="section-header"> |
| <div class="section-num">05</div> |
| <h1 class="section-title">Tank Classes & Roles</h1> |
| </div> |
| |
| <div class="content-block"> |
| <h3>Six Distinct Classes</h3> |
| <p>Each class serves a specific tactical purpose. Success requires understanding when to use each type and how they complement each other.</p> |
| </div> |
|
|
| <table class="tank-table"> |
| <thead> |
| <tr> |
| <th>Class</th> |
| <th>Role</th> |
| <th>Key Strength</th> |
| <th>Counter</th> |
| </tr> |
| </thead> |
| <tbody> |
| <tr> |
| <td><strong>Light Tank</strong></td> |
| <td>Recon & Flanking</td> |
| <td>Speed, Vision</td> |
| <td>Heavy armor, Ambushes</td> |
| </tr> |
| <tr> |
| <td><strong>Medium Tank</strong></td> |
| <td>Main Battle Tank</td> |
| <td>Balanced, Versatile</td> |
| <td>Flanking, ATGM</td> |
| </tr> |
| <tr> |
| <td><strong>Heavy Tank</strong></td> |
| <td>Breakthrough & Defense</td> |
| <td>Armor, Firepower</td> |
| <td>Artillery, Fuel dependency</td> |
| </tr> |
| <tr> |
| <td><strong>Tank Destroyer</strong></td> |
| <td>Anti-Armor Sniper</td> |
| <td>Range, Penetration</td> |
| <td>Close engagement, Infantry</td> |
| </tr> |
| <tr> |
| <td><strong>Self-Propelled Artillery</strong></td> |
| <td>Area Denial</td> |
| <td>Range, Area damage</td> |
| <td>Counter-battery, Recon</td> |
| </tr> |
| <tr> |
| <td><strong>Recon Vehicle</strong></td> |
| <td>Intelligence</td> |
| <td>Vision, Detection</td> |
| <td>Direct combat</td> |
| </tr> |
| </tbody> |
| </table> |
|
|
| <div class="two-col" style="margin-top: 24px;"> |
| <div class="content-block"> |
| <h3>Light Tanks (e.g., AMX-10, BMP-1)</h3> |
| <ul> |
| <li><strong>Speed:</strong> High mobility, can outmaneuver heavier tanks</li> |
| <li><strong>Armor:</strong> Vulnerable to most anti-armor weapons</li> |
| <li><strong>Firepower:</strong> Light cannon, limited anti-tank capability</li> |
| <li><strong>Use:</strong> Flanking, recon, pursuing broken enemies</li> |
| <li><strong>Counterplay:</strong> Ambushes, overwatch positions</li> |
| </ul> |
| </div> |
| <div class="content-block"> |
| <h3>Medium Tanks (e.g., M60A3, T-72M)</h3> |
| <ul> |
| <li><strong>Speed:</strong> Moderate, good strategic mobility</li> |
| <li><strong>Armor:</strong> Composite armor, good against older shells</li> |
| <li><strong>Firepower:</strong> 105-120mm guns, reliable APFSDS</li> |
| <li><strong>Use:</strong> Backbone of armored formations</li> |
| <li><strong>Counterplay:</strong> Flanking, modern ATGM, artillery</li> |
| </ul> |
| </div> |
| </div> |
|
|
| <div class="two-col"> |
| <div class="content-block"> |
| <h3>Heavy Tanks (e.g., M1 Abrams, T-80)</h3> |
| <ul> |
| <li><strong>Speed:</strong> Slow, but good acceleration</li> |
| <li><strong>Armor:</strong> Chobham, ERA blocks, very tough frontally</li> |
| <li><strong>Firepower:</strong> 120mm+ guns, excellent rounds</li> |
| <li><strong>Use:</strong> Spearhead attacks, hold critical positions</li> |
| <li><strong>Counterplay:</strong> Fuel starvation, artillery, flanking</li> |
| </ul> |
| </div> |
| <div class="content-block"> |
| <h3>Tank Destroyers (e.g., Jagdpanzer, SU-100)</h3> |
| <ul> |
| <li><strong>Speed:</strong> Variable (wheeled fast, tracked slower)</li> |
| <li><strong>Armor:</strong> Thin, relies on hull-down positioning</li> |
| <li><strong>Firepower:</strong> High-velocity guns, excellent penetration</li> |
| <li><strong>Use:</strong> Ambush defense, anti-armor screens</li> |
| <li><strong>Counterplay:</strong> Close-quarters, infantry, smoke</li> |
| </ul> |
| </div> |
| </div> |
|
|
| <div class="two-col"> |
| <div class="content-block"> |
| <h3>Self-Propelled Artillery (e.g., M109, 2S3)</h3> |
| <ul> |
| <li><strong>Speed:</strong> Moderate, needs positioning time</li> |
| <li><strong>Armor:</strong> Minimal, artillery protection only</li> |
| <li><strong>Firepower:</strong> 155mm+ howitzers, area damage</li> |
| <li><strong>Use:</strong> Suppression, area denial, counter-battery</li> |
| <li><strong>Counterplay:</strong> Counter-battery radar, stealth approach</li> |
| </ul> |
| </div> |
| <div class="content-block"> |
| <h3>Recon Vehicles (e.g., M3 Scout, BRDM-2)</h3> |
| <ul> |
| <li><strong>Speed:</strong> Very high, excellent for early positioning</li> |
| <li><strong>Armor:</strong> Minimal, scout armor only</li> |
| <li><strong>Firepower:</strong> Light machine guns, some with ATGM</li> |
| <li><strong>Use:</strong> Early warning, target acquisition</li> |
| <li><strong>Counterplay:</strong> Avoid engagement, use terrain</li> |
| </ul> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="section" id="section-6"> |
| <div class="section-header"> |
| <div class="section-num">06</div> |
| <h1 class="section-title">Strategic Systems</h1> |
| </div> |
| |
| <div class="content-block"> |
| <h3>Advanced Tactical Mechanics</h3> |
| <p>These systems create depth and emergent gameplay. Each mechanic interacts with others to create complex tactical decisions.</p> |
| </div> |
|
|
| <div class="cards-grid"> |
| <div class="card"> |
| <h4>Hull-Down Positioning</h4> |
| <p>Tanks on ridges can expose only their turrets, dramatically improving survivability. Players must identify elevated positions and use terrain to their advantage. APFSDS can still penetrate turrets, but at reduced effectiveness.</p> |
| </div> |
| <div class="card"> |
| <h4>Line of Sight & Detection</h4> |
| <p>Visibility depends on terrain, unit height, and time of day. Dense forest blocks LOS completely. Recon vehicles have increased detection range. Fog of war hides unspotted enemies.</p> |
| </div> |
| <div class="card"> |
| <h4>Flanking Mechanics</h4> |
| <p>Side and rear armor is significantly weaker than frontal protection. Flanking attacks deal 2-3x damage. Players must protect their flanks using terrain, infantry, or positioning.</p> |
| </div> |
| <div class="card"> |
| <h4>Suppression System</h4> |
| <p>Near-misses and HE explosions cause suppression. Suppressed units have reduced accuracy and slower reaction times. Heavy suppression can cause morale breaks and retreat.</p> |
| </div> |
| <div class="card"> |
| <h4>Ammunition Management</h4> |
| <p>Different shell types have different effects. APFSDS for armor, HE for infantry/structures, smoke for concealment. Players must balance ammunition types and ration during long battles.</p> |
| </div> |
| <div class="card"> |
| <h4>Fuel & Logistics</h4> |
| <p>Tanks consume fuel during movement. Running out leaves vehicles immobile. Supply trucks must accompany armored formations. Fuel becomes a strategic resource affecting movement planning.</p> |
| </div> |
| <div class="card"> |
| <h4>Morale & Crew Stress</h4> |
| <p>Crews have morale that affects performance. High morale improves accuracy and reaction time. Casualties, nearby explosions, and unit losses reduce morale. Veterans perform better than green crews.</p> |
| </div> |
| <div class="card"> |
| <h4>Repair & Recovery</h4> |
| <p>Damaged tanks can be repaired in the field if engineers are present. Captured enemy tanks can be repaired and pressed into service. Recovery vehicles can tow disabled tanks off the battlefield.</p> |
| </div> |
| </div> |
|
|
| <div class="highlight-box"> |
| <h4>System Interaction Example</h4> |
| <p>A heavy tank in hull-down position with veteran crew and high morale will perform exceptionally well—high armor from position, accurate fire from crew skill, and sustained performance from morale. However, if fuel runs low, it becomes a static position that can be encircled or outflanked.</p> |
| </div> |
|
|
| <div class="content-block"> |
| <h3>Weather & Environment</h3> |
| <ul> |
| <li><strong>Rain:</strong> Reduces visibility, slows movement, increases engine noise</li> |
| <li><strong>Fog:</strong> Dramatically reduces detection range, creates ambush opportunities</li> |
| <li><strong>Night:</strong> Requires thermal optics to see effectively, changes engagement distances</li> |
| <li><strong>Mud:</strong> Slows all vehicles, reduces off-road mobility</li> |
| </ul> |
| </div> |
| </section> |
|
|
| |
| <section class="section" id="section-7"> |
| <div class="section-header"> |
| <div class="section-num">07</div> |
| <h1 class="section-title">Maps & Environments</h1> |
| </div> |
| |
| <div class="content-block"> |
| <h3>Battlefield Types</h3> |
| <p>Each map type creates distinct tactical situations and favors different tank classes.</p> |
| </div> |
|
|
| <div class="cards-grid"> |
| <div class="card"> |
| <h4>Open Plains</h4> |
| <p><strong>Example:</strong> North German farmland<br>Long sight lines, minimal cover. Heavy tanks and tank destroyers excel. Flanking requires long approaches. Artillery dominates open ground.</p> |
| </div> |
| <div class="card"> |
| <h4>Forests</h4> |
| <p><strong>Example:</strong> Hessian woodland<br>Excellent concealment, short engagement distances. Light tanks and infantry shine. Tank destroyers can set ambushes. Risk of close-quarters combat.</p> |
| </div> |
| <div class="card"> |
| <h4>Urban Ruins</h4> |
| <p><strong>Example:</strong> Destroyed village<br>Complex LOS, building cover, street chokepoints. Infantry essential for clearing. Tank destroyers for overwatch. High suppression risk from close combat.</p> |
| </div> |
| <div class="card"> |
| <h4>Desert Zones</h4> |
| <p><strong>Example:</strong> Training area<br>Dust clouds reduce visibility. Heat affects optics. Wadis provide concealment. Long-range engagements possible. Sand can damage optics.</p> |
| </div> |
| <div class="card"> |
| <h4>River Crossings</h4> |
| <p><strong>Example:</strong> Rhine bridgehead<br>Chokepoints create kill zones. Engineers essential for fords. Destroyed bridges create tactical choices. Flanking requires bridges or fords.</p> |
| </div> |
| <div class="card"> |
| <h4>Mountain Pass</h4> |
| <p><strong>Example:</strong> Alpine approach<br>High ground extremely valuable. Single approaches create ambush opportunities. Supply lines vulnerable. Weather changes quickly.</p> |
| </div> |
| </div> |
|
|
| <div class="content-block"> |
| <h3>Terrain Effects</h3> |
| <table class="tank-table"> |
| <thead> |
| <tr> |
| <th>Terrain</th> |
| <th>Visibility</th> |
| <th>Movement</th> |
| <th>Cover</th> |
| </tr> |
| </thead> |
| <tbody> |
| <tr> |
| <td |