body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; background-color: #f5f5f5; }
        header { background-color: #004d99; color: white; padding: 15px; 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: 10px; }
        nav a { color: white; text-decoration: none; }
        .mobile-menu-btn { display: none; position: absolute; top: 15px; right: 15px; background: none; border: none; color: white; font-size: 1.5em; }
        h1 { color: #004d99; margin-bottom: 20px; }
        h2 { color: #0066cc; margin-top: 30px; }
        h3 { color: #0077b6; }
        .download-btn, .login-btn { display: inline-block; background-color: #ff6600; color: white; padding: 10px 20px; margin: 10px 0; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .download-btn:hover, .login-btn:hover { background-color: #e65c00; }
        img { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        .game-stats { background-color: #e6f2ff; padding: 15px; border-radius: 8px; margin: 20px 0; }
        .community-section { background-color: #fff8e6; padding: 15px; border-radius: 8px; margin: 20px 0; }
        footer { text-align: center; margin-top: 40px; padding: 20px; background-color: #004d99; color: white; }
        .tags { margin: 20px 0; }
        .tag { display: inline-block; background-color: #0066cc; color: white; padding: 5px 10px; margin: 5px; border-radius: 20px; text-decoration: none; }
        @media (max-width: 768px) {
            nav { flex-direction: column; align-items: center; display: none; }
            .mobile-menu-btn { display: block; }
            nav.active { display: flex; }
            body { padding: 10px; }
        }
