File size: 46,095 Bytes
07a122d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 | <!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;
}
/* Animated Background */
.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;
}
/* Layout */
.app-container {
display: flex;
min-height: 100vh;
position: relative;
z-index: 1;
}
/* Sidebar Navigation */
.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 */
.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 Headers */
.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 Styling */
.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 */
.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 */
.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 */
.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 Column Layout */
.two-col {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
}
/* Faction Cards */
.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 */
.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 */
.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 */
.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);
}
/* Scenario Timeline */
.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;
}
/* Scrollbar */
::-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);
}
/* Responsive */
@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">
<!-- Sidebar Navigation -->
<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 Content -->
<main class="main-content">
<!-- Section 1: Core Concept -->
<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 2: Setting -->
<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 3: Genre & Perspective -->
<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 4: Core Gameplay Loop -->
<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 5: Tank Classes -->
<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 6: Strategic Systems -->
<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 7: Maps & Environments -->
<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 |