<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>SuperTux 3D Beta</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <header>
        <div class="logo">
            <h1>SuperTux 3D
            <span class="beta-tag">Beta</span>
        </div>
        <nav>
            <ul>
                <li><a href="#home">Home</a></li>
                <li><a href="#download">Download</a></li>
                <li><a href="https://hectabit.org/centrifuge/HectaBit/supertux3d">Source Code</a></li>
            </ul>
        </nav>
    </header>

    <section id="home" class="hero">
        <h1>SuperTux 3D</h1>
        <p class="beta-label">Beta Version</p>
        <p>You wake up... where am I? Welcome to the labs.</p>
        <a href="#download" class="cta-button">Download Now</a>
    </section>

    <section id="download" class="download">
        <h2>Download Beta Version</h2>
        <div class="screenshots">
            <!-- Insert game screenshots here -->
        </div>
        <a href="/assets/binaries/st3-win.zip" class="download-button">Download for Windows</a>
        <a href="/assets/binaries/st3" class="download-button">Download for Linux</a>
        <a href="/assets/binaries/st3-mac.zip" class="download-button">Download for Mac</a>
        <div class="system-requirements">
            <h3>System Requirements</h3>
            <ul>
                <li>OS: Linux, Windows 7+, macOS 10.14 +</li>
                <li>Processor: Any x86_64</li>
                <li>Memory: 512MB+</li>
                <li>Graphics: Anything post 2009</li>
                <li>Storage: 100 MB</li>
            </ul>
        </div>
        <p class="beta-disclaimer">Please note that this is a beta version of the game. Your feedback is valuable in improving it.</p>
    </section>

    <footer>
        <p>&copy; 2023 HectaBit Studios. These works are licensed under the GNU General Public License. View the in-game credits for more info.</p>
    </footer>
</body>
</html>