body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f5f5dc;
        }
        header {
            background-color: #006400;
            color: white;
            padding: 20px;
            text-align: center;
            position: relative;
        }
        .logo {
            font-size: 2em;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }
        .mobile-nav-toggle {
            display: none;
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 1.5em;
            cursor: pointer;
        }
        h1 {
            color: #006400;
            border-bottom: 2px solid #006400;
            padding-bottom: 10px;
        }
        h2 {
            color: #2e8b57;
            margin-top: 30px;
        }
        h3 {
            color: #3cb371;
        }
        .download-btn, .login-btn {
            display: inline-block;
            background-color: #006400;
            color: white;
            padding: 10px 20px;
            margin: 10px 0;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
        }
        .game-image {
            display: block;
            margin: 20px auto;
            max-width: 100%;
            height: auto;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        th, td {
            border: 1px solid #ddd;
            padding: 8px;
            text-align: left;
        }
        th {
            background-color: #f2f2f2;
        }
        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 30px;
        }
        @media (max-width: 768px) {
            nav {
                flex-direction: column;
                align-items: center;
                display: none;
            }
            .mobile-nav-toggle {
                display: block;
            }
            nav.active {
                display: flex;
            }
        }
